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 IssueTrackingCollectionTicketCommentsUpdateGlobals = { /** * 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 IssueTrackingCollectionTicketCommentsUpdateRequest = { /** * ID of the record you are acting upon. */ id: string; /** * 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; /** * Include raw response. Mostly used for debugging purposes */ raw?: boolean | undefined; /** * The collection ID */ collectionId: string; /** * ID of the ticket you are acting upon. */ ticketId: string; collectionTicketComment: components.CollectionTicketCommentInput; }; export type IssueTrackingCollectionTicketCommentsUpdateResponse = { httpMeta: components.HTTPMetadata; /** * Update a Comment */ updateCommentResponse?: components.UpdateCommentResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const IssueTrackingCollectionTicketCommentsUpdateGlobals$inboundSchema: z.ZodType; /** @internal */ export type IssueTrackingCollectionTicketCommentsUpdateGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const IssueTrackingCollectionTicketCommentsUpdateGlobals$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 IssueTrackingCollectionTicketCommentsUpdateGlobals$ { /** @deprecated use `IssueTrackingCollectionTicketCommentsUpdateGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IssueTrackingCollectionTicketCommentsUpdateGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IssueTrackingCollectionTicketCommentsUpdateGlobals$Outbound` instead. */ type Outbound = IssueTrackingCollectionTicketCommentsUpdateGlobals$Outbound; } export declare function issueTrackingCollectionTicketCommentsUpdateGlobalsToJSON(issueTrackingCollectionTicketCommentsUpdateGlobals: IssueTrackingCollectionTicketCommentsUpdateGlobals): string; export declare function issueTrackingCollectionTicketCommentsUpdateGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const IssueTrackingCollectionTicketCommentsUpdateRequest$inboundSchema: z.ZodType; /** @internal */ export type IssueTrackingCollectionTicketCommentsUpdateRequest$Outbound = { id: string; serviceId?: string | undefined; raw: boolean; collection_id: string; ticket_id: string; CollectionTicketComment: components.CollectionTicketCommentInput$Outbound; }; /** @internal */ export declare const IssueTrackingCollectionTicketCommentsUpdateRequest$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 IssueTrackingCollectionTicketCommentsUpdateRequest$ { /** @deprecated use `IssueTrackingCollectionTicketCommentsUpdateRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IssueTrackingCollectionTicketCommentsUpdateRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IssueTrackingCollectionTicketCommentsUpdateRequest$Outbound` instead. */ type Outbound = IssueTrackingCollectionTicketCommentsUpdateRequest$Outbound; } export declare function issueTrackingCollectionTicketCommentsUpdateRequestToJSON(issueTrackingCollectionTicketCommentsUpdateRequest: IssueTrackingCollectionTicketCommentsUpdateRequest): string; export declare function issueTrackingCollectionTicketCommentsUpdateRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const IssueTrackingCollectionTicketCommentsUpdateResponse$inboundSchema: z.ZodType; /** @internal */ export type IssueTrackingCollectionTicketCommentsUpdateResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; UpdateCommentResponse?: components.UpdateCommentResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const IssueTrackingCollectionTicketCommentsUpdateResponse$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 IssueTrackingCollectionTicketCommentsUpdateResponse$ { /** @deprecated use `IssueTrackingCollectionTicketCommentsUpdateResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IssueTrackingCollectionTicketCommentsUpdateResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IssueTrackingCollectionTicketCommentsUpdateResponse$Outbound` instead. */ type Outbound = IssueTrackingCollectionTicketCommentsUpdateResponse$Outbound; } export declare function issueTrackingCollectionTicketCommentsUpdateResponseToJSON(issueTrackingCollectionTicketCommentsUpdateResponse: IssueTrackingCollectionTicketCommentsUpdateResponse): string; export declare function issueTrackingCollectionTicketCommentsUpdateResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=issuetrackingcollectionticketcommentsupdate.d.ts.map