pub struct StatementRequest {
pub action_type: Option<ActionType>,
pub date_from: Option<DateTime<Utc>>,
pub date_to: Option<DateTime<Utc>>,
pub description: Option<Description>,
pub limit: Option<f64>,
pub loginid: Option<String>,
pub offset: Option<i64>,
pub passthrough: Option<Value>,
pub req_id: Option<i64>,
pub statement: Value,
}
Expand description
Retrieve a summary of account transactions, according to given search criteria
Fields§
§action_type: Option<ActionType>
[Optional] To filter the statement according to the type of transaction.\n
date_from: Option<DateTime<Utc>>
[Optional] Start date (epoch)\n
date_to: Option<DateTime<Utc>>
[Optional] End date (epoch)\n
description: Option<Description>
[Optional] If set to 1, will return full contracts description.\n
limit: Option<f64>
[Optional] Maximum number of transactions to receive.\n
loginid: Option<String>
[Optional] The login id of the user. Mandatory when multiple tokens were provided during authorize.\n
offset: Option<i64>
[Optional] Number of transactions to skip.\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
statement: Value
Field ‘statement’ mapped to Value due to complexity/potential issues.\n
Trait Implementations§
Source§impl Clone for StatementRequest
impl Clone for StatementRequest
Source§fn clone(&self) -> StatementRequest
fn clone(&self) -> StatementRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for StatementRequest
impl Debug for StatementRequest
Source§impl<'de> Deserialize<'de> for StatementRequest
impl<'de> Deserialize<'de> for StatementRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for StatementRequest
impl RefUnwindSafe for StatementRequest
impl Send for StatementRequest
impl Sync for StatementRequest
impl Unpin for StatementRequest
impl UnwindSafe for StatementRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more