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