import * as z from "zod"; export type CustomFieldValuePayloadV1 = { /** * Unique identifier for the custom field value */ id?: string | undefined; /** * ID of the catalog entry. You can also use an ExternalID or an Alias of the catalog entry. */ valueCatalogEntryId?: string | undefined; /** * If the custom field type is 'link', this will contain the value assigned. */ valueLink?: string | undefined; /** * If the custom field type is 'numeric', this will contain the value assigned. */ valueNumeric?: string | undefined; /** * ID of the custom field option */ valueOptionId?: string | undefined; /** * If the custom field type is 'text', this will contain the value assigned. */ valueText?: string | undefined; /** * Deprecated: please use incident timestamp values instead */ valueTimestamp?: string | undefined; }; /** @internal */ export declare const CustomFieldValuePayloadV1$inboundSchema: z.ZodType; /** @internal */ export type CustomFieldValuePayloadV1$Outbound = { id?: string | undefined; value_catalog_entry_id?: string | undefined; value_link?: string | undefined; value_numeric?: string | undefined; value_option_id?: string | undefined; value_text?: string | undefined; value_timestamp?: string | undefined; }; /** @internal */ export declare const CustomFieldValuePayloadV1$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace CustomFieldValuePayloadV1$ { /** @deprecated use `CustomFieldValuePayloadV1$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CustomFieldValuePayloadV1$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CustomFieldValuePayloadV1$Outbound` instead. */ type Outbound = CustomFieldValuePayloadV1$Outbound; } //# sourceMappingURL=customfieldvaluepayloadv1.d.ts.map