/* Options: Date: 2025-12-06 07:49:56 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: MallRemoveOtherServiceRequest.* //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="/mall/remove_other_service", Verbs="DELETE") open class MallRemoveOtherServiceRequest : IReturn, IDelete, IHasMallOtherServiceId { override var mallOtherServiceId:Long? = null companion object { private val responseType = MallRemoveOtherServiceResponse::class.java } override fun getResponseType(): Any? = MallRemoveOtherServiceRequest.responseType } open class MallRemoveOtherServiceResponse { open var deleted:MallOtherServiceDto? = null } interface IHasMallOtherServiceId { var mallOtherServiceId:Long? } open class MallOtherServiceDto { open var id:Long? = null open var serviceName:String? = null open var floor:String? = null }