pub struct ListTransactionsParams {Show 17 fields
pub blockchain: Option<Blockchain>,
pub custody_type: Option<CustodyType>,
pub destination_address: Option<String>,
pub include_all: Option<bool>,
pub operation: Option<Operation>,
pub ref_id: Option<String>,
pub source_address: Option<String>,
pub state: Option<TransactionState>,
pub token_address: Option<String>,
pub transaction_hash: Option<String>,
pub transaction_type: Option<TransactionType>,
pub wallet_ids: Option<String>,
pub from: Option<String>,
pub to: Option<String>,
pub page_before: Option<String>,
pub page_after: Option<String>,
pub page_size: Option<u32>,
}Expand description
Query parameters for the list-transactions endpoint.
Fields§
§blockchain: Option<Blockchain>Filter by blockchain.
custody_type: Option<CustodyType>Filter by custody type.
destination_address: Option<String>Filter by destination address.
include_all: Option<bool>Include all transactions.
operation: Option<Operation>Filter by operation type.
ref_id: Option<String>Filter by external reference ID.
source_address: Option<String>Filter by source address.
state: Option<TransactionState>Filter by state.
token_address: Option<String>Filter by token contract address.
transaction_hash: Option<String>Filter by transaction hash.
transaction_type: Option<TransactionType>Filter by transaction type.
wallet_ids: Option<String>Filter by specific wallet IDs (comma-separated).
from: Option<String>Start of date-time range (ISO-8601).
to: Option<String>End of date-time range (ISO-8601).
page_before: Option<String>Cursor to page before.
page_after: Option<String>Cursor to page after.
page_size: Option<u32>Page size (1–50).
Trait Implementations§
Source§impl Clone for ListTransactionsParams
impl Clone for ListTransactionsParams
Source§fn clone(&self) -> ListTransactionsParams
fn clone(&self) -> ListTransactionsParams
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 Debug for ListTransactionsParams
impl Debug for ListTransactionsParams
Source§impl Default for ListTransactionsParams
impl Default for ListTransactionsParams
Source§fn default() -> ListTransactionsParams
fn default() -> ListTransactionsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListTransactionsParams
impl RefUnwindSafe for ListTransactionsParams
impl Send for ListTransactionsParams
impl Sync for ListTransactionsParams
impl Unpin for ListTransactionsParams
impl UnsafeUnpin for ListTransactionsParams
impl UnwindSafe for ListTransactionsParams
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