pub struct ListWalletBalancesParams {
pub include_all: Option<bool>,
pub name: Option<String>,
pub token_address: Option<String>,
pub blockchain: Option<Blockchain>,
pub wallet_set_id: Option<String>,
pub wallet_ids: Option<String>,
pub custody_type: Option<CustodyType>,
pub address: Option<String>,
pub page: PageParams,
}Expand description
Query parameters for the developer list-wallet-balances endpoint.
Fields§
§include_all: Option<bool>Include all wallets, not just those with balances.
name: Option<String>Filter by token name.
token_address: Option<String>Filter by token contract address.
blockchain: Option<Blockchain>Filter by blockchain.
wallet_set_id: Option<String>Filter by wallet set ID.
wallet_ids: Option<String>Filter by specific wallet IDs (comma-separated string).
custody_type: Option<CustodyType>Filter by custody type.
address: Option<String>Filter by wallet address.
page: PageParamsPagination parameters.
Trait Implementations§
Source§impl Clone for ListWalletBalancesParams
impl Clone for ListWalletBalancesParams
Source§fn clone(&self) -> ListWalletBalancesParams
fn clone(&self) -> ListWalletBalancesParams
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 ListWalletBalancesParams
impl Debug for ListWalletBalancesParams
Source§impl Default for ListWalletBalancesParams
impl Default for ListWalletBalancesParams
Source§fn default() -> ListWalletBalancesParams
fn default() -> ListWalletBalancesParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListWalletBalancesParams
impl RefUnwindSafe for ListWalletBalancesParams
impl Send for ListWalletBalancesParams
impl Sync for ListWalletBalancesParams
impl Unpin for ListWalletBalancesParams
impl UnsafeUnpin for ListWalletBalancesParams
impl UnwindSafe for ListWalletBalancesParams
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