(* Options: Date: 2025-12-06 07:51:05 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: GetBillingContactRequest.* //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 BillingContact() = member val Person:String = null with get,set member val Phone:String = null with get,set member val Email:String = null with get,set [] type GetBillingContactResponse() = member val BillingContact:BillingContact = null with get,set [] [] type GetBillingContactRequest() = interface IReturn interface IGet member val BusinessId:Int64 = new Int64() with get,set