/* Options: Date: 2025-12-06 07:50:09 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: GetPlaceCountersRequest.* //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/get_counters", Verbs="GET") open class GetPlaceCountersRequest : IReturn, IGet, IHasPlaceId { override var placeId:Long? = null companion object { private val responseType = GetPlaceCountersResponse::class.java } override fun getResponseType(): Any? = GetPlaceCountersRequest.responseType } open class GetPlaceCountersResponse { open var adMessagesDraftCount:Long? = null open var adMessagesUpcomingCount:Long? = null open var adMessagesRunningCount:Long? = null } interface IHasPlaceId { var placeId:Long? }