export interface CreateInstructionRequestBody { readonly utilityId: string; readonly storageNodeId: string; } export interface CopyInstructionRequestBody { readonly utilityId: string; readonly selectInstructionId: string; } export interface InsertInstructionRequestBody { readonly utilityId: string; readonly selectInstructionId: string; } export interface UnbindInstructionRequestBody { readonly utilityId: string; readonly selectInstructionId: string; } export interface DeleteInstructionRequestBody { readonly utilityId: string; readonly selectInstructionId: string; }