import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PassThroughBody, PassThroughBody$Outbound } from "./passthroughbody.js"; export type CollectionTicketCommentInput = { /** * Body of the comment */ body?: 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 CollectionTicketCommentInput$inboundSchema: z.ZodType; /** @internal */ export type CollectionTicketCommentInput$Outbound = { body?: string | null | undefined; pass_through?: Array | undefined; }; /** @internal */ export declare const CollectionTicketCommentInput$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 CollectionTicketCommentInput$ { /** @deprecated use `CollectionTicketCommentInput$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CollectionTicketCommentInput$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CollectionTicketCommentInput$Outbound` instead. */ type Outbound = CollectionTicketCommentInput$Outbound; } export declare function collectionTicketCommentInputToJSON(collectionTicketCommentInput: CollectionTicketCommentInput): string; export declare function collectionTicketCommentInputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=collectionticketcommentinput.d.ts.map