import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * User provided settings to manage card payments. This data is only allowed on a business account. */ export type CardPaymentSettings = { /** * The description that shows up on credit card transactions. This will default to the accounts display name on account creation. */ statementDescriptor?: string | undefined; }; /** @internal */ export declare const CardPaymentSettings$inboundSchema: z.ZodType; /** @internal */ export type CardPaymentSettings$Outbound = { statementDescriptor?: string | undefined; }; /** @internal */ export declare const CardPaymentSettings$outboundSchema: z.ZodType; export declare function cardPaymentSettingsToJSON(cardPaymentSettings: CardPaymentSettings): string; export declare function cardPaymentSettingsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=cardpaymentsettings.d.ts.map