/* Options: Date: 2026-08-01 04:17:11 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: CoverageBoardSeatsRequest.* //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/board/seats", Verbs="GET,OPTIONS") public static class CoverageBoardSeatsRequest implements IReturn { private static Object responseType = CoverageBoardSeatsResponse.class; public Object getResponseType() { return responseType; } } public static class CoverageBoardSeatsResponse { public ResponseStatus ResponseStatus = null; public ArrayList Seats = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public CoverageBoardSeatsResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getSeats() { return Seats; } public CoverageBoardSeatsResponse setSeats(ArrayList value) { this.Seats = value; return this; } } public static class CoverageBoardSeat { public Integer WorkerScheduleItemID = null; public String Label = null; public String Who = null; public Integer ContactID = null; public Integer getWorkerScheduleItemID() { return WorkerScheduleItemID; } public CoverageBoardSeat setWorkerScheduleItemID(Integer value) { this.WorkerScheduleItemID = value; return this; } public String getLabel() { return Label; } public CoverageBoardSeat setLabel(String value) { this.Label = value; return this; } public String getWho() { return Who; } public CoverageBoardSeat setWho(String value) { this.Who = value; return this; } public Integer getContactID() { return ContactID; } public CoverageBoardSeat setContactID(Integer value) { this.ContactID = value; return this; } } }