Interface OrderOperationInit

Plain-object form of OrderOperation. Every field is optional and accepts both the typed wrapper and the idiomatic primitive (an accountId number/bigint/string, a side string, a price DecimalInput, ...).

interface OrderOperationInit {
    accountId?:
        | string
        | number
        | bigint
        | AccountId;
    price?:
        | string
        | number
        | bigint
        | Price;
    settlementAsset?: string;
    side?: "BUY" | "SELL";
    tradeAmount?: TradeAmount;
    underlyingAsset?: string;
}

Properties

accountId?:
    | string
    | number
    | bigint
    | AccountId
price?:
    | string
    | number
    | bigint
    | Price
settlementAsset?: string
side?: "BUY" | "SELL"
tradeAmount?: TradeAmount
underlyingAsset?: string