Interface VisaPaymentPayloadResponse

Response from the Visa backend's /access-token endpoint

interface VisaPaymentPayloadResponse {
    error?: string;
    payload?: unknown;
    payloadEncoded?: string;
    success: boolean;
}

Properties

error?: string
payload?: unknown
payloadEncoded?: string
success: boolean