(* Options: Date: 2025-09-08 02:19:19 Version: 8.81 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://account.servicestack.net //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetSupportContacts.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace MyApp.ServiceModel open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type SupportContact() = member val Id:Int32 = new Int32() with get,set member val CustomerId:Int32 = new Int32() with get,set member val Name:String = null with get,set member val Email:String = null with get,set member val GitHub:String = null with get,set [] type GetSupportContactsResponse() = member val Results:ResizeArray = null with get,set member val ResponseStatus:ResponseStatus = null with get,set [] [] type GetSupportContacts() = interface IReturn interface IGet