Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
unsatisfiableness
/
core
/
lib
/
coinbase
/
src
/
Enum
:
TransactionType.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Coinbase\Wallet\Enum; /** * Supported transaction types. */ class TransactionType { const BUY = 'buy'; const EXCHANGE_DEPOSIT = 'exchange_deposit'; const EXCHANGE_WITHDRAWAL = 'exchange_withdrawal'; const FIAT_DEPOSIT = 'fiat_deposit'; const REQUEST = 'request'; const SELL = 'sell'; const SEND = 'send'; const TRANSFER = 'transfer'; const VAULT_WITHDRAWAL = 'vault_withdrawal'; private function __construct() { } }