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 AtsApplicationsDeleteGlobals = { /** * 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 AtsApplicationsDeleteRequest = { /** * 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; }; export type AtsApplicationsDeleteResponse = { httpMeta: components.HTTPMetadata; /** * Applications */ deleteApplicationResponse?: components.DeleteApplicationResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const AtsApplicationsDeleteGlobals$inboundSchema: z.ZodType; /** @internal */ export type AtsApplicationsDeleteGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const AtsApplicationsDeleteGlobals$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 AtsApplicationsDeleteGlobals$ { /** @deprecated use `AtsApplicationsDeleteGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AtsApplicationsDeleteGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AtsApplicationsDeleteGlobals$Outbound` instead. */ type Outbound = AtsApplicationsDeleteGlobals$Outbound; } export declare function atsApplicationsDeleteGlobalsToJSON(atsApplicationsDeleteGlobals: AtsApplicationsDeleteGlobals): string; export declare function atsApplicationsDeleteGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AtsApplicationsDeleteRequest$inboundSchema: z.ZodType; /** @internal */ export type AtsApplicationsDeleteRequest$Outbound = { id: string; serviceId?: string | undefined; raw: boolean; }; /** @internal */ export declare const AtsApplicationsDeleteRequest$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 AtsApplicationsDeleteRequest$ { /** @deprecated use `AtsApplicationsDeleteRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AtsApplicationsDeleteRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AtsApplicationsDeleteRequest$Outbound` instead. */ type Outbound = AtsApplicationsDeleteRequest$Outbound; } export declare function atsApplicationsDeleteRequestToJSON(atsApplicationsDeleteRequest: AtsApplicationsDeleteRequest): string; export declare function atsApplicationsDeleteRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AtsApplicationsDeleteResponse$inboundSchema: z.ZodType; /** @internal */ export type AtsApplicationsDeleteResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; DeleteApplicationResponse?: components.DeleteApplicationResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const AtsApplicationsDeleteResponse$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 AtsApplicationsDeleteResponse$ { /** @deprecated use `AtsApplicationsDeleteResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AtsApplicationsDeleteResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AtsApplicationsDeleteResponse$Outbound` instead. */ type Outbound = AtsApplicationsDeleteResponse$Outbound; } export declare function atsApplicationsDeleteResponseToJSON(atsApplicationsDeleteResponse: AtsApplicationsDeleteResponse): string; export declare function atsApplicationsDeleteResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=atsapplicationsdelete.d.ts.map