Dispute.php 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <?php
  2. // File generated from our OpenAPI spec
  3. namespace Stripe;
  4. /**
  5. * A dispute occurs when a customer questions your charge with their card issuer.
  6. * When this happens, you have the opportunity to respond to the dispute with
  7. * evidence that shows that the charge is legitimate.
  8. *
  9. * Related guide: <a href="https://stripe.com/docs/disputes">Disputes and fraud</a>
  10. *
  11. * @property string $id Unique identifier for the object.
  12. * @property string $object String representing the object's type. Objects of the same type share the same value.
  13. * @property int $amount Disputed amount. Usually the amount of the charge, but it can differ (usually because of currency fluctuation or because only part of the order is disputed).
  14. * @property \Stripe\BalanceTransaction[] $balance_transactions List of zero, one, or two balance transactions that show funds withdrawn and reinstated to your Stripe account as a result of this dispute.
  15. * @property string|\Stripe\Charge $charge ID of the charge that's disputed.
  16. * @property int $created Time at which the object was created. Measured in seconds since the Unix epoch.
  17. * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
  18. * @property \Stripe\StripeObject $evidence
  19. * @property \Stripe\StripeObject $evidence_details
  20. * @property bool $is_charge_refundable If true, it's still possible to refund the disputed payment. After the payment has been fully refunded, no further funds are withdrawn from your Stripe account as a result of this dispute.
  21. * @property bool $livemode Has the value <code>true</code> if the object exists in live mode or the value <code>false</code> if the object exists in test mode.
  22. * @property \Stripe\StripeObject $metadata Set of <a href="https://stripe.com/docs/api/metadata">key-value pairs</a> that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
  23. * @property null|string $network_reason_code Network-dependent reason code for the dispute.
  24. * @property null|string|\Stripe\PaymentIntent $payment_intent ID of the PaymentIntent that's disputed.
  25. * @property null|\Stripe\StripeObject $payment_method_details
  26. * @property string $reason Reason given by cardholder for dispute. Possible values are <code>bank_cannot_process</code>, <code>check_returned</code>, <code>credit_not_processed</code>, <code>customer_initiated</code>, <code>debit_not_authorized</code>, <code>duplicate</code>, <code>fraudulent</code>, <code>general</code>, <code>incorrect_account_details</code>, <code>insufficient_funds</code>, <code>product_not_received</code>, <code>product_unacceptable</code>, <code>subscription_canceled</code>, or <code>unrecognized</code>. Learn more about <a href="https://stripe.com/docs/disputes/categories">dispute reasons</a>.
  27. * @property string $status Current status of dispute. Possible values are <code>warning_needs_response</code>, <code>warning_under_review</code>, <code>warning_closed</code>, <code>needs_response</code>, <code>under_review</code>, <code>won</code>, or <code>lost</code>.
  28. */
  29. class Dispute extends ApiResource
  30. {
  31. const OBJECT_NAME = 'dispute';
  32. use ApiOperations\Update;
  33. const REASON_BANK_CANNOT_PROCESS = 'bank_cannot_process';
  34. const REASON_CHECK_RETURNED = 'check_returned';
  35. const REASON_CREDIT_NOT_PROCESSED = 'credit_not_processed';
  36. const REASON_CUSTOMER_INITIATED = 'customer_initiated';
  37. const REASON_DEBIT_NOT_AUTHORIZED = 'debit_not_authorized';
  38. const REASON_DUPLICATE = 'duplicate';
  39. const REASON_FRAUDULENT = 'fraudulent';
  40. const REASON_GENERAL = 'general';
  41. const REASON_INCORRECT_ACCOUNT_DETAILS = 'incorrect_account_details';
  42. const REASON_INSUFFICIENT_FUNDS = 'insufficient_funds';
  43. const REASON_PRODUCT_NOT_RECEIVED = 'product_not_received';
  44. const REASON_PRODUCT_UNACCEPTABLE = 'product_unacceptable';
  45. const REASON_SUBSCRIPTION_CANCELED = 'subscription_canceled';
  46. const REASON_UNRECOGNIZED = 'unrecognized';
  47. const STATUS_LOST = 'lost';
  48. const STATUS_NEEDS_RESPONSE = 'needs_response';
  49. const STATUS_UNDER_REVIEW = 'under_review';
  50. const STATUS_WARNING_CLOSED = 'warning_closed';
  51. const STATUS_WARNING_NEEDS_RESPONSE = 'warning_needs_response';
  52. const STATUS_WARNING_UNDER_REVIEW = 'warning_under_review';
  53. const STATUS_WON = 'won';
  54. /**
  55. * Returns a list of your disputes.
  56. *
  57. * @param null|array $params
  58. * @param null|array|string $opts
  59. *
  60. * @throws \Stripe\Exception\ApiErrorException if the request fails
  61. *
  62. * @return \Stripe\Collection<\Stripe\Dispute> of ApiResources
  63. */
  64. public static function all($params = null, $opts = null)
  65. {
  66. $url = static::classUrl();
  67. return static::_requestPage($url, \Stripe\Collection::class, $params, $opts);
  68. }
  69. /**
  70. * Retrieves the dispute with the given ID.
  71. *
  72. * @param array|string $id the ID of the API resource to retrieve, or an options array containing an `id` key
  73. * @param null|array|string $opts
  74. *
  75. * @throws \Stripe\Exception\ApiErrorException if the request fails
  76. *
  77. * @return \Stripe\Dispute
  78. */
  79. public static function retrieve($id, $opts = null)
  80. {
  81. $opts = \Stripe\Util\RequestOptions::parse($opts);
  82. $instance = new static($id, $opts);
  83. $instance->refresh();
  84. return $instance;
  85. }
  86. /**
  87. * When you get a dispute, contacting your customer is always the best first step.
  88. * If that doesn’t work, you can submit evidence to help us resolve the dispute in
  89. * your favor. You can do this in your <a
  90. * href="https://dashboard.stripe.com/disputes">dashboard</a>, but if you prefer,
  91. * you can use the API to submit evidence programmatically.
  92. *
  93. * Depending on your dispute type, different evidence fields will give you a better
  94. * chance of winning your dispute. To figure out which evidence fields to provide,
  95. * see our <a href="/docs/disputes/categories">guide to dispute types</a>.
  96. *
  97. * @param string $id the ID of the resource to update
  98. * @param null|array $params
  99. * @param null|array|string $opts
  100. *
  101. * @throws \Stripe\Exception\ApiErrorException if the request fails
  102. *
  103. * @return \Stripe\Dispute the updated resource
  104. */
  105. public static function update($id, $params = null, $opts = null)
  106. {
  107. self::_validateParams($params);
  108. $url = static::resourceUrl($id);
  109. list($response, $opts) = static::_staticRequest('post', $url, $params, $opts);
  110. $obj = \Stripe\Util\Util::convertToStripeObject($response->json, $opts);
  111. $obj->setLastResponse($response);
  112. return $obj;
  113. }
  114. /**
  115. * @param null|array $params
  116. * @param null|array|string $opts
  117. *
  118. * @throws \Stripe\Exception\ApiErrorException if the request fails
  119. *
  120. * @return \Stripe\Dispute the closed dispute
  121. */
  122. public function close($params = null, $opts = null)
  123. {
  124. $url = $this->instanceUrl() . '/close';
  125. list($response, $opts) = $this->_request('post', $url, $params, $opts);
  126. $this->refreshFrom($response, $opts);
  127. return $this;
  128. }
  129. }