pub struct GetVaultAccountAssetAddressesPaginatedParams {
pub vault_account_id: String,
pub asset_id: String,
pub limit: Option<f64>,
pub before: Option<String>,
pub after: Option<String>,
}
Expand description
struct for passing parameters to the method
[get_vault_account_asset_addresses_paginated
]
Fields§
§vault_account_id: String
The ID of the vault account to return
asset_id: String
The ID of the asset
limit: Option<f64>
Limit the number of results per page
before: Option<String>
Cursor string for the previous page
after: Option<String>
Cursor string for the next page
Implementations§
Source§impl GetVaultAccountAssetAddressesPaginatedParams
impl GetVaultAccountAssetAddressesPaginatedParams
Sourcepub fn builder() -> GetVaultAccountAssetAddressesPaginatedParamsBuilder
pub fn builder() -> GetVaultAccountAssetAddressesPaginatedParamsBuilder
Create an instance of GetVaultAccountAssetAddressesPaginatedParams
using the builder syntax
Trait Implementations§
Source§impl Clone for GetVaultAccountAssetAddressesPaginatedParams
impl Clone for GetVaultAccountAssetAddressesPaginatedParams
Source§fn clone(&self) -> GetVaultAccountAssetAddressesPaginatedParams
fn clone(&self) -> GetVaultAccountAssetAddressesPaginatedParams
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 GetVaultAccountAssetAddressesPaginatedParams
impl RefUnwindSafe for GetVaultAccountAssetAddressesPaginatedParams
impl Send for GetVaultAccountAssetAddressesPaginatedParams
impl Sync for GetVaultAccountAssetAddressesPaginatedParams
impl Unpin for GetVaultAccountAssetAddressesPaginatedParams
impl UnwindSafe for GetVaultAccountAssetAddressesPaginatedParams
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