import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PassThroughBody, PassThroughBody$Outbound } from "./passthroughbody.js"; export type DepartmentInput = { /** * Department name */ name?: string | null | undefined; code?: string | null | undefined; description?: string | null | undefined; /** * The pass_through property allows passing service-specific, custom data or structured modifications in request body when creating or updating resources. */ passThrough?: Array | undefined; }; /** @internal */ export declare const DepartmentInput$inboundSchema: z.ZodType; /** @internal */ export type DepartmentInput$Outbound = { name?: string | null | undefined; code?: string | null | undefined; description?: string | null | undefined; pass_through?: Array | undefined; }; /** @internal */ export declare const DepartmentInput$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 DepartmentInput$ { /** @deprecated use `DepartmentInput$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `DepartmentInput$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `DepartmentInput$Outbound` instead. */ type Outbound = DepartmentInput$Outbound; } export declare function departmentInputToJSON(departmentInput: DepartmentInput): string; export declare function departmentInputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=departmentinput.d.ts.map