RecipientTransfer.php 919 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. namespace Stripe;
  3. /**
  4. * Class RecipientTransfer
  5. *
  6. * @property string $id
  7. * @property string $object
  8. * @property int $amount
  9. * @property int $amount_reversed
  10. * @property string $balance_transaction
  11. * @property string $bank_account
  12. * @property string $card
  13. * @property int $created
  14. * @property string $currency
  15. * @property int $date
  16. * @property string $description
  17. * @property string $destination
  18. * @property string $failure_code
  19. * @property string $failure_message
  20. * @property bool $livemode
  21. * @property StripeObject $metadata
  22. * @property string $method
  23. * @property string $recipient
  24. * @property mixed $reversals
  25. * @property bool $reversed
  26. * @property string $source_type
  27. * @property string $statement_descriptor
  28. * @property string $status
  29. * @property string $type
  30. *
  31. * @package Stripe
  32. */
  33. class RecipientTransfer extends ApiResource
  34. {
  35. const OBJECT_NAME = "recipient_transfer";
  36. }