pub struct SubDepositRecordRequest<'a> {
pub id: Option<&'a str>,
pub tx_id: Option<&'a str>,
pub sub_member_id: &'a str,
pub coin: Option<&'a str>,
pub start_time: Option<u64>,
pub end_time: Option<u64>,
pub limit: Option<u32>,
pub cursor: Option<&'a str>,
}Expand description
Request for querying subaccount’s deposit records (on-chain)
Fields§
§id: Option<&'a str>Internal ID: Can be used to uniquely identify and filter the deposit. When combined with other parameters, this field takes the highest priority
tx_id: Option<&'a str>Transaction ID: Please note that data generated before Jan 1, 2024 cannot be queried using txID
sub_member_id: &'a strSub UID
coin: Option<&'a str>Coin, uppercase only
start_time: Option<u64>The start timestamp (ms) Note: the query logic is actually effective based on second level
end_time: Option<u64>The end timestamp (ms) Note: the query logic is actually effective based on second level
limit: Option<u32>Limit for data size per page. [1, 50]. Default: 50
cursor: Option<&'a str>Cursor. Use the nextPageCursor token from the response to retrieve the next page of the result set
Trait Implementations§
Source§impl<'a> Clone for SubDepositRecordRequest<'a>
impl<'a> Clone for SubDepositRecordRequest<'a>
Source§fn clone(&self) -> SubDepositRecordRequest<'a>
fn clone(&self) -> SubDepositRecordRequest<'a>
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<'a> Debug for SubDepositRecordRequest<'a>
impl<'a> Debug for SubDepositRecordRequest<'a>
Source§impl<'de: 'a, 'a> Deserialize<'de> for SubDepositRecordRequest<'a>
impl<'de: 'a, 'a> Deserialize<'de> for SubDepositRecordRequest<'a>
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<'a> Freeze for SubDepositRecordRequest<'a>
impl<'a> RefUnwindSafe for SubDepositRecordRequest<'a>
impl<'a> Send for SubDepositRecordRequest<'a>
impl<'a> Sync for SubDepositRecordRequest<'a>
impl<'a> Unpin for SubDepositRecordRequest<'a>
impl<'a> UnsafeUnpin for SubDepositRecordRequest<'a>
impl<'a> UnwindSafe for SubDepositRecordRequest<'a>
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