ISO currency code, in lowercase. Must be a supported currency.
* @property null|\Stripe\StripeObject $gbp_credit_transfer
* @property bool $livemode Has the value true if the object exists in live mode or the value false if the object exists in test mode.
* @property null|\Stripe\StripeObject $paper_check
* @property null|\Stripe\StripeObject $sepa_credit_transfer
* @property string $source The ID of the source this transaction is attached to.
* @property string $status The status of the transaction, one of succeeded, pending, or failed.
* @property string $type The type of source this transaction is attached to.
*/
class SourceTransaction extends ApiResource
{
const OBJECT_NAME = 'source_transaction';
const TYPE_ACH_CREDIT_TRANSFER = 'ach_credit_transfer';
const TYPE_ACH_DEBIT = 'ach_debit';
const TYPE_ALIPAY = 'alipay';
const TYPE_BANCONTACT = 'bancontact';
const TYPE_CARD = 'card';
const TYPE_CARD_PRESENT = 'card_present';
const TYPE_EPS = 'eps';
const TYPE_GIROPAY = 'giropay';
const TYPE_IDEAL = 'ideal';
const TYPE_KLARNA = 'klarna';
const TYPE_MULTIBANCO = 'multibanco';
const TYPE_P24 = 'p24';
const TYPE_SEPA_DEBIT = 'sepa_debit';
const TYPE_SOFORT = 'sofort';
const TYPE_THREE_D_SECURE = 'three_d_secure';
const TYPE_WECHAT = 'wechat';
}