pub struct GetAssetWalletsParams {
pub total_amount_larger_than: Option<f64>,
pub asset_id: Option<String>,
pub order_by: Option<String>,
pub before: Option<String>,
pub after: Option<String>,
pub limit: Option<f64>,
}
Expand description
struct for passing parameters to the method [get_asset_wallets
]
Fields§
§total_amount_larger_than: Option<f64>
When specified, only vault wallets with total balance greater than this amount are returned.
asset_id: Option<String>
When specified, only vault wallets with the specified ID are returned.
order_by: Option<String>
§before: Option<String>
Fetches the next paginated response before this element. This element is a cursor and is returned at the response of the previous page.
after: Option<String>
Fetches the next paginated response after this element. This element is a cursor and is returned at the response of the previous page.
limit: Option<f64>
The maximum number of vault wallets in a single response. The default is 200 and the maximum is 1000.
Implementations§
Source§impl GetAssetWalletsParams
impl GetAssetWalletsParams
Sourcepub fn builder() -> GetAssetWalletsParamsBuilder
pub fn builder() -> GetAssetWalletsParamsBuilder
Create an instance of GetAssetWalletsParams
using the builder syntax
Trait Implementations§
Source§impl Clone for GetAssetWalletsParams
impl Clone for GetAssetWalletsParams
Source§fn clone(&self) -> GetAssetWalletsParams
fn clone(&self) -> GetAssetWalletsParams
Returns a copy 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 GetAssetWalletsParams
impl RefUnwindSafe for GetAssetWalletsParams
impl Send for GetAssetWalletsParams
impl Sync for GetAssetWalletsParams
impl Unpin for GetAssetWalletsParams
impl UnwindSafe for GetAssetWalletsParams
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