dolibarr/htdocs/includes/stripe/stripe-php/lib/SourceTransaction.php

21 lines
408 B
PHP
Raw Permalink Normal View History

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