(* Options: Date: 2024-07-03 12:36:21 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: ApiVersionQuery.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace BokaMera.API.ServiceModel.Dtos open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Globalization open System.IO [] type ApiVersionQueryResponse() = /// ///Timestamp when this API was built /// member val BuildTime:DateTime = new DateTime() with get,set /// ///The revision id from which the API was built /// member val Sha:String = null with get,set /// ///Full version information regarding the current running assemblies of the api /// member val InformationalVersion:String = null with get,set /// ///The semantic version number of the current running api version, see www.semver.org for more information /// member val SemVer:String = null with get,set member val ResponseStatus:ResponseStatus = null with get,set [] [] type ApiVersionQuery() = interface IReturn