Interface CreateOrderResponse

interface CreateOrderResponse {
    order_id: number;
    request_id?: string;
    status: string;
    time: number;
}

Hierarchy

  • CreateOrderResponse
    • CreateOrderResponse

Properties

order_id: number

ID of the created order

CreateOrderResponse

request_id?: string

Request ID as a reference for an asynchronous order creation request

CreateOrderResponse

status: string

Status of the created order

CreateOrderResponse

time: number

Timestamp of the created order

CreateOrderResponse