pub struct GetPagedVaultAccountsParams {
pub name_prefix: Option<String>,
pub name_suffix: Option<String>,
pub min_amount_threshold: Option<f64>,
pub asset_id: Option<String>,
pub order_by: Option<String>,
pub before: Option<String>,
pub after: Option<String>,
pub limit: Option<f64>,
pub tag_ids: Option<Vec<Uuid>>,
}Expand description
struct for passing parameters to the method
VaultsApi::get_paged_vault_accounts
Fields§
§name_prefix: Option<String>§name_suffix: Option<String>§min_amount_threshold: Option<f64>Specifying minAmountThreshold will filter accounts with balances greater than this value, otherwise, it will return all accounts. The amount set in this parameter is the native asset amount and not its USD value.
asset_id: Option<String>§order_by: Option<String>§before: Option<String>§after: Option<String>§limit: Option<f64>§tag_ids: Option<Vec<Uuid>>List of tag IDs to filter vault accounts.
Implementations§
Source§impl GetPagedVaultAccountsParams
impl GetPagedVaultAccountsParams
Sourcepub fn builder() -> GetPagedVaultAccountsParamsBuilder
pub fn builder() -> GetPagedVaultAccountsParamsBuilder
Create an instance of GetPagedVaultAccountsParams using the builder syntax
Trait Implementations§
Source§impl Clone for GetPagedVaultAccountsParams
impl Clone for GetPagedVaultAccountsParams
Source§fn clone(&self) -> GetPagedVaultAccountsParams
fn clone(&self) -> GetPagedVaultAccountsParams
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 moreAuto Trait Implementations§
impl Freeze for GetPagedVaultAccountsParams
impl RefUnwindSafe for GetPagedVaultAccountsParams
impl Send for GetPagedVaultAccountsParams
impl Sync for GetPagedVaultAccountsParams
impl Unpin for GetPagedVaultAccountsParams
impl UnwindSafe for GetPagedVaultAccountsParams
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