(* Options: Date: 2024-10-18 04:32:41 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.nl/api //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: AddStatistic.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace IDB.API.DTO.Statistics.Operations open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Drawing type ProgramName = | DO4Outlook = 0 | DO4Word = 1 | DO4Excel = 2 | DO4PowerPoint = 3 | ITS = 4 | Other = 5 type Action = | Start = 0 | Command = 1 | Other = 2 /// ///Add a statistic entity. /// [] [] [] type AddStatistic() = interface IReturnVoid /// ///Computername /// [] member val Computer:String = null with get,set /// ///Program for the statistic entry /// [] member val ProgramName:ProgramName = new ProgramName() with get,set /// ///Version of the program /// [] member val ProgramVersion:String = null with get,set /// ///Action of statistic /// [] member val Action:Action = new Action() with get,set /// ///First parameter /// [] member val Param1:String = null with get,set /// ///Second parameter /// [] member val Param2:String = null with get,set