import * as z from "zod/v3"; /** * Create a payment with a checkout session ID (and an optional URL for 3DS). */ export type CheckoutSessionWithUrlPaymentMethodCreate = { /** * Always `checkout-session` */ method?: "checkout-session" | undefined; /** * The ID for the checkout session. */ id: string; /** * The merchant reference that can be used to match the payment method against your own records. */ externalIdentifier?: string | null | undefined; /** * The `id` of a stored buyer to use Use this instead of the `buyer_external_identifier`. */ buyerId?: string | null | undefined; /** * The `external_identifier` of a stored buyer to use. Use this instead of the `buyer_id`. */ buyerExternalIdentifier?: string | null | undefined; /** * The URL to redirect a user back to after the complete 3DS in browser. */ redirectUrl?: string | null | undefined; }; /** @internal */ export type CheckoutSessionWithUrlPaymentMethodCreate$Outbound = { method: "checkout-session"; id: string; external_identifier?: string | null | undefined; buyer_id?: string | null | undefined; buyer_external_identifier?: string | null | undefined; redirect_url?: string | null | undefined; }; /** @internal */ export declare const CheckoutSessionWithUrlPaymentMethodCreate$outboundSchema: z.ZodType; export declare function checkoutSessionWithUrlPaymentMethodCreateToJSON(checkoutSessionWithUrlPaymentMethodCreate: CheckoutSessionWithUrlPaymentMethodCreate): string; //# sourceMappingURL=checkoutsessionwithurlpaymentmethodcreate.d.ts.map