pub struct AchRelationship {
pub id: String,
pub account_id: String,
pub status: AchRelationshipStatus,
pub account_owner_name: String,
pub bank_account_type: BankAccountType,
pub bank_account_number: String,
pub bank_routing_number: String,
pub nickname: Option<String>,
pub created_at: DateTime<Utc>,
pub updated_at: Option<DateTime<Utc>>,
}Expand description
ACH relationship.
Fields§
§id: StringRelationship ID.
account_id: StringAccount ID.
status: AchRelationshipStatusStatus.
account_owner_name: StringAccount owner name.
bank_account_type: BankAccountTypeBank account type.
bank_account_number: StringBank account number (masked).
bank_routing_number: StringBank routing number.
nickname: Option<String>Nickname.
created_at: DateTime<Utc>Created at timestamp.
updated_at: Option<DateTime<Utc>>Updated at timestamp.
Trait Implementations§
Source§impl Clone for AchRelationship
impl Clone for AchRelationship
Source§fn clone(&self) -> AchRelationship
fn clone(&self) -> AchRelationship
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 AchRelationship
impl Debug for AchRelationship
Source§impl<'de> Deserialize<'de> for AchRelationship
impl<'de> Deserialize<'de> for AchRelationship
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AchRelationship, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AchRelationship, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for AchRelationship
impl Serialize for AchRelationship
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 AchRelationship
impl RefUnwindSafe for AchRelationship
impl Send for AchRelationship
impl Sync for AchRelationship
impl Unpin for AchRelationship
impl UnwindSafe for AchRelationship
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