pub struct MicrodepositElements {
pub account_name: Option<String>,
pub account_number: String,
pub account_type: String,
pub email: Option<String>,
pub first_name: Option<String>,
pub last_name: Option<String>,
pub routing_number: String,
}Expand description
MicrodepositElements
JSON schema
{
"required": [
"account_number",
"account_type",
"routing_number"
],
"properties": {
"account_name": {
"examples": [
"My test account"
],
"type": "string"
},
"account_number": {
"examples": [
"3331261"
],
"type": "string"
},
"account_type": {
"examples": [
"CHECKING"
],
"type": "string"
},
"email": {
"examples": [
"joshyboy2@example.com"
],
"type": "string"
},
"first_name": {
"examples": [
"Joshy"
],
"type": "string"
},
"last_name": {
"examples": [
"Grobanne"
],
"type": "string"
},
"routing_number": {
"examples": [
"091000019"
],
"type": "string"
}
}
}Fields§
§account_name: Option<String>§account_number: String§account_type: String§email: Option<String>§first_name: Option<String>§last_name: Option<String>§routing_number: StringTrait Implementations§
Source§impl Clone for MicrodepositElements
impl Clone for MicrodepositElements
Source§fn clone(&self) -> MicrodepositElements
fn clone(&self) -> MicrodepositElements
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 MicrodepositElements
impl Debug for MicrodepositElements
Source§impl<'de> Deserialize<'de> for MicrodepositElements
impl<'de> Deserialize<'de> for MicrodepositElements
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<&MicrodepositElements> for MicrodepositElements
impl From<&MicrodepositElements> for MicrodepositElements
Source§fn from(value: &MicrodepositElements) -> Self
fn from(value: &MicrodepositElements) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MicrodepositElements
impl RefUnwindSafe for MicrodepositElements
impl Send for MicrodepositElements
impl Sync for MicrodepositElements
impl Unpin for MicrodepositElements
impl UnwindSafe for MicrodepositElements
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