pub struct RedeemFundsToLinkedDdaParams {
pub account_id: String,
pub idempotency_key: Option<String>,
pub funds: Option<Funds>,
}
Expand description
struct for passing parameters to the method [redeem_funds_to_linked_dda
]
Fields§
§account_id: String
The 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 RedeemFundsToLinkedDdaParams
impl RedeemFundsToLinkedDdaParams
Sourcepub fn builder() -> RedeemFundsToLinkedDdaParamsBuilder
pub fn builder() -> RedeemFundsToLinkedDdaParamsBuilder
Create an instance of RedeemFundsToLinkedDdaParams
using the builder syntax
Trait Implementations§
Source§impl Clone for RedeemFundsToLinkedDdaParams
impl Clone for RedeemFundsToLinkedDdaParams
Source§fn clone(&self) -> RedeemFundsToLinkedDdaParams
fn clone(&self) -> RedeemFundsToLinkedDdaParams
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 RedeemFundsToLinkedDdaParams
impl RefUnwindSafe for RedeemFundsToLinkedDdaParams
impl Send for RedeemFundsToLinkedDdaParams
impl Sync for RedeemFundsToLinkedDdaParams
impl Unpin for RedeemFundsToLinkedDdaParams
impl UnwindSafe for RedeemFundsToLinkedDdaParams
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