You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
408 B
20 lines
408 B
<?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';
|
|
}
|
|
|