import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type IpmiRMCPHeaderMessageClass = { /** * Just the class part of the byte (lower 5 bits of raw) */ class?: number | undefined; /** * True if the message is an acknowledgment to a previous message. */ isAck?: boolean | undefined; /** * The human-readable name of the message class */ name?: string | undefined; /** * The raw message class byte. */ raw?: number | undefined; }; /** @internal */ export declare const IpmiRMCPHeaderMessageClass$inboundSchema: z.ZodType; export declare function ipmiRMCPHeaderMessageClassFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ipmirmcpheadermessageclass.d.ts.map