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"; import { PassThroughBody, PassThroughBody$Outbound } from "./passthroughbody.js"; export type CollectionTicketComment = { /** * A unique identifier for an object. */ id?: string | undefined; /** * Body of the comment */ body?: string | null | undefined; /** * When custom mappings are configured on the resource, the result is included here. */ customMappings?: CustomMappings | 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; }; /** @internal */ export declare const CollectionTicketComment$inboundSchema: z.ZodType; /** @internal */ export type CollectionTicketComment$Outbound = { id?: string | undefined; body?: string | null | undefined; custom_mappings?: CustomMappings$Outbound | 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 CollectionTicketComment$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 CollectionTicketComment$ { /** @deprecated use `CollectionTicketComment$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CollectionTicketComment$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CollectionTicketComment$Outbound` instead. */ type Outbound = CollectionTicketComment$Outbound; } export declare function collectionTicketCommentToJSON(collectionTicketComment: CollectionTicketComment): string; export declare function collectionTicketCommentFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=collectionticketcomment.d.ts.map