import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AmountDecimal, AmountDecimal$Outbound } from "./amountdecimal.js"; /** * Represents a modifier or option applied to a scheduled transfer line item. */ export type CreateScheduledTransferLineItemOption = { /** * The name of the option or modifier. */ name: string; /** * The quantity of this option. */ quantity: number; /** * Optional price modification applied by this option. Can be positive, negative, or zero. */ priceModifier?: AmountDecimal | undefined; /** * Optional group identifier to categorize related options (e.g., 'toppings'). */ group?: string | undefined; /** * Optional list of images associated with this line item. */ imageIDs?: Array | undefined; }; /** @internal */ export declare const CreateScheduledTransferLineItemOption$inboundSchema: z.ZodType; /** @internal */ export type CreateScheduledTransferLineItemOption$Outbound = { name: string; quantity: number; priceModifier?: AmountDecimal$Outbound | undefined; group?: string | undefined; imageIDs?: Array | undefined; }; /** @internal */ export declare const CreateScheduledTransferLineItemOption$outboundSchema: z.ZodType; export declare function createScheduledTransferLineItemOptionToJSON(createScheduledTransferLineItemOption: CreateScheduledTransferLineItemOption): string; export declare function createScheduledTransferLineItemOptionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createscheduledtransferlineitemoption.d.ts.map