/* Options: Date: 2024-05-12 04:50:56 Version: 6.111 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test.servicestack.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: StoreLogs.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { public static class StoreLogs implements IReturn { public ArrayList loggers = null; public ArrayList getLoggers() { return loggers; } public StoreLogs setLoggers(ArrayList value) { this.loggers = value; return this; } private static Object responseType = StoreLogsResponse.class; public Object getResponseType() { return responseType; } } public static class StoreLogsResponse { public ArrayList existingLogs = null; public ResponseStatus responseStatus = null; public ArrayList getExistingLogs() { return existingLogs; } public StoreLogsResponse setExistingLogs(ArrayList value) { this.existingLogs = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public StoreLogsResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } public static class Logger { public Long id = null; public ArrayList devices = null; public Long getId() { return id; } public Logger setId(Long value) { this.id = value; return this; } public ArrayList getDevices() { return devices; } public Logger setDevices(ArrayList value) { this.devices = value; return this; } } public static class Device { public Long id = null; public String type = null; public Long timeStamp = null; public ArrayList channels = null; public Long getId() { return id; } public Device setId(Long value) { this.id = value; return this; } public String getType() { return type; } public Device setType(String value) { this.type = value; return this; } public Long getTimeStamp() { return timeStamp; } public Device setTimeStamp(Long value) { this.timeStamp = value; return this; } public ArrayList getChannels() { return channels; } public Device setChannels(ArrayList value) { this.channels = value; return this; } } public static class Channel { public String name = null; public String value = null; public String getName() { return name; } public Channel setName(String value) { this.name = value; return this; } public String getValue() { return value; } public Channel setValue(String value) { this.value = value; return this; } } }