pub struct FundingAccountSchema {
pub id: String,
pub reference_id: Option<String>,
pub type_: Option<String>,
pub description: Option<String>,
pub account_number: Option<f64>,
pub routing_number: Option<String>,
}
Fields§
§id: String
Internal account ID
reference_id: Option<String>
External ID or code to reference this account. e.g. share code.
type_: Option<String>
Account type
description: Option<String>
Additional text describing account
account_number: Option<f64>
Account number
routing_number: Option<String>
Routing number
Trait Implementations§
Source§impl Debug for FundingAccountSchema
impl Debug for FundingAccountSchema
Source§impl<'de> Deserialize<'de> for FundingAccountSchema
impl<'de> Deserialize<'de> for FundingAccountSchema
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 Display for FundingAccountSchema
impl Display for FundingAccountSchema
Auto Trait Implementations§
impl Freeze for FundingAccountSchema
impl RefUnwindSafe for FundingAccountSchema
impl Send for FundingAccountSchema
impl Sync for FundingAccountSchema
impl Unpin for FundingAccountSchema
impl UnwindSafe for FundingAccountSchema
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