/* Options: Date: 2025-12-06 07:49:58 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: GetAllPriceMainDishRequest.* //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="/price_maindish/get_all", Verbs="GET") open class GetAllPriceMainDishRequest : IReturn, IGet { companion object { private val responseType = GetAllPriceMainDishResponse::class.java } override fun getResponseType(): Any? = GetAllPriceMainDishRequest.responseType } open class GetAllPriceMainDishResponse { open var priceMainDishes:ArrayList = ArrayList() } enum class PriceMainDish { Value, Medium, High, FineDining, } open class PriceMainDishDto { open var title:String? = null open var slug:PriceMainDish? = null }