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 IssueTrackingCollectionTicketsDeleteGlobals = { /** * 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 IssueTrackingCollectionTicketsDeleteRequest = { /** * ID of the ticket you are acting upon. */ ticketId: 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; }; export type IssueTrackingCollectionTicketsDeleteResponse = { httpMeta: components.HTTPMetadata; /** * Delete a Ticket */ deleteTicketResponse?: components.DeleteTicketResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const IssueTrackingCollectionTicketsDeleteGlobals$inboundSchema: z.ZodType; /** @internal */ export type IssueTrackingCollectionTicketsDeleteGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const IssueTrackingCollectionTicketsDeleteGlobals$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 IssueTrackingCollectionTicketsDeleteGlobals$ { /** @deprecated use `IssueTrackingCollectionTicketsDeleteGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IssueTrackingCollectionTicketsDeleteGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IssueTrackingCollectionTicketsDeleteGlobals$Outbound` instead. */ type Outbound = IssueTrackingCollectionTicketsDeleteGlobals$Outbound; } export declare function issueTrackingCollectionTicketsDeleteGlobalsToJSON(issueTrackingCollectionTicketsDeleteGlobals: IssueTrackingCollectionTicketsDeleteGlobals): string; export declare function issueTrackingCollectionTicketsDeleteGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const IssueTrackingCollectionTicketsDeleteRequest$inboundSchema: z.ZodType; /** @internal */ export type IssueTrackingCollectionTicketsDeleteRequest$Outbound = { ticket_id: string; serviceId?: string | undefined; raw: boolean; collection_id: string; }; /** @internal */ export declare const IssueTrackingCollectionTicketsDeleteRequest$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 IssueTrackingCollectionTicketsDeleteRequest$ { /** @deprecated use `IssueTrackingCollectionTicketsDeleteRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IssueTrackingCollectionTicketsDeleteRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IssueTrackingCollectionTicketsDeleteRequest$Outbound` instead. */ type Outbound = IssueTrackingCollectionTicketsDeleteRequest$Outbound; } export declare function issueTrackingCollectionTicketsDeleteRequestToJSON(issueTrackingCollectionTicketsDeleteRequest: IssueTrackingCollectionTicketsDeleteRequest): string; export declare function issueTrackingCollectionTicketsDeleteRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const IssueTrackingCollectionTicketsDeleteResponse$inboundSchema: z.ZodType; /** @internal */ export type IssueTrackingCollectionTicketsDeleteResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; DeleteTicketResponse?: components.DeleteTicketResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const IssueTrackingCollectionTicketsDeleteResponse$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 IssueTrackingCollectionTicketsDeleteResponse$ { /** @deprecated use `IssueTrackingCollectionTicketsDeleteResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IssueTrackingCollectionTicketsDeleteResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IssueTrackingCollectionTicketsDeleteResponse$Outbound` instead. */ type Outbound = IssueTrackingCollectionTicketsDeleteResponse$Outbound; } export declare function issueTrackingCollectionTicketsDeleteResponseToJSON(issueTrackingCollectionTicketsDeleteResponse: IssueTrackingCollectionTicketsDeleteResponse): string; export declare function issueTrackingCollectionTicketsDeleteResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=issuetrackingcollectionticketsdelete.d.ts.map