pub struct GetNftTransactionHistoryParams {
pub order_type: i64,
pub start_time: Option<i64>,
pub end_time: Option<i64>,
pub limit: Option<i64>,
pub page: Option<i64>,
pub recv_window: Option<i64>,
}Expand description
Request parameters for the [get_nft_transaction_history] operation.
This struct holds all of the inputs you can pass when calling
get_nft_transaction_history.
Fields§
§order_type: i640: purchase order, 1: sell order, 2: royalty income, 3: primary market order, 4: mint fee
This field is **required.
start_time: Option<i64>The start_time parameter.
This field is **optional.
end_time: Option<i64>The end_time parameter.
This field is **optional.
limit: Option<i64>Default 50, Max 50
This field is **optional.
page: Option<i64>Default 1
This field is **optional.
recv_window: Option<i64>The recv_window parameter.
This field is **optional.
Implementations§
Source§impl GetNftTransactionHistoryParams
impl GetNftTransactionHistoryParams
Sourcepub fn builder(order_type: i64) -> GetNftTransactionHistoryParamsBuilder
pub fn builder(order_type: i64) -> GetNftTransactionHistoryParamsBuilder
Create a builder for [get_nft_transaction_history].
Required parameters:
order_type— 0: purchase order, 1: sell order, 2: royalty income, 3: primary market order, 4: mint fee
Trait Implementations§
Source§impl Clone for GetNftTransactionHistoryParams
impl Clone for GetNftTransactionHistoryParams
Source§fn clone(&self) -> GetNftTransactionHistoryParams
fn clone(&self) -> GetNftTransactionHistoryParams
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 GetNftTransactionHistoryParams
impl RefUnwindSafe for GetNftTransactionHistoryParams
impl Send for GetNftTransactionHistoryParams
impl Sync for GetNftTransactionHistoryParams
impl Unpin for GetNftTransactionHistoryParams
impl UnsafeUnpin for GetNftTransactionHistoryParams
impl UnwindSafe for GetNftTransactionHistoryParams
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