pub struct P2pOrderListRequest {
pub active: Option<f64>,
pub advert_id: Option<String>,
pub date_from: Option<String>,
pub date_to: Option<String>,
pub limit: Option<i64>,
pub loginid: Option<String>,
pub offset: Option<i64>,
pub p2p_order_list: i64,
pub passthrough: Option<Value>,
pub req_id: Option<i64>,
pub subscribe: Option<i64>,
}
Expand description
List active orders.
Fields§
§active: Option<f64>
[Optional] Should be 1 to list active, 0 to list inactive (historical).\n
advert_id: Option<String>
[Optional] If present, lists orders applying to a specific advert.\n
date_from: Option<String>
[Optional] Filter the orders created after this date(included) format(epoch or YYYY-MM-DD)\n
date_to: Option<String>
[Optional] Filter the orders created before this date(included) format(epoch or YYYY-MM-DD)\n
limit: Option<i64>
[Optional] Used for paging.\n
loginid: Option<String>
[Optional] The login id of the user. Mandatory when multiple tokens were provided during authorize.\n
offset: Option<i64>
[Optional] Used for paging.\n
p2p_order_list: i64
Must be 1\n
passthrough: Option<Value>
[Optional] Used to pass data through the websocket, which may be retrieved via the echo_req
output field.\n
req_id: Option<i64>
[Optional] Used to map request to response.\n
subscribe: Option<i64>
[Optional] If set to 1, will send updates whenever there is a change to any order belonging to you.\n
Trait Implementations§
Source§impl Clone for P2pOrderListRequest
impl Clone for P2pOrderListRequest
Source§fn clone(&self) -> P2pOrderListRequest
fn clone(&self) -> P2pOrderListRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more