/* 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: PlaceAddCuisineRequest.* //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/add_cuisine", Verbs="POST") open class PlaceAddCuisineRequest : IReturn, IPost, IHasPlaceId { override var placeId:Long? = null open var cuisineSlug:String? = null companion object { private val responseType = PlaceAddCuisineResponse::class.java } override fun getResponseType(): Any? = PlaceAddCuisineRequest.responseType } open class PlaceAddCuisineResponse { open var cuisineSlug:String? = null } interface IHasPlaceId { var placeId:Long? }