/* Options: Date: 2026-06-22 20:45:02 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: PmAttentionRequest.* //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/pm/attention", Verbs="GET,OPTIONS") public static class PmAttentionRequest implements IReturn { private static Object responseType = PmAttentionResponse.class; public Object getResponseType() { return responseType; } } public static class PmAttentionResponse { public ArrayList Items = new ArrayList(); public Integer HighCount = null; public Integer MedCount = null; public ResponseStatus ResponseStatus = null; public ArrayList getItems() { return Items; } public PmAttentionResponse setItems(ArrayList value) { this.Items = value; return this; } public Integer getHighCount() { return HighCount; } public PmAttentionResponse setHighCount(Integer value) { this.HighCount = value; return this; } public Integer getMedCount() { return MedCount; } public PmAttentionResponse setMedCount(Integer value) { this.MedCount = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public PmAttentionResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static class PmAttentionItem { public String ProjectUID = null; public String ProjectName = null; public String Branch = null; public String Category = null; public Integer Severity = null; public String Title = null; public String Detail = null; public String getProjectUID() { return ProjectUID; } public PmAttentionItem setProjectUID(String value) { this.ProjectUID = value; return this; } public String getProjectName() { return ProjectName; } public PmAttentionItem setProjectName(String value) { this.ProjectName = value; return this; } public String getBranch() { return Branch; } public PmAttentionItem setBranch(String value) { this.Branch = value; return this; } public String getCategory() { return Category; } public PmAttentionItem setCategory(String value) { this.Category = value; return this; } public Integer getSeverity() { return Severity; } public PmAttentionItem setSeverity(Integer value) { this.Severity = value; return this; } public String getTitle() { return Title; } public PmAttentionItem setTitle(String value) { this.Title = value; return this; } public String getDetail() { return Detail; } public PmAttentionItem setDetail(String value) { this.Detail = value; return this; } } }