pub struct DepositFundsFromLinkedDdaParams {
pub account_id: String,
pub idempotency_key: Option<String>,
pub funds: Option<Funds>,
}Expand description
struct for passing parameters to the method
FiatAccountsApi::deposit_funds_from_linked_dda
Fields§
§account_id: StringThe ID of the fiat account to use
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.
funds: Option<Funds>Implementations§
Source§impl DepositFundsFromLinkedDdaParams
impl DepositFundsFromLinkedDdaParams
Sourcepub fn builder() -> DepositFundsFromLinkedDdaParamsBuilder
pub fn builder() -> DepositFundsFromLinkedDdaParamsBuilder
Create an instance of DepositFundsFromLinkedDdaParams using the builder syntax
Trait Implementations§
Source§impl Clone for DepositFundsFromLinkedDdaParams
impl Clone for DepositFundsFromLinkedDdaParams
Source§fn clone(&self) -> DepositFundsFromLinkedDdaParams
fn clone(&self) -> DepositFundsFromLinkedDdaParams
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 DepositFundsFromLinkedDdaParams
impl RefUnwindSafe for DepositFundsFromLinkedDdaParams
impl Send for DepositFundsFromLinkedDdaParams
impl Sync for DepositFundsFromLinkedDdaParams
impl Unpin for DepositFundsFromLinkedDdaParams
impl UnwindSafe for DepositFundsFromLinkedDdaParams
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