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 HrisDepartmentsDeleteGlobals = { /** * 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 HrisDepartmentsDeleteRequest = { /** * 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 HrisDepartmentsDeleteResponse = { httpMeta: components.HTTPMetadata; /** * Departments */ deleteDepartmentResponse?: components.DeleteDepartmentResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const HrisDepartmentsDeleteGlobals$inboundSchema: z.ZodType; /** @internal */ export type HrisDepartmentsDeleteGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const HrisDepartmentsDeleteGlobals$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 HrisDepartmentsDeleteGlobals$ { /** @deprecated use `HrisDepartmentsDeleteGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `HrisDepartmentsDeleteGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `HrisDepartmentsDeleteGlobals$Outbound` instead. */ type Outbound = HrisDepartmentsDeleteGlobals$Outbound; } export declare function hrisDepartmentsDeleteGlobalsToJSON(hrisDepartmentsDeleteGlobals: HrisDepartmentsDeleteGlobals): string; export declare function hrisDepartmentsDeleteGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const HrisDepartmentsDeleteRequest$inboundSchema: z.ZodType; /** @internal */ export type HrisDepartmentsDeleteRequest$Outbound = { id: string; serviceId?: string | undefined; raw: boolean; }; /** @internal */ export declare const HrisDepartmentsDeleteRequest$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 HrisDepartmentsDeleteRequest$ { /** @deprecated use `HrisDepartmentsDeleteRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `HrisDepartmentsDeleteRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `HrisDepartmentsDeleteRequest$Outbound` instead. */ type Outbound = HrisDepartmentsDeleteRequest$Outbound; } export declare function hrisDepartmentsDeleteRequestToJSON(hrisDepartmentsDeleteRequest: HrisDepartmentsDeleteRequest): string; export declare function hrisDepartmentsDeleteRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const HrisDepartmentsDeleteResponse$inboundSchema: z.ZodType; /** @internal */ export type HrisDepartmentsDeleteResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; DeleteDepartmentResponse?: components.DeleteDepartmentResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const HrisDepartmentsDeleteResponse$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 HrisDepartmentsDeleteResponse$ { /** @deprecated use `HrisDepartmentsDeleteResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `HrisDepartmentsDeleteResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `HrisDepartmentsDeleteResponse$Outbound` instead. */ type Outbound = HrisDepartmentsDeleteResponse$Outbound; } export declare function hrisDepartmentsDeleteResponseToJSON(hrisDepartmentsDeleteResponse: HrisDepartmentsDeleteResponse): string; export declare function hrisDepartmentsDeleteResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=hrisdepartmentsdelete.d.ts.map