(* Options: Date: 2025-12-06 06:26:18 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //GlobalNamespace: BusinessApi //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetBusinessRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace BusinessApi open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type IHasBusinessId = abstract BusinessId:Int64 with get,set [] type BusinessContact() = member val FirstName:String = null with get,set member val LastName:String = null with get,set member val Position:String = null with get,set member val Phone:String = null with get,set member val Email:String = null with get,set [] type BusinessDto() = member val Id:Int64 = new Int64() with get,set member val Name:String = null with get,set member val OrganizationNumber:String = null with get,set member val StreetAddress:String = null with get,set member val PostalCode:String = null with get,set member val City:String = null with get,set member val Country:String = null with get,set member val Contact:BusinessContact = null with get,set [] type GetBusinessResponse() = member val Business:BusinessDto = null with get,set [] [] type GetBusinessRequest() = interface IReturn interface IGet member val BusinessId:Int64 = new Int64() with get,set