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 HrisTimeOffRequestsDeleteGlobals = { /** * 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 HrisTimeOffRequestsDeleteRequest = { /** * 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; /** * ID of the employee you are acting upon. */ employeeId: string; }; export type HrisTimeOffRequestsDeleteResponse = { httpMeta: components.HTTPMetadata; /** * TimeOffRequests */ deleteTimeOffRequestResponse?: components.DeleteTimeOffRequestResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const HrisTimeOffRequestsDeleteGlobals$inboundSchema: z.ZodType; /** @internal */ export type HrisTimeOffRequestsDeleteGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const HrisTimeOffRequestsDeleteGlobals$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 HrisTimeOffRequestsDeleteGlobals$ { /** @deprecated use `HrisTimeOffRequestsDeleteGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `HrisTimeOffRequestsDeleteGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `HrisTimeOffRequestsDeleteGlobals$Outbound` instead. */ type Outbound = HrisTimeOffRequestsDeleteGlobals$Outbound; } export declare function hrisTimeOffRequestsDeleteGlobalsToJSON(hrisTimeOffRequestsDeleteGlobals: HrisTimeOffRequestsDeleteGlobals): string; export declare function hrisTimeOffRequestsDeleteGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const HrisTimeOffRequestsDeleteRequest$inboundSchema: z.ZodType; /** @internal */ export type HrisTimeOffRequestsDeleteRequest$Outbound = { id: string; serviceId?: string | undefined; raw: boolean; employee_id: string; }; /** @internal */ export declare const HrisTimeOffRequestsDeleteRequest$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 HrisTimeOffRequestsDeleteRequest$ { /** @deprecated use `HrisTimeOffRequestsDeleteRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `HrisTimeOffRequestsDeleteRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `HrisTimeOffRequestsDeleteRequest$Outbound` instead. */ type Outbound = HrisTimeOffRequestsDeleteRequest$Outbound; } export declare function hrisTimeOffRequestsDeleteRequestToJSON(hrisTimeOffRequestsDeleteRequest: HrisTimeOffRequestsDeleteRequest): string; export declare function hrisTimeOffRequestsDeleteRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const HrisTimeOffRequestsDeleteResponse$inboundSchema: z.ZodType; /** @internal */ export type HrisTimeOffRequestsDeleteResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; DeleteTimeOffRequestResponse?: components.DeleteTimeOffRequestResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const HrisTimeOffRequestsDeleteResponse$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 HrisTimeOffRequestsDeleteResponse$ { /** @deprecated use `HrisTimeOffRequestsDeleteResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `HrisTimeOffRequestsDeleteResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `HrisTimeOffRequestsDeleteResponse$Outbound` instead. */ type Outbound = HrisTimeOffRequestsDeleteResponse$Outbound; } export declare function hrisTimeOffRequestsDeleteResponseToJSON(hrisTimeOffRequestsDeleteResponse: HrisTimeOffRequestsDeleteResponse): string; export declare function hrisTimeOffRequestsDeleteResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=hristimeoffrequestsdelete.d.ts.map