/* Options: Date: 2025-12-06 06:44:54 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: GetBillingEntityRequest.* //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_company", Verbs="GET") open class GetBillingEntityRequest : IReturn, IGet, IHasBusinessId { override var businessId:Long? = null companion object { private val responseType = GetBillingEntityResponse::class.java } override fun getResponseType(): Any? = GetBillingEntityRequest.responseType } open class GetBillingEntityResponse { open var billingEntity:BillingEntity? = null } interface IHasBusinessId { var businessId:Long? } open class BillingEntity { open var name:String? = null open var organizationNumber:String? = null open var postalAddress:String? = null open var postalCode:String? = null open var city:String? = null open var countryCode:String? = null }