pub struct TransferAuthorization {
    pub id: TransferAuthorizationId,
    pub created: String,
    pub decision: TransferAuthorizationDecision,
    pub decision_rationale: Option<TransferAuthorizationDecisionRationale>,
    pub guarantee_decision: Option<TransferAuthorizationGuaranteeDecision>,
    pub guarantee_decision_rationale: Option<TransferAuthorizationGuaranteeDecisionRationale>,
    pub proposed_transfer: TransferAuthorizationProposedTransfer,
}

Fields

id: TransferAuthorizationId

Plaid’s unique identifier for a transfer authorization.

created: String

The datetime representing when the authorization was created, in the format 2006-01-02T15:04:05Z.

decision: TransferAuthorizationDecision

A decision regarding the proposed transfer.

approved – The proposed transfer has received the end user’s consent and has been approved for processing by Plaid. The decision_rationale field is set if Plaid was unable to fetch the account information. You may proceed with the transfer, but further review is recommended (i.e., use Link in update to re-authenticate your user when decision_rationale.code is LOGIN_REQUIRED). Refer to the code field in the decision_rationale object for details.

declined – Plaid reviewed the proposed transfer and declined processing. Refer to the code field in the decision_rationale object for details.

decision_rationale: Option<TransferAuthorizationDecisionRationale>

The rationale for Plaid’s decision regarding a proposed transfer. It is always set for declined decisions, and may or may not be null for approved decisions.

guarantee_decision: Option<TransferAuthorizationGuaranteeDecision>

Indicates whether the transfer is guaranteed by Plaid (Guaranteed ACH customers only). This field will contain either GUARANTEED or NOT_GUARANTEED indicating whether Plaid will guarantee the transfer. If the transfer is not guaranteed, additional information will be provided in the guarantee_decision_rationale field. Refer to the code field in guarantee_decision_rationale for details.

guarantee_decision_rationale: Option<TransferAuthorizationGuaranteeDecisionRationale>

The rationale for Plaid’s decision to not guarantee a transfer. Will be null unless guarantee_decision is NOT_GUARANTEED.

proposed_transfer: TransferAuthorizationProposedTransfer

Details regarding the proposed transfer.

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