pub struct InternalTransferParams {
pub exchange_account_id: String,
pub idempotency_key: Option<String>,
pub create_internal_transfer_request: Option<CreateInternalTransferRequest>,
}
Expand description
struct for passing parameters to the method [internal_transfer
]
Fields§
§exchange_account_id: String
The ID of the exchange account to return
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.
create_internal_transfer_request: Option<CreateInternalTransferRequest>
Implementations§
Source§impl InternalTransferParams
impl InternalTransferParams
Sourcepub fn builder() -> InternalTransferParamsBuilder
pub fn builder() -> InternalTransferParamsBuilder
Create an instance of InternalTransferParams
using the builder syntax
Trait Implementations§
Source§impl Clone for InternalTransferParams
impl Clone for InternalTransferParams
Source§fn clone(&self) -> InternalTransferParams
fn clone(&self) -> InternalTransferParams
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 InternalTransferParams
impl RefUnwindSafe for InternalTransferParams
impl Send for InternalTransferParams
impl Sync for InternalTransferParams
impl Unpin for InternalTransferParams
impl UnwindSafe for InternalTransferParams
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