import * as z from "zod/v3"; export type CheckoutSessionPaymentMethodCreate = { /** * 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; }; /** @internal */ export type CheckoutSessionPaymentMethodCreate$Outbound = { method: "checkout-session"; id: string; external_identifier?: string | null | undefined; buyer_id?: string | null | undefined; buyer_external_identifier?: string | null | undefined; }; /** @internal */ export declare const CheckoutSessionPaymentMethodCreate$outboundSchema: z.ZodType; export declare function checkoutSessionPaymentMethodCreateToJSON(checkoutSessionPaymentMethodCreate: CheckoutSessionPaymentMethodCreate): string; //# sourceMappingURL=checkoutsessionpaymentmethodcreate.d.ts.map