import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CustomMappings, CustomMappings$Outbound } from "./custommappings.js"; export type CollectionTag = { /** * A unique identifier for an object. */ id: string | null; /** * The name of the tag. */ name?: string | null | undefined; /** * When custom mappings are configured on the resource, the result is included here. */ customMappings?: CustomMappings | null | undefined; }; /** @internal */ export declare const CollectionTag$inboundSchema: z.ZodType; /** @internal */ export type CollectionTag$Outbound = { id: string | null; name?: string | null | undefined; custom_mappings?: CustomMappings$Outbound | null | undefined; }; /** @internal */ export declare const CollectionTag$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 CollectionTag$ { /** @deprecated use `CollectionTag$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CollectionTag$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CollectionTag$Outbound` instead. */ type Outbound = CollectionTag$Outbound; } export declare function collectionTagToJSON(collectionTag: CollectionTag): string; export declare function collectionTagFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=collectiontag.d.ts.map