modern-events-calendar-lite/app/api/Stripe/SourceTransaction.php

21 lines
428 B
PHP
Raw Permalink Normal View History

2024-10-15 12:04:03 +02:00
<?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';
}