/* Options: Date: 2025-12-06 07:02:49 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://backoffice-api.brovs.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AddTakeAwayRequest.* //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="/take_away/add", Verbs="POST") open class AddTakeAwayRequest : IReturn, IPost { open var label:String? = null open var slug:String? = null companion object { private val responseType = AddTakeAwayResponse::class.java } override fun getResponseType(): Any? = AddTakeAwayRequest.responseType } open class AddTakeAwayResponse { open var id:Long? = null }