/* Options: Date: 2026-09-21 22:51:05 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://clouddemo.pickeos.com:1337 //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: MissionSetComment.* //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="/MissionSetComment") public static class MissionSetComment { /** * Comment to add on an item to an order */ @ApiMember(Description="Comment to add on an item to an order", IsRequired=true) public String Comment = null; /** * ID of the mission detail */ @ApiMember(Description="ID of the mission detail") public Integer MissionDetailID = null; /** * Name of operator */ @ApiMember(Description="Name of operator", IsRequired=true) public String Operator = null; public String getComment() { return Comment; } public MissionSetComment setComment(String value) { this.Comment = value; return this; } public Integer getMissionDetailID() { return MissionDetailID; } public MissionSetComment setMissionDetailID(Integer value) { this.MissionDetailID = value; return this; } public String getOperator() { return Operator; } public MissionSetComment setOperator(String value) { this.Operator = value; return this; } } }