import * as z from "zod/v4"; import * as models from "../index.js"; export type DispatchCommandGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type DispatchCommandRequest = { /** * Unique identifier for the command. */ id: string; dispatchCommandRequest?: models.DispatchCommandRequest | undefined; }; /** @internal */ export type DispatchCommandRequest$Outbound = { id: string; DispatchCommandRequest?: models.DispatchCommandRequest$Outbound | undefined; }; /** @internal */ export declare const DispatchCommandRequest$outboundSchema: z.ZodType; export declare function dispatchCommandRequestToJSON(dispatchCommandRequest: DispatchCommandRequest): string; //# sourceMappingURL=dispatchcommand.d.ts.map