16 lines
303 B
PHP
16 lines
303 B
PHP
<?php
|
|
|
|
namespace CoinGate\Resources;
|
|
|
|
/**
|
|
* Related guide: <a href="https://developer.coingate.com/docs/checkout">Checkout</a>.
|
|
*
|
|
* @property string $pay_currency
|
|
* @property string $pay_amount
|
|
* @property string $expire_at
|
|
* @property string $payment_address
|
|
*/
|
|
class Checkout extends Order
|
|
{
|
|
}
|