ReserveTransaction.php 706 B

1234567891011121314151617
  1. <?php
  2. // File generated from our OpenAPI spec
  3. namespace Stripe;
  4. /**
  5. * @property string $id Unique identifier for the object.
  6. * @property string $object String representing the object's type. Objects of the same type share the same value.
  7. * @property int $amount
  8. * @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>.
  9. * @property null|string $description An arbitrary string attached to the object. Often useful for displaying to users.
  10. */
  11. class ReserveTransaction extends ApiResource
  12. {
  13. const OBJECT_NAME = 'reserve_transaction';
  14. }