pub struct InitiateMasterAccountWithdrawalBody {
pub amount: InitiateMasterAccountWithdrawalBodyAmount,
pub asset: InitiateMasterAccountWithdrawalBodyAsset,
pub idempotency_token: Option<Uuid>,
pub key: InitiateMasterAccountWithdrawalBodyKey,
}Expand description
InitiateMasterAccountWithdrawalBody
JSON schema
{
"type": "object",
"required": [
"amount",
"asset",
"key"
],
"properties": {
"amount": {
"type": "string",
"maxLength": 64,
"minLength": 1,
"pattern": "^-?[0-9]+(\\.[0-9]+)?$"
},
"asset": {
"type": "string",
"maxLength": 16
},
"idempotency_token": {
"type": "string",
"format": "uuid"
},
"key": {
"type": "string",
"minLength": 1
}
}
}Fields§
§amount: InitiateMasterAccountWithdrawalBodyAmount§asset: InitiateMasterAccountWithdrawalBodyAsset§idempotency_token: Option<Uuid>§key: InitiateMasterAccountWithdrawalBodyKeyTrait Implementations§
Source§impl Clone for InitiateMasterAccountWithdrawalBody
impl Clone for InitiateMasterAccountWithdrawalBody
Source§fn clone(&self) -> InitiateMasterAccountWithdrawalBody
fn clone(&self) -> InitiateMasterAccountWithdrawalBody
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for InitiateMasterAccountWithdrawalBody
impl<'de> Deserialize<'de> for InitiateMasterAccountWithdrawalBody
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&InitiateMasterAccountWithdrawalBody> for InitiateMasterAccountWithdrawalBody
impl From<&InitiateMasterAccountWithdrawalBody> for InitiateMasterAccountWithdrawalBody
Source§fn from(value: &InitiateMasterAccountWithdrawalBody) -> Self
fn from(value: &InitiateMasterAccountWithdrawalBody) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InitiateMasterAccountWithdrawalBody
impl RefUnwindSafe for InitiateMasterAccountWithdrawalBody
impl Send for InitiateMasterAccountWithdrawalBody
impl Sync for InitiateMasterAccountWithdrawalBody
impl Unpin for InitiateMasterAccountWithdrawalBody
impl UnsafeUnpin for InitiateMasterAccountWithdrawalBody
impl UnwindSafe for InitiateMasterAccountWithdrawalBody
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