pub struct GetLocalentityWithdrawHistoryV2Params {
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_v2
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>Withdraw ID 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 GetLocalentityWithdrawHistoryV2Params
impl Clone for GetLocalentityWithdrawHistoryV2Params
Source§fn clone(&self) -> GetLocalentityWithdrawHistoryV2Params
fn clone(&self) -> GetLocalentityWithdrawHistoryV2Params
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 Default for GetLocalentityWithdrawHistoryV2Params
impl Default for GetLocalentityWithdrawHistoryV2Params
Source§fn default() -> GetLocalentityWithdrawHistoryV2Params
fn default() -> GetLocalentityWithdrawHistoryV2Params
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetLocalentityWithdrawHistoryV2Params
impl RefUnwindSafe for GetLocalentityWithdrawHistoryV2Params
impl Send for GetLocalentityWithdrawHistoryV2Params
impl Sync for GetLocalentityWithdrawHistoryV2Params
impl Unpin for GetLocalentityWithdrawHistoryV2Params
impl UnwindSafe for GetLocalentityWithdrawHistoryV2Params
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