import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { IpmiCommandPayloadCommandNumber } from "./ipmicommandpayloadcommandnumber.js"; import { IpmiCommandPayloadPackedNetFn } from "./ipmicommandpayloadpackednetfn.js"; export type IpmiCommandPayload = { /** * This is set to true if the values of chk1 / chk2 do not match the command data */ checksumError?: boolean | undefined; /** * The raw data. On success, this should be the value of the GetAuthenticationCapabilities resopnse */ data?: string | undefined; ipmiCommandNumber?: IpmiCommandPayloadCommandNumber | undefined; networkFunctionCode?: IpmiCommandPayloadPackedNetFn | undefined; /** * The request sequence number. */ requestorSequenceNumber?: number | undefined; }; /** @internal */ export declare const IpmiCommandPayload$inboundSchema: z.ZodType; export declare function ipmiCommandPayloadFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ipmicommandpayload.d.ts.map