Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
unsatisfiableness
/
core
/
core
/
lib
/
coinbase
/
src
/
Enum
:
ResourceType.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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() { } }