import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CardType } from "./cardtype.js"; export type CheckoutSessionPaymentMethodDetails = { /** * The first 6 digit of the card. */ bin?: string | null | undefined; /** * The country of the card issuer. */ cardCountry?: string | null | undefined; /** * The payment scheme of the card. */ cardType?: CardType | null | undefined; /** * The card issuer. */ cardIssuerName?: string | null | undefined; }; /** @internal */ export declare const CheckoutSessionPaymentMethodDetails$inboundSchema: z.ZodType; export declare function checkoutSessionPaymentMethodDetailsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=checkoutsessionpaymentmethoddetails.d.ts.map