/* Options: Date: 2026-01-12 02:38:48 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://qa-business-api.brovs.com //Package: //GlobalNamespace: BusinessApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetPlaceCountersRequest.* //ExcludeTypes: //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.*; public class BusinessApi { @Route(Path="/place/get_counters", Verbs="GET") public static class GetPlaceCountersRequest implements IReturn, IGet, IHasPlaceId { public Long placeId = null; public Long getPlaceId() { return placeId; } public GetPlaceCountersRequest setPlaceId(Long value) { this.placeId = value; return this; } private static Object responseType = GetPlaceCountersResponse.class; public Object getResponseType() { return responseType; } } public static class GetPlaceCountersResponse { public Long adsDraftCount = null; public Long adsUpcomingCount = null; public Long adsRunningCount = null; public Long getAdsDraftCount() { return adsDraftCount; } public GetPlaceCountersResponse setAdsDraftCount(Long value) { this.adsDraftCount = value; return this; } public Long getAdsUpcomingCount() { return adsUpcomingCount; } public GetPlaceCountersResponse setAdsUpcomingCount(Long value) { this.adsUpcomingCount = value; return this; } public Long getAdsRunningCount() { return adsRunningCount; } public GetPlaceCountersResponse setAdsRunningCount(Long value) { this.adsRunningCount = value; return this; } } public static interface IHasPlaceId { public Long placeId = null; } }