import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Describes the distribution of card transactions by payment method. */ export type CardAcceptanceMethods = { /** * Percentage of card transactions that are in-person payments. Minimum value is 0, maximum is 100. */ inPersonPercentage?: number | undefined; /** * Percentage of card transactions that are mail or phone payments. Minimum value is 0, maximum is 100. */ mailOrPhonePercentage?: number | undefined; /** * Percentage of card transactions that are online payments. Minimum value is 0, maximum is 100. */ onlinePercentage?: number | undefined; }; /** @internal */ export declare const CardAcceptanceMethods$inboundSchema: z.ZodType; /** @internal */ export type CardAcceptanceMethods$Outbound = { inPersonPercentage?: number | undefined; mailOrPhonePercentage?: number | undefined; onlinePercentage?: number | undefined; }; /** @internal */ export declare const CardAcceptanceMethods$outboundSchema: z.ZodType; export declare function cardAcceptanceMethodsToJSON(cardAcceptanceMethods: CardAcceptanceMethods): string; export declare function cardAcceptanceMethodsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=cardacceptancemethods.d.ts.map