/* Options: Date: 2025-12-06 06:41:35 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetBillingContactRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/business/get_billing_contact", Verbs="GET") open class GetBillingContactRequest : IReturn, IGet, IHasBusinessId { override var businessId:Long? = null companion object { private val responseType = GetBillingContactResponse::class.java } override fun getResponseType(): Any? = GetBillingContactRequest.responseType } open class GetBillingContactResponse { open var billingContact:BillingContact? = null } interface IHasBusinessId { var businessId:Long? } open class BillingContact { open var person:String? = null open var phone:String? = null open var email:String? = null }