(* Options: Date: 2025-12-19 01:35:42 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://geniuslink-markable-api.qa.platform.georiot.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: Hello.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Geniuslink.MarkableApi.ServiceModel open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type HelloResponseData() = member val Greeting:String = null with get,set [] [] type BaseResponse() = [] member val ResponseStatus:ResponseStatus = null with get,set [] type HelloResponse() = inherit BaseResponse() member val Data:HelloResponseData = null with get,set [] [] [] type Hello() = interface IReturn member val Name:String = null with get,set member val Version:Int32 = new Int32() with get,set