blob: 6fb2aa1c21f97a450e7266a3fe8230f6c668da44 (
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';
}
|