/* Options: Date: 2025-12-06 06:41:45 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: PlaceAddEatingSuitabilityRequest.* //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_eating_suitability", Verbs="POST") open class PlaceAddEatingSuitabilityRequest : IReturn, IPost, IHasPlaceId { override var placeId:Long? = null open var eatingSuitabilitySlug:String? = null companion object { private val responseType = PlaceAddEatingSuitabilityResponse::class.java } override fun getResponseType(): Any? = PlaceAddEatingSuitabilityRequest.responseType } open class PlaceAddEatingSuitabilityResponse { open var eatingSuitabilitySlug:String? = null } interface IHasPlaceId { var placeId:Long? }