/* Options: Date: 2025-08-02 23:43:03 Version: 8.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://monitoring.ox2.com/BazeField.Services/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: DeviceInfoGetRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/configuration/objects/{ObjectIds}/devices", Verbs="GET, POST") public static class DeviceInfoGetRequest implements IReturn { public ArrayList objectIds = null; public ArrayList getObjectIds() { return objectIds; } public DeviceInfoGetRequest setObjectIds(ArrayList value) { this.objectIds = value; return this; } private static Object responseType = DeviceInfoGetResponse.class; public Object getResponseType() { return responseType; } } public static class DeviceInfoGetResponse { public HashMap devices = null; public HashMap getDevices() { return devices; } public DeviceInfoGetResponse setDevices(HashMap value) { this.devices = value; return this; } } public static class DeviceInfoEntity { public Integer id = null; public String description = null; public String name = null; public Integer loadOrder = null; public UUID nodeId = null; public String nodeName = null; public Integer protocolId = null; public String protocolName = null; public String connectionString = null; public Integer getId() { return id; } public DeviceInfoEntity setId(Integer value) { this.id = value; return this; } public String getDescription() { return description; } public DeviceInfoEntity setDescription(String value) { this.description = value; return this; } public String getName() { return name; } public DeviceInfoEntity setName(String value) { this.name = value; return this; } public Integer getLoadOrder() { return loadOrder; } public DeviceInfoEntity setLoadOrder(Integer value) { this.loadOrder = value; return this; } public UUID getNodeId() { return nodeId; } public DeviceInfoEntity setNodeId(UUID value) { this.nodeId = value; return this; } public String getNodeName() { return nodeName; } public DeviceInfoEntity setNodeName(String value) { this.nodeName = value; return this; } public Integer getProtocolId() { return protocolId; } public DeviceInfoEntity setProtocolId(Integer value) { this.protocolId = value; return this; } public String getProtocolName() { return protocolName; } public DeviceInfoEntity setProtocolName(String value) { this.protocolName = value; return this; } public String getConnectionString() { return connectionString; } public DeviceInfoEntity setConnectionString(String value) { this.connectionString = value; return this; } } }