2018-03-06 12:52:56 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Stripe;
|
|
|
|
|
|
|
|
|
|
/**
|
2021-01-03 22:37:44 +00:00
|
|
|
* Class SourceTransaction.
|
2018-03-06 12:52:56 +00:00
|
|
|
*
|
2019-05-03 00:22:27 +00:00
|
|
|
* @property string $id
|
|
|
|
|
* @property string $object
|
2021-01-03 22:37:44 +00:00
|
|
|
* @property \Stripe\StripeObject $ach_credit_transfer
|
2019-05-03 00:22:27 +00:00
|
|
|
* @property int $amount
|
|
|
|
|
* @property int $created
|
|
|
|
|
* @property string $customer_data
|
|
|
|
|
* @property string $currency
|
|
|
|
|
* @property string $type
|
2018-03-06 12:52:56 +00:00
|
|
|
*/
|
|
|
|
|
class SourceTransaction extends ApiResource
|
|
|
|
|
{
|
2021-01-03 22:37:44 +00:00
|
|
|
const OBJECT_NAME = 'source_transaction';
|
2018-03-06 12:52:56 +00:00
|
|
|
}
|