Struct plaid_openapi::model::TransferAuthorization
source · [−]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: TransferAuthorizationIdPlaid’s unique identifier for a transfer authorization.
created: StringThe datetime representing when the authorization was created, in the format 2006-01-02T15:04:05Z.
decision: TransferAuthorizationDecisionA 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: TransferAuthorizationProposedTransferDetails regarding the proposed transfer.
Trait Implementations
sourceimpl Debug for TransferAuthorization
impl Debug for TransferAuthorization
sourceimpl<'de> Deserialize<'de> for TransferAuthorization
impl<'de> Deserialize<'de> for TransferAuthorization
sourcefn 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
sourceimpl Serialize for TransferAuthorization
impl Serialize for TransferAuthorization
Auto Trait Implementations
impl RefUnwindSafe for TransferAuthorization
impl Send for TransferAuthorization
impl Sync for TransferAuthorization
impl Unpin for TransferAuthorization
impl UnwindSafe for TransferAuthorization
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more