File "PaymentMethodType.php"
Full Path: /home/cananyalcin/public_html/core/lib/coinbase/src/Enum/PaymentMethodType.php
File size: 427 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Coinbase\Wallet\Enum;
/**
* Supported payment method types.
*/
class PaymentMethodType
{
const ACH_BANK_ACCOUNT = 'ach_bank_account';
const BANK_WIRE = 'bank_wire';
const CREDIT_CARD = 'credit_card';
const FIAT_ACCOUNT = 'fiat_account';
const IDEAL_BANK_ACCOUNT = 'ideal_bank_account';
const SEPA_BANK_ACCOUNT = 'sepa_bank_account';
private function __construct()
{
}
}