import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Employee, Employee$Outbound } from "./employee.js"; /** * Employees */ export type GetEmployeeResponse = { /** * 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: Employee; }; /** @internal */ export declare const GetEmployeeResponse$inboundSchema: z.ZodType; /** @internal */ export type GetEmployeeResponse$Outbound = { status_code: number; status: string; service: string; resource: string; operation: string; data: Employee$Outbound; }; /** @internal */ export declare const GetEmployeeResponse$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 GetEmployeeResponse$ { /** @deprecated use `GetEmployeeResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetEmployeeResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetEmployeeResponse$Outbound` instead. */ type Outbound = GetEmployeeResponse$Outbound; } export declare function getEmployeeResponseToJSON(getEmployeeResponse: GetEmployeeResponse): string; export declare function getEmployeeResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getemployeeresponse.d.ts.map