import * as z from "zod/v3"; import { CardScheme } from "./cardscheme.js"; export type PaymentMethodCard = { /** * Set to `card` to use a new card. */ method?: "card" | undefined; /** * The 13-19 digit number for this card as it can be found on the front of the card. */ number: string; /** * The expiration date of the card, formatted `MM/YY`. */ expirationDate: string; /** * The optional card's network scheme. */ cardScheme?: CardScheme | null | undefined; /** * The merchant identifier for this card. */ externalIdentifier?: string | null | undefined; }; /** @internal */ export type PaymentMethodCard$Outbound = { method: "card"; number: string; expiration_date: string; card_scheme?: string | null | undefined; external_identifier?: string | null | undefined; }; /** @internal */ export declare const PaymentMethodCard$outboundSchema: z.ZodType; export declare function paymentMethodCardToJSON(paymentMethodCard: PaymentMethodCard): string; //# sourceMappingURL=paymentmethodcard.d.ts.map