interface SimulateAuthorizationOutput {
    approved: boolean;
    billed: CurrencyAmount;
    billedAmount: CurrencyAmount;
    createdAt: Date;
    declineReason?: string;
    id: string;
    updatedAt: Date;
}

Properties

approved: boolean

Whether or not authorization is approved.

billedAmount: CurrencyAmount

Amount billed in card's currency.

createdAt: Date

Date/timestamp response was created at.

declineReason?: string

Decline reason code. Only present if not approved.

id: string

ID of authorization response. If approved, ID may be used in subsequent incremental authorizations, reversals and debits.

updatedAt: Date

Date/timestamp response was last updated at.

MMNEPVFCICPMFPCPTTAAATR