| 1 |
<?php |
| 2 |
|
| 3 |
namespace Stripe; |
| 4 |
|
| 5 |
/** |
| 6 |
* Class SourceTransaction. |
| 7 |
* |
| 8 |
* @property string $id |
| 9 |
* @property string $object |
| 10 |
* @property \Stripe\StripeObject $ach_credit_transfer |
| 11 |
* @property int $amount |
| 12 |
* @property int $created |
| 13 |
* @property string $customer_data |
| 14 |
* @property string $currency |
| 15 |
* @property string $type |
| 16 |
*/ |
| 17 |
class SourceTransaction extends ApiResource |
| 18 |
{ |
| 19 |
const OBJECT_NAME = 'source_transaction'; |
| 20 |
} |
| 21 |
|