pub struct QueryManagedSubAccountTransferLogMasterAccountInvestorParams {
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<String>,
}Expand description
Request parameters for the [query_managed_sub_account_transfer_log_master_account_investor] operation.
This struct holds all of the inputs you can pass when calling
query_managed_sub_account_transfer_log_master_account_investor.
Fields§
§email: StringThis 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: 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.
Implementations§
Source§impl QueryManagedSubAccountTransferLogMasterAccountInvestorParams
impl QueryManagedSubAccountTransferLogMasterAccountInvestorParams
Sourcepub fn builder(
email: String,
start_time: i64,
end_time: i64,
page: i64,
limit: i64,
) -> QueryManagedSubAccountTransferLogMasterAccountInvestorParamsBuilder
pub fn builder( email: String, start_time: i64, end_time: i64, page: i64, limit: i64, ) -> QueryManagedSubAccountTransferLogMasterAccountInvestorParamsBuilder
Create a builder for [query_managed_sub_account_transfer_log_master_account_investor].
Required parameters:
email— Sub-account emailstart_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 QueryManagedSubAccountTransferLogMasterAccountInvestorParams
impl Clone for QueryManagedSubAccountTransferLogMasterAccountInvestorParams
Source§fn clone(&self) -> QueryManagedSubAccountTransferLogMasterAccountInvestorParams
fn clone(&self) -> QueryManagedSubAccountTransferLogMasterAccountInvestorParams
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 QueryManagedSubAccountTransferLogMasterAccountInvestorParams
impl RefUnwindSafe for QueryManagedSubAccountTransferLogMasterAccountInvestorParams
impl Send for QueryManagedSubAccountTransferLogMasterAccountInvestorParams
impl Sync for QueryManagedSubAccountTransferLogMasterAccountInvestorParams
impl Unpin for QueryManagedSubAccountTransferLogMasterAccountInvestorParams
impl UnsafeUnpin for QueryManagedSubAccountTransferLogMasterAccountInvestorParams
impl UnwindSafe for QueryManagedSubAccountTransferLogMasterAccountInvestorParams
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