import * as z from "zod/v3"; /** * Describes the custom properties of the object. */ export type CustomProperty = { name?: string | undefined; /** * Must be a string, a number (for INT properties), or an array of strings. A boolean is not valid. When OpenAPI Generator supports `oneOf`, we can semantically enforce this. */ value?: any | undefined; }; /** @internal */ export type CustomProperty$Outbound = { name?: string | undefined; value?: any | undefined; }; /** @internal */ export declare const CustomProperty$outboundSchema: z.ZodType; export declare function customPropertyToJSON(customProperty: CustomProperty): string; //# sourceMappingURL=customproperty.d.ts.map