/* Options: Date: 2025-12-06 07:51:11 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: PlaceRemoveBarSpecialityRequest.* //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="/place/remove_bar_speciality", Verbs="DELETE") open class PlaceRemoveBarSpecialityRequest : IReturn, IDelete, IHasPlaceId { override var placeId:Long? = null open var barSpecialitySlug:String? = null companion object { private val responseType = PlaceRemoveBarSpecialityResponse::class.java } override fun getResponseType(): Any? = PlaceRemoveBarSpecialityRequest.responseType } open class PlaceRemoveBarSpecialityResponse { open var barSpecialitySlug:String? = null } interface IHasPlaceId { var placeId:Long? }