pub struct PaymentAccountBodyPaymentAccount {
pub account_guid: Option<String>,
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 member_guid: Option<String>,
pub routing_number: Option<Value>,
pub transit_number: Option<Value>,
pub updated_at: Option<Value>,
pub user_guid: Option<String>,
}Expand description
PaymentAccountBodyPaymentAccount
JSON schema
{
"allOf": [
{
"$ref": "#/components/schemas/MemberElements"
},
{
"$ref": "#/components/schemas/PaymentAccount"
}
]
}Fields§
§account_guid: Option<String>§account_name: Option<Value>§account_number: Option<Value>§account_type: Option<Value>§available_balance: Option<Value>§balance: Option<Value>§created_at: Option<Value>§member_guid: Option<String>§routing_number: Option<Value>§transit_number: Option<Value>§updated_at: Option<Value>§user_guid: Option<String>Trait Implementations§
Source§impl Clone for PaymentAccountBodyPaymentAccount
impl Clone for PaymentAccountBodyPaymentAccount
Source§fn clone(&self) -> PaymentAccountBodyPaymentAccount
fn clone(&self) -> PaymentAccountBodyPaymentAccount
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 PaymentAccountBodyPaymentAccount
impl<'de> Deserialize<'de> for PaymentAccountBodyPaymentAccount
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<&PaymentAccountBodyPaymentAccount> for PaymentAccountBodyPaymentAccount
impl From<&PaymentAccountBodyPaymentAccount> for PaymentAccountBodyPaymentAccount
Source§fn from(value: &PaymentAccountBodyPaymentAccount) -> Self
fn from(value: &PaymentAccountBodyPaymentAccount) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PaymentAccountBodyPaymentAccount
impl RefUnwindSafe for PaymentAccountBodyPaymentAccount
impl Send for PaymentAccountBodyPaymentAccount
impl Sync for PaymentAccountBodyPaymentAccount
impl Unpin for PaymentAccountBodyPaymentAccount
impl UnwindSafe for PaymentAccountBodyPaymentAccount
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