pub struct AddExchangeAccountParams {
pub add_exchange_account_request: AddExchangeAccountRequest,
pub idempotency_key: Option<String>,
}
Expand description
struct for passing parameters to the method [add_exchange_account
]
Fields§
§add_exchange_account_request: AddExchangeAccountRequest
§idempotency_key: Option<String>
A unique identifier for the request. If the request is sent multiple times with the same idempotency key, the server will return the same response as the first request. The idempotency key is valid for 24 hours.
Implementations§
Source§impl AddExchangeAccountParams
impl AddExchangeAccountParams
Sourcepub fn builder() -> AddExchangeAccountParamsBuilder
pub fn builder() -> AddExchangeAccountParamsBuilder
Create an instance of AddExchangeAccountParams
using the builder syntax
Trait Implementations§
Source§impl Clone for AddExchangeAccountParams
impl Clone for AddExchangeAccountParams
Source§fn clone(&self) -> AddExchangeAccountParams
fn clone(&self) -> AddExchangeAccountParams
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 AddExchangeAccountParams
impl RefUnwindSafe for AddExchangeAccountParams
impl Send for AddExchangeAccountParams
impl Sync for AddExchangeAccountParams
impl Unpin for AddExchangeAccountParams
impl UnwindSafe for AddExchangeAccountParams
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