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 AtsApplicantsDeleteGlobals = { /** * 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 AtsApplicantsDeleteRequest = { /** * 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 AtsApplicantsDeleteResponse = { httpMeta: components.HTTPMetadata; /** * Applicants */ deleteApplicantResponse?: components.DeleteApplicantResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const AtsApplicantsDeleteGlobals$inboundSchema: z.ZodType; /** @internal */ export type AtsApplicantsDeleteGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const AtsApplicantsDeleteGlobals$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 AtsApplicantsDeleteGlobals$ { /** @deprecated use `AtsApplicantsDeleteGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AtsApplicantsDeleteGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AtsApplicantsDeleteGlobals$Outbound` instead. */ type Outbound = AtsApplicantsDeleteGlobals$Outbound; } export declare function atsApplicantsDeleteGlobalsToJSON(atsApplicantsDeleteGlobals: AtsApplicantsDeleteGlobals): string; export declare function atsApplicantsDeleteGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AtsApplicantsDeleteRequest$inboundSchema: z.ZodType; /** @internal */ export type AtsApplicantsDeleteRequest$Outbound = { id: string; serviceId?: string | undefined; raw: boolean; }; /** @internal */ export declare const AtsApplicantsDeleteRequest$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 AtsApplicantsDeleteRequest$ { /** @deprecated use `AtsApplicantsDeleteRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AtsApplicantsDeleteRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AtsApplicantsDeleteRequest$Outbound` instead. */ type Outbound = AtsApplicantsDeleteRequest$Outbound; } export declare function atsApplicantsDeleteRequestToJSON(atsApplicantsDeleteRequest: AtsApplicantsDeleteRequest): string; export declare function atsApplicantsDeleteRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AtsApplicantsDeleteResponse$inboundSchema: z.ZodType; /** @internal */ export type AtsApplicantsDeleteResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; DeleteApplicantResponse?: components.DeleteApplicantResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const AtsApplicantsDeleteResponse$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 AtsApplicantsDeleteResponse$ { /** @deprecated use `AtsApplicantsDeleteResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AtsApplicantsDeleteResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AtsApplicantsDeleteResponse$Outbound` instead. */ type Outbound = AtsApplicantsDeleteResponse$Outbound; } export declare function atsApplicantsDeleteResponseToJSON(atsApplicantsDeleteResponse: AtsApplicantsDeleteResponse): string; export declare function atsApplicantsDeleteResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=atsapplicantsdelete.d.ts.map