pub struct MicrodepositResponse {
pub error_message: Option<String>,
pub guid: Option<String>,
pub institution_code: Option<String>,
pub institution_name: Option<String>,
pub status: Option<String>,
pub updated_at: Option<String>,
pub verified_at: Option<String>,
}Expand description
MicrodepositResponse
JSON schema
{
"type": "object",
"properties": {
"error_message": {
"type": [
"string",
"null"
]
},
"guid": {
"examples": [
"MIC-09ba578e-8448-4f7f-89e1-b62ff2517edb"
],
"type": "string"
},
"institution_code": {
"examples": [
"mxbank"
],
"type": "string"
},
"institution_name": {
"examples": [
"MX Bank"
],
"type": "string"
},
"status": {
"examples": [
"INITIATED"
],
"type": "string"
},
"updated_at": {
"examples": [
"2023-06-01T19:18:06Z"
],
"type": "string"
},
"verified_at": {
"type": [
"string",
"null"
]
}
}
}Fields§
§error_message: Option<String>§guid: Option<String>§institution_code: Option<String>§institution_name: Option<String>§status: Option<String>§updated_at: Option<String>§verified_at: Option<String>Trait Implementations§
Source§impl Clone for MicrodepositResponse
impl Clone for MicrodepositResponse
Source§fn clone(&self) -> MicrodepositResponse
fn clone(&self) -> MicrodepositResponse
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 Debug for MicrodepositResponse
impl Debug for MicrodepositResponse
Source§impl Default for MicrodepositResponse
impl Default for MicrodepositResponse
Source§impl<'de> Deserialize<'de> for MicrodepositResponse
impl<'de> Deserialize<'de> for MicrodepositResponse
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<&MicrodepositResponse> for MicrodepositResponse
impl From<&MicrodepositResponse> for MicrodepositResponse
Source§fn from(value: &MicrodepositResponse) -> Self
fn from(value: &MicrodepositResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MicrodepositResponse
impl RefUnwindSafe for MicrodepositResponse
impl Send for MicrodepositResponse
impl Sync for MicrodepositResponse
impl Unpin for MicrodepositResponse
impl UnwindSafe for MicrodepositResponse
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