namespace ZB.MOM.WW.ScadaBridge.Commons.Messages.Management; public record ListApiMethodsCommand; public record GetApiMethodCommand(int ApiMethodId); public record CreateApiMethodCommand(string Name, string Script, int TimeoutSeconds, string? ParameterDefinitions, string? ReturnDefinition); public record UpdateApiMethodCommand(int ApiMethodId, string Script, int TimeoutSeconds, string? ParameterDefinitions, string? ReturnDefinition); public record DeleteApiMethodCommand(int ApiMethodId);