(* Options: Date: 2026-09-21 22:51:43 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://clouddemo.pickeos.com:1337 //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: MissionSetComment.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace GoToLightAPI open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] [] type MissionSetComment() = /// ///Comment to add on an item to an order /// [] member val Comment:String = null with get,set /// ///ID of the mission detail /// [] member val MissionDetailID:Int32 = new Int32() with get,set /// ///Name of operator /// [] member val Operator:String = null with get,set