import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { AddonCadence } from "./addon-cadence.js"; import { ProrationBehavior } from "./proration-behavior.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type AddAddonRef = { addonId?: string | undefined; associationId?: string | undefined; cadence?: AddonCadence | undefined; prorationBehavior?: ProrationBehavior | undefined; startDate?: Date | undefined; }; /** @internal */ export declare const AddAddonRef$inboundSchema: z.ZodMiniType; /** @internal */ export type AddAddonRef$Outbound = { addon_id?: string | undefined; association_id?: string | undefined; cadence?: string | undefined; proration_behavior?: string | undefined; start_date?: string | undefined; }; /** @internal */ export declare const AddAddonRef$outboundSchema: z.ZodMiniType; export declare function addAddonRefToJSON(addAddonRef: AddAddonRef): string; export declare function addAddonRefFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=add-addon-ref.d.ts.map