pub struct UniversalTransferMasterAccountResponse {
pub client_tran_id: String,
pub tran_id: i64,
}
Expand description
UniversalTransferMasterAccountResponse
JSON schema
{
"type": "object",
"required": [
"clientTranId",
"tranId"
],
"properties": {
"clientTranId": {
"examples": [
"11945860694"
],
"type": "string"
},
"tranId": {
"examples": [
11945860693
],
"type": "integer",
"format": "int64"
}
}
}
Fields§
§client_tran_id: String
§tran_id: i64
Trait Implementations§
Source§impl Clone for UniversalTransferMasterAccountResponse
impl Clone for UniversalTransferMasterAccountResponse
Source§fn clone(&self) -> UniversalTransferMasterAccountResponse
fn clone(&self) -> UniversalTransferMasterAccountResponse
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 moreSource§impl<'de> Deserialize<'de> for UniversalTransferMasterAccountResponse
impl<'de> Deserialize<'de> for UniversalTransferMasterAccountResponse
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<&UniversalTransferMasterAccountResponse> for UniversalTransferMasterAccountResponse
impl From<&UniversalTransferMasterAccountResponse> for UniversalTransferMasterAccountResponse
Source§fn from(value: &UniversalTransferMasterAccountResponse) -> Self
fn from(value: &UniversalTransferMasterAccountResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for UniversalTransferMasterAccountResponse
impl RefUnwindSafe for UniversalTransferMasterAccountResponse
impl Send for UniversalTransferMasterAccountResponse
impl Sync for UniversalTransferMasterAccountResponse
impl Unpin for UniversalTransferMasterAccountResponse
impl UnwindSafe for UniversalTransferMasterAccountResponse
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