pub struct TransactionParty {
pub account_identifier_type: String,
pub account_name: String,
pub account_identifier: String,
pub servicer_identifier: String,
pub servicer_identifier_type: String,
}
Expand description
Describes a single party in Transaction.
Fields§
§account_identifier_type: String
Account identifier schema.
account_name: String
Name of the account.
account_identifier: String
Identifier of the party’s bank account.
servicer_identifier: String
A code identifying the party’s servicer.
servicer_identifier_type: String
Type of the servicerIdentifier, i.e. the scheme of the servicer ID.
Trait Implementations§
Source§impl Debug for TransactionParty
impl Debug for TransactionParty
Source§impl<'de> Deserialize<'de> for TransactionParty
impl<'de> Deserialize<'de> for TransactionParty
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
Auto Trait Implementations§
impl Freeze for TransactionParty
impl RefUnwindSafe for TransactionParty
impl Send for TransactionParty
impl Sync for TransactionParty
impl Unpin for TransactionParty
impl UnwindSafe for TransactionParty
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