pub struct InitiateMasterAccountWithdrawalResponse {
pub error: Vec<Value>,
pub errors: Vec<Value>,
pub result: Option<InitiateMasterAccountWithdrawalResponseResult>,
}Expand description
InitiateMasterAccountWithdrawalResponse
JSON schema
{
"type": "object",
"properties": {
"error": {
"type": "array",
"items": {}
},
"errors": {
"type": "array",
"items": {}
},
"result": {
"type": "object",
"required": [
"reference_id"
],
"properties": {
"reference_id": {
"type": "string"
}
}
}
}
}Fields§
§error: Vec<Value>§errors: Vec<Value>§result: Option<InitiateMasterAccountWithdrawalResponseResult>Trait Implementations§
Source§impl Clone for InitiateMasterAccountWithdrawalResponse
impl Clone for InitiateMasterAccountWithdrawalResponse
Source§fn clone(&self) -> InitiateMasterAccountWithdrawalResponse
fn clone(&self) -> InitiateMasterAccountWithdrawalResponse
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 InitiateMasterAccountWithdrawalResponse
impl<'de> Deserialize<'de> for InitiateMasterAccountWithdrawalResponse
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<&InitiateMasterAccountWithdrawalResponse> for InitiateMasterAccountWithdrawalResponse
impl From<&InitiateMasterAccountWithdrawalResponse> for InitiateMasterAccountWithdrawalResponse
Source§fn from(value: &InitiateMasterAccountWithdrawalResponse) -> Self
fn from(value: &InitiateMasterAccountWithdrawalResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InitiateMasterAccountWithdrawalResponse
impl RefUnwindSafe for InitiateMasterAccountWithdrawalResponse
impl Send for InitiateMasterAccountWithdrawalResponse
impl Sync for InitiateMasterAccountWithdrawalResponse
impl Unpin for InitiateMasterAccountWithdrawalResponse
impl UnsafeUnpin for InitiateMasterAccountWithdrawalResponse
impl UnwindSafe for InitiateMasterAccountWithdrawalResponse
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