import MerchantCustomer from './MerchantCustomer.js'; import Location from './Location.js'; export default class CheckoutSession { private readonly data; id: string; object?: string; status: string; amount: number; currency: string; description?: string | null; url?: string; successUrl: string; cancelUrl: string; allowedPaymentMethods?: any; customer?: MerchantCustomer; attemptCount?: number; failureCode?: string | null; failureMessage?: string | null; lineItems?: any[]; metadata?: Record; clientReferenceId?: string | null; expiresAt?: string; createdAt?: string; updatedAt?: string; brandingSettings?: Record | null; amountTotal?: number | null; securePayMode?: string; location?: Location; constructor(data: Record); getData(): Record; } //# sourceMappingURL=CheckoutSession.d.ts.map