/* Options: Date: 2026-06-22 20:28:48 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: WorkerDeviceRequest.* //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/worker/device", Verbs="POST,OPTIONS") // @Route(Path="/v1/worker/device/{DeviceId}", Verbs="DELETE,OPTIONS") public static class WorkerDeviceRequest implements IReturn { public String DeviceId = null; public String Platform = null; public String Model = null; public String Lang = null; public String getDeviceId() { return DeviceId; } public WorkerDeviceRequest setDeviceId(String value) { this.DeviceId = value; return this; } public String getPlatform() { return Platform; } public WorkerDeviceRequest setPlatform(String value) { this.Platform = value; return this; } public String getModel() { return Model; } public WorkerDeviceRequest setModel(String value) { this.Model = value; return this; } public String getLang() { return Lang; } public WorkerDeviceRequest setLang(String value) { this.Lang = value; return this; } private static Object responseType = WorkerDeviceResponse.class; public Object getResponseType() { return responseType; } } public static class WorkerDeviceResponse { public ResponseStatus ResponseStatus = null; public Boolean Success = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public WorkerDeviceResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public Boolean isSuccess() { return Success; } public WorkerDeviceResponse setSuccess(Boolean value) { this.Success = value; return this; } } }