plaid/model/party_role_type.rs
1use serde::{Serialize, Deserialize};
2///A value from a MISMO defined list that identifies the role that the party plays in the transaction. Parties may be either a person or legal entity. A party may play multiple roles in a transaction.A value from a MISMO defined list that identifies the role that the party plays in the transaction. Parties may be either a person or legal entity. A party may play multiple roles in a transaction.
3#[derive(Debug, Serialize, Deserialize, Clone)]
4pub enum PartyRoleType {
5 Borrower,
6}