import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type IssueTrackingCollectionTicketCommentsAddGlobals = { /** * ID of the consumer which you want to get or push data from */ consumerId?: string | undefined; /** * The ID of your Unify application */ appId?: string | undefined; }; export type IssueTrackingCollectionTicketCommentsAddRequest = { /** * Include raw response. Mostly used for debugging purposes */ raw?: boolean | undefined; /** * Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. */ serviceId?: string | undefined; /** * The collection ID */ collectionId: string; /** * ID of the ticket you are acting upon. */ ticketId: string; collectionTicketComment: components.CollectionTicketCommentInput; }; export type IssueTrackingCollectionTicketCommentsAddResponse = { httpMeta: components.HTTPMetadata; /** * Create a Comment */ createCommentResponse?: components.CreateCommentResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const IssueTrackingCollectionTicketCommentsAddGlobals$inboundSchema: z.ZodType; /** @internal */ export type IssueTrackingCollectionTicketCommentsAddGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const IssueTrackingCollectionTicketCommentsAddGlobals$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 IssueTrackingCollectionTicketCommentsAddGlobals$ { /** @deprecated use `IssueTrackingCollectionTicketCommentsAddGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IssueTrackingCollectionTicketCommentsAddGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IssueTrackingCollectionTicketCommentsAddGlobals$Outbound` instead. */ type Outbound = IssueTrackingCollectionTicketCommentsAddGlobals$Outbound; } export declare function issueTrackingCollectionTicketCommentsAddGlobalsToJSON(issueTrackingCollectionTicketCommentsAddGlobals: IssueTrackingCollectionTicketCommentsAddGlobals): string; export declare function issueTrackingCollectionTicketCommentsAddGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const IssueTrackingCollectionTicketCommentsAddRequest$inboundSchema: z.ZodType; /** @internal */ export type IssueTrackingCollectionTicketCommentsAddRequest$Outbound = { raw: boolean; serviceId?: string | undefined; collection_id: string; ticket_id: string; CollectionTicketComment: components.CollectionTicketCommentInput$Outbound; }; /** @internal */ export declare const IssueTrackingCollectionTicketCommentsAddRequest$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 IssueTrackingCollectionTicketCommentsAddRequest$ { /** @deprecated use `IssueTrackingCollectionTicketCommentsAddRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IssueTrackingCollectionTicketCommentsAddRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IssueTrackingCollectionTicketCommentsAddRequest$Outbound` instead. */ type Outbound = IssueTrackingCollectionTicketCommentsAddRequest$Outbound; } export declare function issueTrackingCollectionTicketCommentsAddRequestToJSON(issueTrackingCollectionTicketCommentsAddRequest: IssueTrackingCollectionTicketCommentsAddRequest): string; export declare function issueTrackingCollectionTicketCommentsAddRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const IssueTrackingCollectionTicketCommentsAddResponse$inboundSchema: z.ZodType; /** @internal */ export type IssueTrackingCollectionTicketCommentsAddResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; CreateCommentResponse?: components.CreateCommentResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const IssueTrackingCollectionTicketCommentsAddResponse$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 IssueTrackingCollectionTicketCommentsAddResponse$ { /** @deprecated use `IssueTrackingCollectionTicketCommentsAddResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IssueTrackingCollectionTicketCommentsAddResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IssueTrackingCollectionTicketCommentsAddResponse$Outbound` instead. */ type Outbound = IssueTrackingCollectionTicketCommentsAddResponse$Outbound; } export declare function issueTrackingCollectionTicketCommentsAddResponseToJSON(issueTrackingCollectionTicketCommentsAddResponse: IssueTrackingCollectionTicketCommentsAddResponse): string; export declare function issueTrackingCollectionTicketCommentsAddResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=issuetrackingcollectionticketcommentsadd.d.ts.map