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 IssueTrackingCollectionTicketCommentsDeleteGlobals = { /** * 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 IssueTrackingCollectionTicketCommentsDeleteRequest = { /** * 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; }; export type IssueTrackingCollectionTicketCommentsDeleteResponse = { httpMeta: components.HTTPMetadata; /** * Delete a Comment */ deleteCommentResponse?: components.DeleteCommentResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const IssueTrackingCollectionTicketCommentsDeleteGlobals$inboundSchema: z.ZodType; /** @internal */ export type IssueTrackingCollectionTicketCommentsDeleteGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const IssueTrackingCollectionTicketCommentsDeleteGlobals$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 IssueTrackingCollectionTicketCommentsDeleteGlobals$ { /** @deprecated use `IssueTrackingCollectionTicketCommentsDeleteGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IssueTrackingCollectionTicketCommentsDeleteGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IssueTrackingCollectionTicketCommentsDeleteGlobals$Outbound` instead. */ type Outbound = IssueTrackingCollectionTicketCommentsDeleteGlobals$Outbound; } export declare function issueTrackingCollectionTicketCommentsDeleteGlobalsToJSON(issueTrackingCollectionTicketCommentsDeleteGlobals: IssueTrackingCollectionTicketCommentsDeleteGlobals): string; export declare function issueTrackingCollectionTicketCommentsDeleteGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const IssueTrackingCollectionTicketCommentsDeleteRequest$inboundSchema: z.ZodType; /** @internal */ export type IssueTrackingCollectionTicketCommentsDeleteRequest$Outbound = { id: string; serviceId?: string | undefined; raw: boolean; collection_id: string; ticket_id: string; }; /** @internal */ export declare const IssueTrackingCollectionTicketCommentsDeleteRequest$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 IssueTrackingCollectionTicketCommentsDeleteRequest$ { /** @deprecated use `IssueTrackingCollectionTicketCommentsDeleteRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IssueTrackingCollectionTicketCommentsDeleteRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IssueTrackingCollectionTicketCommentsDeleteRequest$Outbound` instead. */ type Outbound = IssueTrackingCollectionTicketCommentsDeleteRequest$Outbound; } export declare function issueTrackingCollectionTicketCommentsDeleteRequestToJSON(issueTrackingCollectionTicketCommentsDeleteRequest: IssueTrackingCollectionTicketCommentsDeleteRequest): string; export declare function issueTrackingCollectionTicketCommentsDeleteRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const IssueTrackingCollectionTicketCommentsDeleteResponse$inboundSchema: z.ZodType; /** @internal */ export type IssueTrackingCollectionTicketCommentsDeleteResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; DeleteCommentResponse?: components.DeleteCommentResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const IssueTrackingCollectionTicketCommentsDeleteResponse$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 IssueTrackingCollectionTicketCommentsDeleteResponse$ { /** @deprecated use `IssueTrackingCollectionTicketCommentsDeleteResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IssueTrackingCollectionTicketCommentsDeleteResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IssueTrackingCollectionTicketCommentsDeleteResponse$Outbound` instead. */ type Outbound = IssueTrackingCollectionTicketCommentsDeleteResponse$Outbound; } export declare function issueTrackingCollectionTicketCommentsDeleteResponseToJSON(issueTrackingCollectionTicketCommentsDeleteResponse: IssueTrackingCollectionTicketCommentsDeleteResponse): string; export declare function issueTrackingCollectionTicketCommentsDeleteResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=issuetrackingcollectionticketcommentsdelete.d.ts.map