/* Options: Date: 2024-12-23 11:55:26 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://consumer-api.brovs.com //Package: //GlobalNamespace: ConsumerApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetAppMenuDataRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class ConsumerApi { @Route(Path="/menu", Verbs="GET") public static class GetAppMenuDataRequest implements IReturn, IGet { private static Object responseType = GetAppMenuDataResponse.class; public Object getResponseType() { return responseType; } } public static class GetAppMenuDataResponse { public Long followedPlacesCount = null; public Long starredAdMessagesCount = null; public Long savedSearchesCount = null; public Long newsCount = null; public Boolean hasActiveLottery = null; public Long getFollowedPlacesCount() { return followedPlacesCount; } public GetAppMenuDataResponse setFollowedPlacesCount(Long value) { this.followedPlacesCount = value; return this; } public Long getStarredAdMessagesCount() { return starredAdMessagesCount; } public GetAppMenuDataResponse setStarredAdMessagesCount(Long value) { this.starredAdMessagesCount = value; return this; } public Long getSavedSearchesCount() { return savedSearchesCount; } public GetAppMenuDataResponse setSavedSearchesCount(Long value) { this.savedSearchesCount = value; return this; } public Long getNewsCount() { return newsCount; } public GetAppMenuDataResponse setNewsCount(Long value) { this.newsCount = value; return this; } public Boolean isHasActiveLottery() { return hasActiveLottery; } public GetAppMenuDataResponse setHasActiveLottery(Boolean value) { this.hasActiveLottery = value; return this; } } }