import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { CheckoutAction } from "./checkout-action.js"; import { CheckoutPaymentProvider } from "./checkout-payment-provider.js"; import { CheckoutStatus } from "./checkout-status.js"; import { PaymentAction } from "./payment-action.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type WebhookDtoCheckoutSession = { action?: CheckoutAction | undefined; cancelledAt?: Date | undefined; checkoutInvoiceId?: string | undefined; checkoutPaymentId?: string | undefined; checkoutStatus?: CheckoutStatus | undefined; completedAt?: Date | undefined; customerId?: string | undefined; expiresAt?: Date | undefined; failureReason?: string | undefined; id?: string | undefined; paymentAction?: PaymentAction | undefined; paymentProvider?: CheckoutPaymentProvider | undefined; }; /** @internal */ export declare const WebhookDtoCheckoutSession$inboundSchema: z.ZodMiniType; export declare function webhookDtoCheckoutSessionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhook-dto-checkout-session.d.ts.map