pub struct PaymentAccount {
pub account_name: Option<Value>,
pub account_number: Option<Value>,
pub account_type: Option<Value>,
pub available_balance: Option<Value>,
pub balance: Option<Value>,
pub created_at: Option<Value>,
pub routing_number: Option<Value>,
pub transit_number: Option<Value>,
pub updated_at: Option<Value>,
}Expand description
PaymentAccount
JSON schema
{
"properties": {
"account_name": {
"examples": [
"MX Bank Checking"
]
},
"account_number": {
"examples": [
6366816006
]
},
"account_type": {
"examples": [
"CHECKING"
]
},
"available_balance": {
"examples": [
1000
]
},
"balance": {
"examples": [
1000
]
},
"created_at": {
"examples": [
"2022-03-17T20:38:58Z"
]
},
"routing_number": {
"examples": [
242722023
]
},
"transit_number": {},
"updated_at": {
"examples": [
"2022-11-29T08:02:07Z"
]
}
}
}Fields§
§account_name: Option<Value>§account_number: Option<Value>§account_type: Option<Value>§available_balance: Option<Value>§balance: Option<Value>§created_at: Option<Value>§routing_number: Option<Value>§transit_number: Option<Value>§updated_at: Option<Value>Trait Implementations§
Source§impl Clone for PaymentAccount
impl Clone for PaymentAccount
Source§fn clone(&self) -> PaymentAccount
fn clone(&self) -> PaymentAccount
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 PaymentAccount
impl Debug for PaymentAccount
Source§impl Default for PaymentAccount
impl Default for PaymentAccount
Source§impl<'de> Deserialize<'de> for PaymentAccount
impl<'de> Deserialize<'de> for PaymentAccount
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<&PaymentAccount> for PaymentAccount
impl From<&PaymentAccount> for PaymentAccount
Source§fn from(value: &PaymentAccount) -> Self
fn from(value: &PaymentAccount) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PaymentAccount
impl RefUnwindSafe for PaymentAccount
impl Send for PaymentAccount
impl Sync for PaymentAccount
impl Unpin for PaymentAccount
impl UnwindSafe for PaymentAccount
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