/* Options: Date: 2025-12-06 08:18:14 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: DashboardItemRequest.* //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/DashboardItem", Verbs="GET,OPTIONS") public static class DashboardItemRequest implements IReturn { public DashboardItem DashboardItem = null; public DashboardItem getDashboardItem() { return DashboardItem; } public DashboardItemRequest setDashboardItem(DashboardItem value) { this.DashboardItem = value; return this; } private static Object responseType = DashboardItemResponse.class; public Object getResponseType() { return responseType; } } public static class DashboardItemResponse { public ResponseStatus ResponseStatus = null; public ArrayList GeneralMessages = new ArrayList(); public ArrayList PersonCallouts = new ArrayList(); public ArrayList TipOfTheWeek = new ArrayList(); public ArrayList NewsAndNotes = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public DashboardItemResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getGeneralMessages() { return GeneralMessages; } public DashboardItemResponse setGeneralMessages(ArrayList value) { this.GeneralMessages = value; return this; } public ArrayList getPersonCallouts() { return PersonCallouts; } public DashboardItemResponse setPersonCallouts(ArrayList value) { this.PersonCallouts = value; return this; } public ArrayList getTipOfTheWeek() { return TipOfTheWeek; } public DashboardItemResponse setTipOfTheWeek(ArrayList value) { this.TipOfTheWeek = value; return this; } public ArrayList getNewsAndNotes() { return NewsAndNotes; } public DashboardItemResponse setNewsAndNotes(ArrayList value) { this.NewsAndNotes = value; return this; } } public static class DashboardItem { public Integer ID = null; public Date Date = null; public String Title = null; public String Message = null; public String Author = null; public String Hyperlink = null; public String ThumbnailImage = null; public Date StartDate = null; public Date EndDate = null; public String Type = null; public Integer SortKey = null; public Integer getId() { return ID; } public DashboardItem setId(Integer value) { this.ID = value; return this; } public Date getDate() { return Date; } public DashboardItem setDate(Date value) { this.Date = value; return this; } public String getTitle() { return Title; } public DashboardItem setTitle(String value) { this.Title = value; return this; } public String getMessage() { return Message; } public DashboardItem setMessage(String value) { this.Message = value; return this; } public String getAuthor() { return Author; } public DashboardItem setAuthor(String value) { this.Author = value; return this; } public String getHyperlink() { return Hyperlink; } public DashboardItem setHyperlink(String value) { this.Hyperlink = value; return this; } public String getThumbnailImage() { return ThumbnailImage; } public DashboardItem setThumbnailImage(String value) { this.ThumbnailImage = value; return this; } public Date getStartDate() { return StartDate; } public DashboardItem setStartDate(Date value) { this.StartDate = value; return this; } public Date getEndDate() { return EndDate; } public DashboardItem setEndDate(Date value) { this.EndDate = value; return this; } public String getType() { return Type; } public DashboardItem setType(String value) { this.Type = value; return this; } public Integer getSortKey() { return SortKey; } public DashboardItem setSortKey(Integer value) { this.SortKey = value; return this; } } }