import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type IpmiCommandPayloadPackedNetFnNetFn = { /** * True if the least-significant bit is zero */ isRequest?: boolean | undefined; /** * True if the least-significant bit is one */ isResponse?: boolean | undefined; /** * The human-readable name of the NetFn */ name?: string | undefined; /** * The raw value of the NetFn (6 bits, least significant indicates request/response) */ raw?: number | undefined; /** * The normalized value of the NetFn (i.e. raw & 0xfe, so it is always even) */ value?: number | undefined; }; /** @internal */ export declare const IpmiCommandPayloadPackedNetFnNetFn$inboundSchema: z.ZodType; export declare function ipmiCommandPayloadPackedNetFnNetFnFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ipmicommandpayloadpackednetfnnetfn.d.ts.map