pub struct QueryUserUniversalTransferHistoryParams {
pub type: String,
pub start_time: Option<i64>,
pub end_time: Option<i64>,
pub current: Option<i64>,
pub size: Option<i64>,
pub from_symbol: Option<String>,
pub to_symbol: Option<String>,
pub recv_window: Option<i64>,
}Expand description
Request parameters for the [query_user_universal_transfer_history] operation.
This struct holds all of the inputs you can pass when calling
query_user_universal_transfer_history.
Fields§
§type: StringThe r#type parameter.
This field is **required.
start_time: Option<i64>The start_time parameter.
This field is **optional.
end_time: Option<i64>The end_time parameter.
This field is **optional.
current: Option<i64>current page, default 1, the min value is 1
This field is **optional.
size: Option<i64>page size, default 10, the max value is 100
This field is **optional.
from_symbol: Option<String>The from_symbol parameter.
This field is **optional.
to_symbol: Option<String>The to_symbol parameter.
This field is **optional.
recv_window: Option<i64>The recv_window parameter.
This field is **optional.
Implementations§
Source§impl QueryUserUniversalTransferHistoryParams
impl QueryUserUniversalTransferHistoryParams
Sourcepub fn builder(type: String) -> QueryUserUniversalTransferHistoryParamsBuilder
pub fn builder(type: String) -> QueryUserUniversalTransferHistoryParamsBuilder
Create a builder for [query_user_universal_transfer_history].
Required parameters:
r#type— String
Trait Implementations§
Source§impl Clone for QueryUserUniversalTransferHistoryParams
impl Clone for QueryUserUniversalTransferHistoryParams
Source§fn clone(&self) -> QueryUserUniversalTransferHistoryParams
fn clone(&self) -> QueryUserUniversalTransferHistoryParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for QueryUserUniversalTransferHistoryParams
impl RefUnwindSafe for QueryUserUniversalTransferHistoryParams
impl Send for QueryUserUniversalTransferHistoryParams
impl Sync for QueryUserUniversalTransferHistoryParams
impl Unpin for QueryUserUniversalTransferHistoryParams
impl UnsafeUnpin for QueryUserUniversalTransferHistoryParams
impl UnwindSafe for QueryUserUniversalTransferHistoryParams
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