pub struct GetConnectedAccountBalancesParams {
pub account_id: String,
pub page_size: Option<u16>,
pub page_cursor: Option<String>,
}Expand description
struct for passing parameters to the method
ConnectedAccountsBetaApi::get_connected_account_balances
Fields§
§account_id: StringThe ID of the account to fetch balances for.
page_size: Option<u16>Page size for pagination.
page_cursor: Option<String>Page cursor for pagination.
Implementations§
Source§impl GetConnectedAccountBalancesParams
impl GetConnectedAccountBalancesParams
Sourcepub fn builder() -> GetConnectedAccountBalancesParamsBuilder
pub fn builder() -> GetConnectedAccountBalancesParamsBuilder
Create an instance of GetConnectedAccountBalancesParams using the builder syntax
Trait Implementations§
Source§impl Clone for GetConnectedAccountBalancesParams
impl Clone for GetConnectedAccountBalancesParams
Source§fn clone(&self) -> GetConnectedAccountBalancesParams
fn clone(&self) -> GetConnectedAccountBalancesParams
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 GetConnectedAccountBalancesParams
impl RefUnwindSafe for GetConnectedAccountBalancesParams
impl Send for GetConnectedAccountBalancesParams
impl Sync for GetConnectedAccountBalancesParams
impl Unpin for GetConnectedAccountBalancesParams
impl UnwindSafe for GetConnectedAccountBalancesParams
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