OrderArgs

Type Alias OrderArgs 

Source
pub type OrderArgs = OrderRequest;

Aliased Type§

pub struct OrderArgs {
    pub token_id: String,
    pub side: Side,
    pub price: Decimal,
    pub size: Decimal,
    pub order_type: OrderType,
    pub expiration: Option<DateTime<Utc>>,
    pub client_id: Option<String>,
}

Fields§

§token_id: String§side: Side§price: Decimal§size: Decimal§order_type: OrderType§expiration: Option<DateTime<Utc>>§client_id: Option<String>