Refund.php 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. // File generated from our OpenAPI spec
  3. namespace Stripe;
  4. /**
  5. * <code>Refund</code> objects allow you to refund a charge that has previously
  6. * been created but not yet refunded. Funds will be refunded to the credit or debit
  7. * card that was originally charged.
  8. *
  9. * Related guide: <a href="https://stripe.com/docs/refunds">Refunds</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 Amount, in %s.
  14. * @property null|string|\Stripe\BalanceTransaction $balance_transaction Balance transaction that describes the impact on your account balance.
  15. * @property null|string|\Stripe\Charge $charge ID of the charge that was refunded.
  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 string $description An arbitrary string attached to the object. Often useful for displaying to users. (Available on non-card refunds only)
  19. * @property string|\Stripe\BalanceTransaction $failure_balance_transaction If the refund failed, this balance transaction describes the adjustment made on your account balance that reverses the initial balance transaction.
  20. * @property string $failure_reason If the refund failed, the reason for refund failure if known. Possible values are <code>lost_or_stolen_card</code>, <code>expired_or_canceled_card</code>, or <code>unknown</code>.
  21. * @property null|\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.
  22. * @property null|string|\Stripe\PaymentIntent $payment_intent ID of the PaymentIntent that was refunded.
  23. * @property null|string $reason Reason for the refund, either user-provided (<code>duplicate</code>, <code>fraudulent</code>, or <code>requested_by_customer</code>) or generated by Stripe internally (<code>expired_uncaptured_charge</code>).
  24. * @property null|string $receipt_number This is the transaction number that appears on email receipts sent for this refund.
  25. * @property null|string|\Stripe\TransferReversal $source_transfer_reversal The transfer reversal that is associated with the refund. Only present if the charge came from another Stripe account. See the Connect documentation for details.
  26. * @property null|string $status Status of the refund. For credit card refunds, this can be <code>pending</code>, <code>succeeded</code>, or <code>failed</code>. For other types of refunds, it can be <code>pending</code>, <code>succeeded</code>, <code>failed</code>, or <code>canceled</code>. Refer to our <a href="https://stripe.com/docs/refunds#failed-refunds">refunds</a> documentation for more details.
  27. * @property null|string|\Stripe\TransferReversal $transfer_reversal If the accompanying transfer was reversed, the transfer reversal object. Only applicable if the charge was created using the destination parameter.
  28. */
  29. class Refund extends ApiResource
  30. {
  31. const OBJECT_NAME = 'refund';
  32. use ApiOperations\All;
  33. use ApiOperations\Create;
  34. use ApiOperations\Retrieve;
  35. use ApiOperations\Update;
  36. const FAILURE_REASON_EXPIRED_OR_CANCELED_CARD = 'expired_or_canceled_card';
  37. const FAILURE_REASON_LOST_OR_STOLEN_CARD = 'lost_or_stolen_card';
  38. const FAILURE_REASON_UNKNOWN = 'unknown';
  39. const REASON_DUPLICATE = 'duplicate';
  40. const REASON_FRAUDULENT = 'fraudulent';
  41. const REASON_REQUESTED_BY_CUSTOMER = 'requested_by_customer';
  42. const STATUS_CANCELED = 'canceled';
  43. const STATUS_FAILED = 'failed';
  44. const STATUS_PENDING = 'pending';
  45. const STATUS_SUCCEEDED = 'succeeded';
  46. /**
  47. * @deprecated use FAILURE_REASON_EXPIRED_OR_CANCELED_CARD instead
  48. */
  49. const FAILURE_REASON = 'expired_or_canceled_card';
  50. }