/* Options: Date: 2025-12-06 07:50:11 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //GlobalNamespace: BusinessApi //MakePartial: True //MakeVirtual: False //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: True //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: GetBillingContactRequest.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using BusinessApi; namespace BusinessApi { [Route("/business/get_billing_contact", "GET")] public partial class GetBillingContactRequest : IReturn, IGet, IHasBusinessId { public long BusinessId { get; set; } } public partial class GetBillingContactResponse { public BillingContact? BillingContact { get; set; } } public partial interface IHasBusinessId { long BusinessId { get; set; } } public partial class BillingContact { public string Person { get; set; } public string? Phone { get; set; } public string? Email { get; set; } } }