pub struct WireBank {
pub id: String,
pub account_id: String,
pub name: String,
pub bank_code: Option<String>,
pub bank_code_type: Option<String>,
pub country: Option<String>,
pub state_province: Option<String>,
pub postal_code: Option<String>,
pub city: Option<String>,
pub street_address: Option<String>,
pub account_number: Option<String>,
pub created_at: DateTime<Utc>,
}Expand description
Wire bank details.
Fields§
§id: StringBank ID.
account_id: StringAccount ID.
name: StringBank name.
bank_code: Option<String>Bank code.
bank_code_type: Option<String>Bank code type.
country: Option<String>Country.
state_province: Option<String>State/Province.
postal_code: Option<String>Postal code.
city: Option<String>City.
street_address: Option<String>Street address.
account_number: Option<String>Account number.
created_at: DateTime<Utc>Created at timestamp.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for WireBank
impl<'de> Deserialize<'de> for WireBank
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<WireBank, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<WireBank, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for WireBank
impl Serialize for WireBank
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for WireBank
impl RefUnwindSafe for WireBank
impl Send for WireBank
impl Sync for WireBank
impl Unpin for WireBank
impl UnwindSafe for WireBank
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