import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Additional metadata for a card payment method. */ export type CardPaymentMetadata = { /** * The brand of the card used for the payment. */ brand: string; /** * The last 4 digits of the card number. */ last4: string; }; /** @internal */ export declare const CardPaymentMetadata$inboundSchema: z.ZodMiniType; export declare function cardPaymentMetadataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=cardpaymentmetadata.d.ts.map