/* Options: Date: 2026-08-12 19:41:20 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: RecordSeriesListRequest.* //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/records/series", Verbs="GET,OPTIONS") public static class RecordSeriesListRequest implements IReturn { public Boolean IncludeStats = null; public Boolean isIncludeStats() { return IncludeStats; } public RecordSeriesListRequest setIncludeStats(Boolean value) { this.IncludeStats = value; return this; } private static Object responseType = RecordSeriesListResponse.class; public Object getResponseType() { return responseType; } } public static class RecordSeriesListResponse { public ResponseStatus ResponseStatus = null; public ArrayList Series = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public RecordSeriesListResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getSeries() { return Series; } public RecordSeriesListResponse setSeries(ArrayList value) { this.Series = value; return this; } } public static class RecordSeriesDto { public Integer SeriesId = null; public String SourceKey = null; public String Code = null; public String Name = null; public Integer Years = null; public Boolean Permanent = null; public String RetClass = null; public String TriggerEvent = null; public String Method = null; public Boolean ImageAndDestroy = null; public String Citation = null; public String FieldsJson = null; public Boolean Retired = null; public RecordSeriesStats Stats = null; public ArrayList History = new ArrayList(); public Integer getSeriesId() { return SeriesId; } public RecordSeriesDto setSeriesId(Integer value) { this.SeriesId = value; return this; } public String getSourceKey() { return SourceKey; } public RecordSeriesDto setSourceKey(String value) { this.SourceKey = value; return this; } public String getCode() { return Code; } public RecordSeriesDto setCode(String value) { this.Code = value; return this; } public String getName() { return Name; } public RecordSeriesDto setName(String value) { this.Name = value; return this; } public Integer getYears() { return Years; } public RecordSeriesDto setYears(Integer value) { this.Years = value; return this; } public Boolean isPermanent() { return Permanent; } public RecordSeriesDto setPermanent(Boolean value) { this.Permanent = value; return this; } public String getRetClass() { return RetClass; } public RecordSeriesDto setRetClass(String value) { this.RetClass = value; return this; } public String getTriggerEvent() { return TriggerEvent; } public RecordSeriesDto setTriggerEvent(String value) { this.TriggerEvent = value; return this; } public String getMethod() { return Method; } public RecordSeriesDto setMethod(String value) { this.Method = value; return this; } public Boolean isImageAndDestroy() { return ImageAndDestroy; } public RecordSeriesDto setImageAndDestroy(Boolean value) { this.ImageAndDestroy = value; return this; } public String getCitation() { return Citation; } public RecordSeriesDto setCitation(String value) { this.Citation = value; return this; } public String getFieldsJson() { return FieldsJson; } public RecordSeriesDto setFieldsJson(String value) { this.FieldsJson = value; return this; } public Boolean isRetired() { return Retired; } public RecordSeriesDto setRetired(Boolean value) { this.Retired = value; return this; } public RecordSeriesStats getStats() { return Stats; } public RecordSeriesDto setStats(RecordSeriesStats value) { this.Stats = value; return this; } public ArrayList getHistory() { return History; } public RecordSeriesDto setHistory(ArrayList value) { this.History = value; return this; } } public static class ScheduleLogDto { public Integer LogId = null; public Integer SeriesId = null; public String Verb = null; public String Actor = null; public String What = null; public String WhenLabel = null; public Integer getLogId() { return LogId; } public ScheduleLogDto setLogId(Integer value) { this.LogId = value; return this; } public Integer getSeriesId() { return SeriesId; } public ScheduleLogDto setSeriesId(Integer value) { this.SeriesId = value; return this; } public String getVerb() { return Verb; } public ScheduleLogDto setVerb(String value) { this.Verb = value; return this; } public String getActor() { return Actor; } public ScheduleLogDto setActor(String value) { this.Actor = value; return this; } public String getWhat() { return What; } public ScheduleLogDto setWhat(String value) { this.What = value; return this; } public String getWhenLabel() { return WhenLabel; } public ScheduleLogDto setWhenLabel(String value) { this.WhenLabel = value; return this; } } public static class RecordSeriesStats { public Integer Total = null; public Integer Running = null; public Integer Eligible = null; public Integer Held = null; public Integer Unstarted = null; public Integer getTotal() { return Total; } public RecordSeriesStats setTotal(Integer value) { this.Total = value; return this; } public Integer getRunning() { return Running; } public RecordSeriesStats setRunning(Integer value) { this.Running = value; return this; } public Integer getEligible() { return Eligible; } public RecordSeriesStats setEligible(Integer value) { this.Eligible = value; return this; } public Integer getHeld() { return Held; } public RecordSeriesStats setHeld(Integer value) { this.Held = value; return this; } public Integer getUnstarted() { return Unstarted; } public RecordSeriesStats setUnstarted(Integer value) { this.Unstarted = value; return this; } } }