File "ResourceType.php"

Full Path: /home/cananyalcin/public_html/core/lib/coinbase/src/Enum/ResourceType.php
File size: 1.01 KB
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Coinbase\Wallet\Enum;

/**
 * Supported resource types.
 */
class ResourceType
{
    const ACCOUNT = 'account';
    const ADDRESS = 'address';
    const APPLICATION = 'application';
    const BITCOIN_ADDRESS = 'bitcoin_address';
    const BUY = 'buy';
    const CHECKOUT = 'checkout';
    const DEPOSIT = 'deposit';
    const EMAIL = 'email';
    const MERCHANT = 'merchant';
    const ORDER = 'order';
    const PAYMENT_METHOD = 'payment_method';
    const SELL = 'sell';
    const TRANSACTION = 'transaction';
    const USER = 'user';
    const WITHDRAWAL = 'withdrawal';
    const BITCOIN_NETWORK = 'bitcoin_network';
    const BITCOIN_CASH_NETWORK = 'bitcoin_cash_network';
    const LITECOIN_NETWORK = 'litecoin_network';
    const ETHEREUM_NETWORK = 'ethereum_network';
    const NOTIFICATION = 'notification';
    const LITECOIN_ADDRESS = 'litecoin_address';
    const ETHEREUM_ADDRESS = 'ethereum_address';
    const BITCOIN_CASH_ADDRESS = 'bitcoin_cash_address';

    private function __construct()
    {
    }
}