import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { TimeOffRequest, TimeOffRequest$Outbound } from "./timeoffrequest.js"; /** * TimeOffRequests */ export type GetTimeOffRequestResponse = { /** * HTTP Response Status Code */ statusCode: number; /** * HTTP Response Status */ status: string; /** * Apideck ID of service provider */ service: string; /** * Unified API resource name */ resource: string; /** * Operation performed */ operation: string; data: TimeOffRequest; }; /** @internal */ export declare const GetTimeOffRequestResponse$inboundSchema: z.ZodType; /** @internal */ export type GetTimeOffRequestResponse$Outbound = { status_code: number; status: string; service: string; resource: string; operation: string; data: TimeOffRequest$Outbound; }; /** @internal */ export declare const GetTimeOffRequestResponse$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 GetTimeOffRequestResponse$ { /** @deprecated use `GetTimeOffRequestResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetTimeOffRequestResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetTimeOffRequestResponse$Outbound` instead. */ type Outbound = GetTimeOffRequestResponse$Outbound; } export declare function getTimeOffRequestResponseToJSON(getTimeOffRequestResponse: GetTimeOffRequestResponse): string; export declare function getTimeOffRequestResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=gettimeoffrequestresponse.d.ts.map