dolibarr/htdocs/includes/stripe/stripe-php/lib/RecipientTransfer.php

37 lines
918 B
PHP
Raw Permalink Normal View History

2017-04-18 05:44:08 +02:00
<?php
namespace Stripe;
/**
2021-01-03 23:37:44 +01:00
* Class RecipientTransfer.
2017-04-18 05:44:08 +02:00
*
* @property string $id
* @property string $object
* @property int $amount
* @property int $amount_reversed
* @property string $balance_transaction
* @property string $bank_account
* @property string $card
* @property int $created
* @property string $currency
* @property int $date
* @property string $description
* @property string $destination
* @property string $failure_code
* @property string $failure_message
* @property bool $livemode
2021-01-03 23:37:44 +01:00
* @property \Stripe\StripeObject $metadata
2017-04-18 05:44:08 +02:00
* @property string $method
* @property string $recipient
2021-01-03 23:37:44 +01:00
* @property \Stripe\Collection $reversals
2017-04-18 05:44:08 +02:00
* @property bool $reversed
* @property string $source_type
* @property string $statement_descriptor
* @property string $status
* @property string $type
*/
class RecipientTransfer extends ApiResource
{
2021-01-03 23:37:44 +01:00
const OBJECT_NAME = 'recipient_transfer';
2017-04-18 05:44:08 +02:00
}