/* Options: Date: 2026-07-08 21:26:41 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: ToolboxAckRequest.* //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/safety/toolbox/{ToolboxTalkID}/ack", Verbs="POST,OPTIONS") public static class ToolboxAckRequest implements IReturn { public Integer ToolboxTalkID = null; public Integer ContactID = null; public String CrewName = null; public Integer getToolboxTalkID() { return ToolboxTalkID; } public ToolboxAckRequest setToolboxTalkID(Integer value) { this.ToolboxTalkID = value; return this; } public Integer getContactID() { return ContactID; } public ToolboxAckRequest setContactID(Integer value) { this.ContactID = value; return this; } public String getCrewName() { return CrewName; } public ToolboxAckRequest setCrewName(String value) { this.CrewName = value; return this; } private static Object responseType = ToolboxTalkTodayResponse.class; public Object getResponseType() { return responseType; } } public static class ToolboxTalkTodayResponse { public ResponseStatus ResponseStatus = null; public ToolboxTalkToday Talk = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public ToolboxTalkTodayResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ToolboxTalkToday getTalk() { return Talk; } public ToolboxTalkTodayResponse setTalk(ToolboxTalkToday value) { this.Talk = value; return this; } } public static class ToolboxTalkToday { public Integer ToolboxTalkID = null; public String Topic = null; public String Presenter = null; public Integer AckCount = null; public Integer CrewTotal = null; public ArrayList Roster = new ArrayList(); public Integer getToolboxTalkID() { return ToolboxTalkID; } public ToolboxTalkToday setToolboxTalkID(Integer value) { this.ToolboxTalkID = value; return this; } public String getTopic() { return Topic; } public ToolboxTalkToday setTopic(String value) { this.Topic = value; return this; } public String getPresenter() { return Presenter; } public ToolboxTalkToday setPresenter(String value) { this.Presenter = value; return this; } public Integer getAckCount() { return AckCount; } public ToolboxTalkToday setAckCount(Integer value) { this.AckCount = value; return this; } public Integer getCrewTotal() { return CrewTotal; } public ToolboxTalkToday setCrewTotal(Integer value) { this.CrewTotal = value; return this; } public ArrayList getRoster() { return Roster; } public ToolboxTalkToday setRoster(ArrayList value) { this.Roster = value; return this; } } public static class ToolboxRosterMember { public Integer ContactID = null; public String ContactName = null; public Boolean HasAcked = null; public Integer getContactID() { return ContactID; } public ToolboxRosterMember setContactID(Integer value) { this.ContactID = value; return this; } public String getContactName() { return ContactName; } public ToolboxRosterMember setContactName(String value) { this.ContactName = value; return this; } public Boolean isHasAcked() { return HasAcked; } public ToolboxRosterMember setHasAcked(Boolean value) { this.HasAcked = value; return this; } } }