import type { PrimerCheckoutAdditionalInfo } from './PrimerCheckoutAdditionalInfo'; export type PrimerCheckoutData = IPrimerCheckoutData; interface IPrimerCheckoutData { payment?: IPrimerCheckoutDataPayment; additionalInfo?: PrimerCheckoutAdditionalInfo; } export type PrimerCheckoutDataPayment = IPrimerCheckoutDataPayment; interface IPrimerCheckoutDataPayment { id?: string; orderId?: string; paymentFailureReason?: PrimerPaymentErrorCode; } declare enum PrimerPaymentErrorCode { FAILED = "payment-failed", CANCELLED_BY_CUSTOMER = "cancelled-by-customer" } export {}; //# sourceMappingURL=PrimerCheckoutData.d.ts.map