/* Options: Date: 2025-12-06 07:01:25 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: AddOrUpdateBillingEntityRequest.* //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/add_or_update_billing_company", Verbs="PUT") open class AddOrUpdateBillingEntityRequest : IReturn, IPut, IHasBusinessId { override var businessId:Long? = null open var entity:BillingEntity? = null companion object { private val responseType = AddOrUpdateBillingEntityResponse::class.java } override fun getResponseType(): Any? = AddOrUpdateBillingEntityRequest.responseType } open class AddOrUpdateBillingEntityResponse { open var entity: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 }