/* Options: Date: 2026-09-06 12:03:35 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: CoverageSelfDayNotePostRequest.* //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/coverage/self/daynotes", Verbs="POST,OPTIONS") public static class CoverageSelfDayNotePostRequest implements IReturn { public String Date = null; public String Body = null; public String getDate() { return Date; } public CoverageSelfDayNotePostRequest setDate(String value) { this.Date = value; return this; } public String getBody() { return Body; } public CoverageSelfDayNotePostRequest setBody(String value) { this.Body = value; return this; } private static Object responseType = CoverageSelfDayNotesResponse.class; public Object getResponseType() { return responseType; } } public static class CoverageSelfDayNotesResponse { public ResponseStatus ResponseStatus = null; public String TodayLabel = null; public ArrayList Today = new ArrayList(); public String PreviousLabel = null; public ArrayList Previous = new ArrayList(); public Boolean CanWrite = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public CoverageSelfDayNotesResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public String getTodayLabel() { return TodayLabel; } public CoverageSelfDayNotesResponse setTodayLabel(String value) { this.TodayLabel = value; return this; } public ArrayList getToday() { return Today; } public CoverageSelfDayNotesResponse setToday(ArrayList value) { this.Today = value; return this; } public String getPreviousLabel() { return PreviousLabel; } public CoverageSelfDayNotesResponse setPreviousLabel(String value) { this.PreviousLabel = value; return this; } public ArrayList getPrevious() { return Previous; } public CoverageSelfDayNotesResponse setPrevious(ArrayList value) { this.Previous = value; return this; } public Boolean isCanWrite() { return CanWrite; } public CoverageSelfDayNotesResponse setCanWrite(Boolean value) { this.CanWrite = value; return this; } } public static class CoverageSelfDayNote { public Integer RosterDayNoteID = null; public String AuthorName = null; public String Body = null; public String TimeText = null; public Boolean Mine = null; public Integer getRosterDayNoteID() { return RosterDayNoteID; } public CoverageSelfDayNote setRosterDayNoteID(Integer value) { this.RosterDayNoteID = value; return this; } public String getAuthorName() { return AuthorName; } public CoverageSelfDayNote setAuthorName(String value) { this.AuthorName = value; return this; } public String getBody() { return Body; } public CoverageSelfDayNote setBody(String value) { this.Body = value; return this; } public String getTimeText() { return TimeText; } public CoverageSelfDayNote setTimeText(String value) { this.TimeText = value; return this; } public Boolean isMine() { return Mine; } public CoverageSelfDayNote setMine(Boolean value) { this.Mine = value; return this; } } }