pub struct TokenizedConvertHistoryParams {
pub start_time: Option<i64>,
pub end_time: Option<i64>,
pub last_id: Option<i64>,
pub size: Option<i32>,
pub recv_window: Option<i64>,
}Expand description
Request parameters for the [tokenized_convert_history] operation.
This struct holds all of the inputs you can pass when calling
tokenized_convert_history.
Fields§
§start_time: Option<i64>Start time (ms epoch).
This field is **optional.
end_time: Option<i64>End time (ms epoch).
This field is **optional.
last_id: Option<i64>Last record id from the previous page. Omit (or leave unset) to fetch the first page.
This field is **optional.
size: Option<i32>Page size. Default 20, max 100.
This field is **optional.
recv_window: Option<i64>The value cannot be greater than 60000.
This field is **optional.
Implementations§
Source§impl TokenizedConvertHistoryParams
impl TokenizedConvertHistoryParams
Sourcepub fn builder() -> TokenizedConvertHistoryParamsBuilder
pub fn builder() -> TokenizedConvertHistoryParamsBuilder
Create a builder for [tokenized_convert_history].
Trait Implementations§
Source§impl Clone for TokenizedConvertHistoryParams
impl Clone for TokenizedConvertHistoryParams
Source§fn clone(&self) -> TokenizedConvertHistoryParams
fn clone(&self) -> TokenizedConvertHistoryParams
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 Default for TokenizedConvertHistoryParams
impl Default for TokenizedConvertHistoryParams
Source§fn default() -> TokenizedConvertHistoryParams
fn default() -> TokenizedConvertHistoryParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TokenizedConvertHistoryParams
impl<'de> Deserialize<'de> for TokenizedConvertHistoryParams
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 TokenizedConvertHistoryParams
impl RefUnwindSafe for TokenizedConvertHistoryParams
impl Send for TokenizedConvertHistoryParams
impl Sync for TokenizedConvertHistoryParams
impl Unpin for TokenizedConvertHistoryParams
impl UnsafeUnpin for TokenizedConvertHistoryParams
impl UnwindSafe for TokenizedConvertHistoryParams
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