/* Options: Date: 2024-12-23 12:08:52 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://consumer-api.brovs.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UnstarAdMessageRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/admessage/UnstarAdMessage", Verbs="DELETE") open class UnstarAdMessageRequest : IReturn, IDelete { var adMessageId:Long? = null companion object { private val responseType = UnstarAdMessageResponse::class.java } override fun getResponseType(): Any? = UnstarAdMessageRequest.responseType } open class UnstarAdMessageResponse { var unstarredAdMessageId:Long? = null }