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 AtsApplicantsUpdateGlobals = { /** * 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 AtsApplicantsUpdateRequest = { /** * 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; applicant: components.ApplicantInput; }; export type AtsApplicantsUpdateResponse = { httpMeta: components.HTTPMetadata; /** * Applicants */ updateApplicantResponse?: components.UpdateApplicantResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const AtsApplicantsUpdateGlobals$inboundSchema: z.ZodType; /** @internal */ export type AtsApplicantsUpdateGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const AtsApplicantsUpdateGlobals$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 AtsApplicantsUpdateGlobals$ { /** @deprecated use `AtsApplicantsUpdateGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AtsApplicantsUpdateGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AtsApplicantsUpdateGlobals$Outbound` instead. */ type Outbound = AtsApplicantsUpdateGlobals$Outbound; } export declare function atsApplicantsUpdateGlobalsToJSON(atsApplicantsUpdateGlobals: AtsApplicantsUpdateGlobals): string; export declare function atsApplicantsUpdateGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AtsApplicantsUpdateRequest$inboundSchema: z.ZodType; /** @internal */ export type AtsApplicantsUpdateRequest$Outbound = { id: string; serviceId?: string | undefined; raw: boolean; Applicant: components.ApplicantInput$Outbound; }; /** @internal */ export declare const AtsApplicantsUpdateRequest$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 AtsApplicantsUpdateRequest$ { /** @deprecated use `AtsApplicantsUpdateRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AtsApplicantsUpdateRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AtsApplicantsUpdateRequest$Outbound` instead. */ type Outbound = AtsApplicantsUpdateRequest$Outbound; } export declare function atsApplicantsUpdateRequestToJSON(atsApplicantsUpdateRequest: AtsApplicantsUpdateRequest): string; export declare function atsApplicantsUpdateRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AtsApplicantsUpdateResponse$inboundSchema: z.ZodType; /** @internal */ export type AtsApplicantsUpdateResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; UpdateApplicantResponse?: components.UpdateApplicantResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const AtsApplicantsUpdateResponse$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 AtsApplicantsUpdateResponse$ { /** @deprecated use `AtsApplicantsUpdateResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AtsApplicantsUpdateResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AtsApplicantsUpdateResponse$Outbound` instead. */ type Outbound = AtsApplicantsUpdateResponse$Outbound; } export declare function atsApplicantsUpdateResponseToJSON(atsApplicantsUpdateResponse: AtsApplicantsUpdateResponse): string; export declare function atsApplicantsUpdateResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=atsapplicantsupdate.d.ts.map