import * as z from "zod/v3"; export type FiservInstallmentOptions = { /** * Passes the `order.installmentOptions.numberOfInstallments` field to the Fiserv API. */ numberOfInstallments?: number | null | undefined; /** * Passes the `order.installmentOptions.installmentsInterest` field to the Fiserv API. */ installmentsInterest?: boolean | null | undefined; /** * Passes the `order.installmentOptions.installmentDelayMonths` field to the Fiserv API. */ installmentDelayMonths?: number | null | undefined; /** * Passes the `order.installmentOptions.merchantAdviceCodeSupported` field to the Fiserv API. */ merchantAdviceCodeSupported?: boolean | null | undefined; }; /** @internal */ export type FiservInstallmentOptions$Outbound = { numberOfInstallments?: number | null | undefined; installmentsInterest?: boolean | null | undefined; installmentDelayMonths?: number | null | undefined; merchantAdviceCodeSupported?: boolean | null | undefined; }; /** @internal */ export declare const FiservInstallmentOptions$outboundSchema: z.ZodType; export declare function fiservInstallmentOptionsToJSON(fiservInstallmentOptions: FiservInstallmentOptions): string; //# sourceMappingURL=fiservinstallmentoptions.d.ts.map