pub struct QueryManagedSubAccountTransferLogMasterAccountTradingParams {
pub email: String,
pub start_time: i64,
pub end_time: i64,
pub page: i64,
pub limit: i64,
pub transfers: Option<String>,
pub transfer_function_account_type: Option<QueryManagedSubAccountTransferLogMasterAccountTradingTransferFunctionAccountTypeEnum>,
}Expand description
Request parameters for the [query_managed_sub_account_transfer_log_master_account_trading] operation.
This struct holds all of the inputs you can pass when calling
query_managed_sub_account_transfer_log_master_account_trading.
Fields§
§email: StringThe email parameter.
This field is **required.
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: i64The page parameter.
This field is **required.
limit: i64The limit parameter.
This field is **required.
transfers: Option<String>Transfer Direction (FROM/TO)
This field is **optional.
transfer_function_account_type: Option<QueryManagedSubAccountTransferLogMasterAccountTradingTransferFunctionAccountTypeEnum>The transfer_function_account_type parameter.
This field is **optional.
Implementations§
Source§impl QueryManagedSubAccountTransferLogMasterAccountTradingParams
impl QueryManagedSubAccountTransferLogMasterAccountTradingParams
Sourcepub fn builder(
email: String,
start_time: i64,
end_time: i64,
page: i64,
limit: i64,
) -> QueryManagedSubAccountTransferLogMasterAccountTradingParamsBuilder
pub fn builder( email: String, start_time: i64, end_time: i64, page: i64, limit: i64, ) -> QueryManagedSubAccountTransferLogMasterAccountTradingParamsBuilder
Create a builder for [query_managed_sub_account_transfer_log_master_account_trading].
Required parameters:
email— Stringstart_time— Start Timeend_time— End Time (The start time and end time interval cannot exceed half a year)page— i64limit— i64
Trait Implementations§
Source§impl Clone for QueryManagedSubAccountTransferLogMasterAccountTradingParams
impl Clone for QueryManagedSubAccountTransferLogMasterAccountTradingParams
Source§fn clone(&self) -> QueryManagedSubAccountTransferLogMasterAccountTradingParams
fn clone(&self) -> QueryManagedSubAccountTransferLogMasterAccountTradingParams
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 moreSource§impl<'de> Deserialize<'de> for QueryManagedSubAccountTransferLogMasterAccountTradingParams
impl<'de> Deserialize<'de> for QueryManagedSubAccountTransferLogMasterAccountTradingParams
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 QueryManagedSubAccountTransferLogMasterAccountTradingParams
impl RefUnwindSafe for QueryManagedSubAccountTransferLogMasterAccountTradingParams
impl Send for QueryManagedSubAccountTransferLogMasterAccountTradingParams
impl Sync for QueryManagedSubAccountTransferLogMasterAccountTradingParams
impl Unpin for QueryManagedSubAccountTransferLogMasterAccountTradingParams
impl UnsafeUnpin for QueryManagedSubAccountTransferLogMasterAccountTradingParams
impl UnwindSafe for QueryManagedSubAccountTransferLogMasterAccountTradingParams
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