import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CustomMappings, CustomMappings$Outbound } from "./custommappings.js"; import { PassThroughBody, PassThroughBody$Outbound } from "./passthroughbody.js"; /** * Based on the status some functionality is enabled or disabled. */ export declare const TrackingCategoryStatus: { readonly Active: "active"; readonly Inactive: "inactive"; }; /** * Based on the status some functionality is enabled or disabled. */ export type TrackingCategoryStatus = ClosedEnum; export type TrackingCategory = { /** * A unique identifier for an object. */ id?: string | undefined; /** * A unique identifier for an object. */ parentId?: string | null | undefined; /** * The name of the tracking category. */ name?: string | undefined; /** * The code of the tracking category. */ code?: string | null | undefined; /** * Based on the status some functionality is enabled or disabled. */ status?: TrackingCategoryStatus | undefined; /** * When custom mappings are configured on the resource, the result is included here. */ customMappings?: CustomMappings | null | undefined; /** * A binary value used to detect updates to a object and prevent data conflicts. It is incremented each time an update is made to the object. */ rowVersion?: string | null | undefined; /** * The user who last updated the object. */ updatedBy?: string | null | undefined; /** * The user who created the object. */ createdBy?: string | null | undefined; /** * The date and time when the object was last updated. */ updatedAt?: Date | null | undefined; /** * The date and time when the object was created. */ createdAt?: Date | null | undefined; /** * The pass_through property allows passing service-specific, custom data or structured modifications in request body when creating or updating resources. */ passThrough?: Array | undefined; }; export type TrackingCategoryInput = { /** * A unique identifier for an object. */ parentId?: string | null | undefined; /** * The name of the tracking category. */ name?: string | undefined; /** * The code of the tracking category. */ code?: string | null | undefined; /** * Based on the status some functionality is enabled or disabled. */ status?: TrackingCategoryStatus | undefined; /** * A binary value used to detect updates to a object and prevent data conflicts. It is incremented each time an update is made to the object. */ rowVersion?: string | null | undefined; /** * The pass_through property allows passing service-specific, custom data or structured modifications in request body when creating or updating resources. */ passThrough?: Array | undefined; }; /** @internal */ export declare const TrackingCategoryStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const TrackingCategoryStatus$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace TrackingCategoryStatus$ { /** @deprecated use `TrackingCategoryStatus$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Active: "active"; readonly Inactive: "inactive"; }>; /** @deprecated use `TrackingCategoryStatus$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Active: "active"; readonly Inactive: "inactive"; }>; } /** @internal */ export declare const TrackingCategory$inboundSchema: z.ZodType; /** @internal */ export type TrackingCategory$Outbound = { id?: string | undefined; parent_id?: string | null | undefined; name?: string | undefined; code?: string | null | undefined; status?: string | undefined; custom_mappings?: CustomMappings$Outbound | null | undefined; row_version?: string | null | undefined; updated_by?: string | null | undefined; created_by?: string | null | undefined; updated_at?: string | null | undefined; created_at?: string | null | undefined; pass_through?: Array | undefined; }; /** @internal */ export declare const TrackingCategory$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 TrackingCategory$ { /** @deprecated use `TrackingCategory$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `TrackingCategory$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `TrackingCategory$Outbound` instead. */ type Outbound = TrackingCategory$Outbound; } export declare function trackingCategoryToJSON(trackingCategory: TrackingCategory): string; export declare function trackingCategoryFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const TrackingCategoryInput$inboundSchema: z.ZodType; /** @internal */ export type TrackingCategoryInput$Outbound = { parent_id?: string | null | undefined; name?: string | undefined; code?: string | null | undefined; status?: string | undefined; row_version?: string | null | undefined; pass_through?: Array | undefined; }; /** @internal */ export declare const TrackingCategoryInput$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 TrackingCategoryInput$ { /** @deprecated use `TrackingCategoryInput$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `TrackingCategoryInput$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `TrackingCategoryInput$Outbound` instead. */ type Outbound = TrackingCategoryInput$Outbound; } export declare function trackingCategoryInputToJSON(trackingCategoryInput: TrackingCategoryInput): string; export declare function trackingCategoryInputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=trackingcategory.d.ts.map