/* Options: Date: 2025-12-06 05:22:32 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: AgentDeviceRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/v1/AgentDevice", Verbs="POST, OPTIONS") // @Route(Path="/v1/AgentDevice/{DeviceId}", Verbs="GET, DELETE, OPTIONS") public static class AgentDeviceRequest implements IReturn { public AgentDevice AgentDevice = null; public String DeviceId = null; public AgentDevice getAgentDevice() { return AgentDevice; } public AgentDeviceRequest setAgentDevice(AgentDevice value) { this.AgentDevice = value; return this; } public String getDeviceId() { return DeviceId; } public AgentDeviceRequest setDeviceId(String value) { this.DeviceId = value; return this; } private static Object responseType = AgentDeviceResponse.class; public Object getResponseType() { return responseType; } } public static class AgentDeviceResponse { public ResponseStatus ResponseStatus = null; public AgentDevice AgentDevice = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public AgentDeviceResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public AgentDevice getAgentDevice() { return AgentDevice; } public AgentDeviceResponse setAgentDevice(AgentDevice value) { this.AgentDevice = value; return this; } } public static class AgentDevice { public Integer AgentDeviceId = null; public UUID UserId = null; public String DeviceId = null; public String Model = null; public String Platform = null; public String UUID = null; public Integer getAgentDeviceId() { return AgentDeviceId; } public AgentDevice setAgentDeviceId(Integer value) { this.AgentDeviceId = value; return this; } public UUID getUserId() { return UserId; } public AgentDevice setUserId(UUID value) { this.UserId = value; return this; } public String getDeviceId() { return DeviceId; } public AgentDevice setDeviceId(String value) { this.DeviceId = value; return this; } public String getModel() { return Model; } public AgentDevice setModel(String value) { this.Model = value; return this; } public String getPlatform() { return Platform; } public AgentDevice setPlatform(String value) { this.Platform = value; return this; } public String getUuid() { return UUID; } public AgentDevice setUuid(String value) { this.UUID = value; return this; } } }