File "OrderType.php"
Full Path: /home/cananyalcin/public_html/core/core/lib/coinbase/src/Enum/OrderType.php
File size: 233 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Coinbase\Wallet\Enum;
/**
* Supported order types.
*/
class OrderType
{
const DONATION = 'donation';
const INVOICE = 'invoice';
const ORDER = 'order';
private function __construct()
{
}
}