import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { IpmiSessionHeaderAuthType } from "./ipmisessionheaderauthtype.js"; export type IpmiSessionHeader = { /** * The 16-byte authentication code; not present if auth_type is None. */ authCode?: string | undefined; authType?: IpmiSessionHeaderAuthType | undefined; /** * The ID of this sessiod. */ sessionId?: number | undefined; /** * The session sequence number of this packet in the session */ sessionSequenceNumber?: number | undefined; }; /** @internal */ export declare const IpmiSessionHeader$inboundSchema: z.ZodType; export declare function ipmiSessionHeaderFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ipmisessionheader.d.ts.map