import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PushOptionType } from "./pushoptiontype.js"; export type PushOptionChoice = { /** * Allowed value for field. */ value?: string | undefined; /** * The option type. */ type?: PushOptionType | undefined; /** * The property's display name. */ displayName?: string | undefined; /** * A description of the property. */ description?: string | undefined; /** * The property is required if `True`. */ required?: boolean | undefined; }; /** @internal */ export declare const PushOptionChoice$inboundSchema: z.ZodType; export declare function pushOptionChoiceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=pushoptionchoice.d.ts.map