pub struct TransferAuthorizationProposedTransfer {
    pub ach_class: AchClass,
    pub account_id: String,
    pub type_: TransferType,
    pub user: TransferUserInResponse,
    pub amount: TransferAmount,
    pub network: String,
    pub origination_account_id: String,
    pub iso_currency_code: String,
}

Fields

ach_class: AchClass

Specifies the use case of the transfer. Required for transfers on an ACH network.

"ccd" - Corporate Credit or Debit - fund transfer between two corporate bank accounts

"ppd" - Prearranged Payment or Deposit - the transfer is part of a pre-existing relationship with a consumer, eg. bill payment

"tel" - Telephone-Initiated Entry

"web" - Internet-Initiated Entry - debits from a consumer’s account where their authorization is obtained over the Internet

account_id: String

The Plaid account_id for the account that will be debited or credited.

type_: TransferType

The type of transfer. This will be either debit or credit. A debit indicates a transfer of money into the origination account; a credit indicates a transfer of money out of the origination account.

user: TransferUserInResponse

The legal name and other information for the account holder.

amount: TransferAmount

The amount of the transfer (decimal string with two digits of precision e.g. “10.00”).

network: String

The network or rails used for the transfer.

origination_account_id: String

Plaid’s unique identifier for the origination account that was used for this transfer.

iso_currency_code: String

The currency of the transfer amount. The default value is “USD”.

Trait Implementations

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more