Files
HRM-System/vendor/coingate/coingate-php/lib/Resources/Order.php
2026-04-13 08:19:53 +08:00

27 lines
714 B
PHP

<?php
namespace CoinGate\Resources;
/**
* Related guide: <a href="https://developer.coingate.com/docs/get-order">Get Order</a>.
* Related guide: <a href="https://developer.coingate.com/docs/list-orders">List Orders</a>.
*
* @property int $id
* @property string $status
* @property bool $do_not_convert
* @property bool $lightning_network
* @property string $underpaid_amount
* @property string $overpaid_amount
* @property string $price_currency
* @property string $price_amount
* @property string $receive_currency
* @property string $receive_amount
* @property string $created_at
* @property string $order_id
* @property string $payment_url
* @property bool $is_refundable
*/
class Order
{
}