pub struct GetLocalentityWithdrawHistoryV1Params {
pub timestamp: i64,
pub tr_id: Option<String>,
pub tx_id: Option<String>,
pub withdraw_order_id: Option<String>,
pub network: Option<String>,
pub coin: Option<String>,
pub travel_rule_status: Option<i32>,
pub offset: Option<i32>,
pub limit: Option<i32>,
pub start_time: Option<i64>,
pub end_time: Option<i64>,
pub recv_window: Option<i64>,
}Expand description
struct for passing parameters to the method get_localentity_withdraw_history_v1
Fields§
§timestamp: i64§tr_id: Option<String>Comma(,) separated list of travel rule record Ids.
tx_id: Option<String>Comma(,) separated list of transaction Ids.
withdraw_order_id: Option<String>Comma(,) separated list of withdrawID defined by the client (i.e. client's internal withdrawID).
network: Option<String>§coin: Option<String>§travel_rule_status: Option<i32>0:Completed,1:Pending,2:Failed
offset: Option<i32>Default: 0
limit: Option<i32>Default: 1000, Max: 1000
start_time: Option<i64>Default: 90 days from current timestamp
end_time: Option<i64>Default: present timestamp
recv_window: Option<i64>Trait Implementations§
Source§impl Clone for GetLocalentityWithdrawHistoryV1Params
impl Clone for GetLocalentityWithdrawHistoryV1Params
Source§fn clone(&self) -> GetLocalentityWithdrawHistoryV1Params
fn clone(&self) -> GetLocalentityWithdrawHistoryV1Params
Returns a copy 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 Default for GetLocalentityWithdrawHistoryV1Params
impl Default for GetLocalentityWithdrawHistoryV1Params
Source§fn default() -> GetLocalentityWithdrawHistoryV1Params
fn default() -> GetLocalentityWithdrawHistoryV1Params
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetLocalentityWithdrawHistoryV1Params
impl RefUnwindSafe for GetLocalentityWithdrawHistoryV1Params
impl Send for GetLocalentityWithdrawHistoryV1Params
impl Sync for GetLocalentityWithdrawHistoryV1Params
impl Unpin for GetLocalentityWithdrawHistoryV1Params
impl UnwindSafe for GetLocalentityWithdrawHistoryV1Params
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