Interface CreateTradeResponse

interface CreateTradeResponse {
    request_id?: string;
    status: string;
    trade_id: number;
}

Hierarchy

  • CreateTradeResponse
    • CreateTradeResponse

Properties

request_id?: string

Request ID as a reference for an asynchronous trade creation request

CreateTradeResponse

status: string

[DEPRECATED] Unused field that always returns an empty string. The presence of a trade_id signifies that a trade was successful.

CreateTradeResponse

trade_id: number

ID of trade within Immutable X

CreateTradeResponse