pub struct QueryManagedSubAccountTransferLogSubAccountTradingParams {
pub start_time: i64,
pub end_time: i64,
pub page: i64,
pub limit: i64,
pub transfers: Option<String>,
pub transfer_function_account_type: Option<String>,
pub recv_window: Option<i64>,
}Expand description
Request parameters for the [query_managed_sub_account_transfer_log_sub_account_trading] operation.
This struct holds all of the inputs you can pass when calling
query_managed_sub_account_transfer_log_sub_account_trading.
Fields§
§start_time: i64Start Time
This field is **required.
end_time: i64End Time (The start time and end time interval cannot exceed half a year)
This field is **required.
page: i64Page
This field is **required.
limit: i64Limit (Max: 500)
This field is **required.
transfers: Option<String>Transfer Direction (from/to)
This field is **optional.
transfer_function_account_type: Option<String>Transfer function account type (SPOT/MARGIN/ISOLATED_MARGIN/USDT_FUTURE/COIN_FUTURE)
This field is **optional.
recv_window: Option<i64>The recv_window parameter.
This field is **optional.
Implementations§
Source§impl QueryManagedSubAccountTransferLogSubAccountTradingParams
impl QueryManagedSubAccountTransferLogSubAccountTradingParams
Sourcepub fn builder(
start_time: i64,
end_time: i64,
page: i64,
limit: i64,
) -> QueryManagedSubAccountTransferLogSubAccountTradingParamsBuilder
pub fn builder( start_time: i64, end_time: i64, page: i64, limit: i64, ) -> QueryManagedSubAccountTransferLogSubAccountTradingParamsBuilder
Create a builder for [query_managed_sub_account_transfer_log_sub_account_trading].
Required parameters:
start_time— Start Timeend_time— End Time (The start time and end time interval cannot exceed half a year)page— Pagelimit— Limit (Max: 500)
Trait Implementations§
Source§impl Clone for QueryManagedSubAccountTransferLogSubAccountTradingParams
impl Clone for QueryManagedSubAccountTransferLogSubAccountTradingParams
Source§fn clone(&self) -> QueryManagedSubAccountTransferLogSubAccountTradingParams
fn clone(&self) -> QueryManagedSubAccountTransferLogSubAccountTradingParams
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 QueryManagedSubAccountTransferLogSubAccountTradingParams
impl RefUnwindSafe for QueryManagedSubAccountTransferLogSubAccountTradingParams
impl Send for QueryManagedSubAccountTransferLogSubAccountTradingParams
impl Sync for QueryManagedSubAccountTransferLogSubAccountTradingParams
impl Unpin for QueryManagedSubAccountTransferLogSubAccountTradingParams
impl UnsafeUnpin for QueryManagedSubAccountTransferLogSubAccountTradingParams
impl UnwindSafe for QueryManagedSubAccountTransferLogSubAccountTradingParams
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