Struct plaid_openapi::TransferAuthorization
source · [−]pub struct TransferAuthorization {
pub id: TransferAuthorizationID,
pub created: String,
pub decision: String,
pub decision_rationale: TransferAuthorizationDecisionRationale,
pub guarantee_decision: TransferAuthorizationGuaranteeDecision,
pub guarantee_decision_rationale: 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: StringA decision regarding the proposed transfer.
approved – The proposed transfer has received the end user’s consent and has been approved for processing. Plaid has also reviewed the proposed transfer and has approved it for processing.
permitted – Plaid was unable to fetch the information required to approve or decline the proposed transfer. You may proceed with the transfer, but further review is recommended. Plaid is awaiting further instructions from the client.
declined – Plaid reviewed the proposed transfer and declined processing. Refer to the code field in the decision_rationale object for details.
decision_rationale: TransferAuthorizationDecisionRationaleThe rationale for Plaid’s decision regarding a proposed transfer. Will be null for approved decisions.
guarantee_decision: TransferAuthorizationGuaranteeDecisionIndicates 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: TransferAuthorizationGuaranteeDecisionRationaleThe 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