/* Options: Date: 2025-05-06 20:46:12 Version: 8.70 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://unstable-consumer-api.brovs.com //Package: //GlobalNamespace: ConsumerApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: FindPlaceRequest.* //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 ConsumerApi { @Route(Path="/find/place", Verbs="GET") public static class FindPlaceRequest implements IReturn, IGet, IPost { public Integer offset = null; public Integer size = null; public Date resultAt = null; public QueryFilterDto filter = null; public QueryLocationDto location = null; public Long cacheVersion = null; public Integer getOffset() { return offset; } public FindPlaceRequest setOffset(Integer value) { this.offset = value; return this; } public Integer getSize() { return size; } public FindPlaceRequest setSize(Integer value) { this.size = value; return this; } public Date getResultAt() { return resultAt; } public FindPlaceRequest setResultAt(Date value) { this.resultAt = value; return this; } public QueryFilterDto getFilter() { return filter; } public FindPlaceRequest setFilter(QueryFilterDto value) { this.filter = value; return this; } public QueryLocationDto getLocation() { return location; } public FindPlaceRequest setLocation(QueryLocationDto value) { this.location = value; return this; } public Long getCacheVersion() { return cacheVersion; } public FindPlaceRequest setCacheVersion(Long value) { this.cacheVersion = value; return this; } private static Object responseType = FindPlaceResponse.class; public Object getResponseType() { return responseType; } } public static class FindPlaceResponse { public ArrayList places = new ArrayList(); public Long placeCount = null; public Date resultAt = null; public ArrayList categoryFacetTrees = new ArrayList(); public ArrayList getPlaces() { return places; } public FindPlaceResponse setPlaces(ArrayList value) { this.places = value; return this; } public Long getPlaceCount() { return placeCount; } public FindPlaceResponse setPlaceCount(Long value) { this.placeCount = value; return this; } public Date getResultAt() { return resultAt; } public FindPlaceResponse setResultAt(Date value) { this.resultAt = value; return this; } public ArrayList getCategoryFacetTrees() { return categoryFacetTrees; } public FindPlaceResponse setCategoryFacetTrees(ArrayList value) { this.categoryFacetTrees = value; return this; } } public static class QueryFilterDto { public String term = null; public UUID placeGuid = null; public UUID adMessageGuid = null; public ArrayList categoryAbsoluteSlugs = new ArrayList(); public ArrayList barSpecialitySlugs = new ArrayList(); public ArrayList barTypeSlugs = new ArrayList(); public ArrayList brandNames = new ArrayList(); public ArrayList cuisineSlugs = new ArrayList(); public ArrayList mealTypeSlugs = new ArrayList(); public ArrayList parking = new ArrayList(); public ArrayList paymentOptions = new ArrayList(); public ArrayList priceMainDishes = new ArrayList(); public ArrayList eatingSuitabilitySlugs = new ArrayList(); public ArrayList takeAwaySlugs = new ArrayList(); public ArrayList wearPriceProfileSlugs = new ArrayList(); public Boolean wheelChairAccessible = null; public Boolean wifi = null; public Boolean outdoorSeating = null; public Boolean saveFoodAndMoney = null; public OpenAtTimeDto openAt = null; public String getTerm() { return term; } public QueryFilterDto setTerm(String value) { this.term = value; return this; } public UUID getPlaceGuid() { return placeGuid; } public QueryFilterDto setPlaceGuid(UUID value) { this.placeGuid = value; return this; } public UUID getAdMessageGuid() { return adMessageGuid; } public QueryFilterDto setAdMessageGuid(UUID value) { this.adMessageGuid = value; return this; } public ArrayList getCategoryAbsoluteSlugs() { return categoryAbsoluteSlugs; } public QueryFilterDto setCategoryAbsoluteSlugs(ArrayList value) { this.categoryAbsoluteSlugs = value; return this; } public ArrayList getBarSpecialitySlugs() { return barSpecialitySlugs; } public QueryFilterDto setBarSpecialitySlugs(ArrayList value) { this.barSpecialitySlugs = value; return this; } public ArrayList getBarTypeSlugs() { return barTypeSlugs; } public QueryFilterDto setBarTypeSlugs(ArrayList value) { this.barTypeSlugs = value; return this; } public ArrayList getBrandNames() { return brandNames; } public QueryFilterDto setBrandNames(ArrayList value) { this.brandNames = value; return this; } public ArrayList getCuisineSlugs() { return cuisineSlugs; } public QueryFilterDto setCuisineSlugs(ArrayList value) { this.cuisineSlugs = value; return this; } public ArrayList getMealTypeSlugs() { return mealTypeSlugs; } public QueryFilterDto setMealTypeSlugs(ArrayList value) { this.mealTypeSlugs = value; return this; } public ArrayList getParking() { return parking; } public QueryFilterDto setParking(ArrayList value) { this.parking = value; return this; } public ArrayList getPaymentOptions() { return paymentOptions; } public QueryFilterDto setPaymentOptions(ArrayList value) { this.paymentOptions = value; return this; } public ArrayList getPriceMainDishes() { return priceMainDishes; } public QueryFilterDto setPriceMainDishes(ArrayList value) { this.priceMainDishes = value; return this; } public ArrayList getEatingSuitabilitySlugs() { return eatingSuitabilitySlugs; } public QueryFilterDto setEatingSuitabilitySlugs(ArrayList value) { this.eatingSuitabilitySlugs = value; return this; } public ArrayList getTakeAwaySlugs() { return takeAwaySlugs; } public QueryFilterDto setTakeAwaySlugs(ArrayList value) { this.takeAwaySlugs = value; return this; } public ArrayList getWearPriceProfileSlugs() { return wearPriceProfileSlugs; } public QueryFilterDto setWearPriceProfileSlugs(ArrayList value) { this.wearPriceProfileSlugs = value; return this; } public Boolean isWheelChairAccessible() { return wheelChairAccessible; } public QueryFilterDto setWheelChairAccessible(Boolean value) { this.wheelChairAccessible = value; return this; } public Boolean isWifi() { return wifi; } public QueryFilterDto setWifi(Boolean value) { this.wifi = value; return this; } public Boolean isOutdoorSeating() { return outdoorSeating; } public QueryFilterDto setOutdoorSeating(Boolean value) { this.outdoorSeating = value; return this; } public Boolean isSaveFoodAndMoney() { return saveFoodAndMoney; } public QueryFilterDto setSaveFoodAndMoney(Boolean value) { this.saveFoodAndMoney = value; return this; } public OpenAtTimeDto getOpenAt() { return openAt; } public QueryFilterDto setOpenAt(OpenAtTimeDto value) { this.openAt = value; return this; } } public static class QueryLocationDto { public Float longitude = null; public Float latitude = null; public Float searchRadiusInKm = null; public Float getLongitude() { return longitude; } public QueryLocationDto setLongitude(Float value) { this.longitude = value; return this; } public Float getLatitude() { return latitude; } public QueryLocationDto setLatitude(Float value) { this.latitude = value; return this; } public Float getSearchRadiusInKm() { return searchRadiusInKm; } public QueryLocationDto setSearchRadiusInKm(Float value) { this.searchRadiusInKm = value; return this; } } public static class PlaceApiDto { public Long id = null; public UUID guid = null; public String overview = null; public String name = null; public Float longitude = null; public Float latitude = null; public Boolean claimed = null; public String organizationNumber = null; public String countryCode = null; public String placeState = null; public Long followersCount = null; public OpeningHours openingHours = null; public ArrayList categories = new ArrayList(); public ArrayList featureData = new ArrayList(); public ArrayList barSpecialities = new ArrayList(); public ArrayList barTypes = new ArrayList(); public ArrayList brands = new ArrayList(); public ArrayList cuisines = new ArrayList(); public ArrayList mealTypes = new ArrayList(); public ArrayList parking = new ArrayList(); public ArrayList paymentOptions = new ArrayList(); public ArrayList eatingSuitabilities = new ArrayList(); public ArrayList takeAways = new ArrayList(); public ArrayList wearPriceProfiles = new ArrayList(); public ArrayList menus = new ArrayList(); public ImageUrls logoUrl = null; public ImageUrls imageUrl = null; public Boolean wheelchairAccessible = null; public Boolean wifi = null; public Boolean outdoorSeating = null; public Boolean saveFoodAndMoney = null; public PlaceType placeType = null; public PlaceBasicApiDto mall = null; public PriceMainDishApiDto priceMainDish = null; public ArrayList places = new ArrayList(); public ArrayList otherServices = new ArrayList(); public String floor = null; public TimeZoneDto timeZoneDto = null; public Long businessId = null; public PlaceContact contact = null; public PlaceAddress address = null; public Long getId() { return id; } public PlaceApiDto setId(Long value) { this.id = value; return this; } public UUID getGuid() { return guid; } public PlaceApiDto setGuid(UUID value) { this.guid = value; return this; } public String getOverview() { return overview; } public PlaceApiDto setOverview(String value) { this.overview = value; return this; } public String getName() { return name; } public PlaceApiDto setName(String value) { this.name = value; return this; } public Float getLongitude() { return longitude; } public PlaceApiDto setLongitude(Float value) { this.longitude = value; return this; } public Float getLatitude() { return latitude; } public PlaceApiDto setLatitude(Float value) { this.latitude = value; return this; } public Boolean isClaimed() { return claimed; } public PlaceApiDto setClaimed(Boolean value) { this.claimed = value; return this; } public String getOrganizationNumber() { return organizationNumber; } public PlaceApiDto setOrganizationNumber(String value) { this.organizationNumber = value; return this; } public String getCountryCode() { return countryCode; } public PlaceApiDto setCountryCode(String value) { this.countryCode = value; return this; } public String getPlaceState() { return placeState; } public PlaceApiDto setPlaceState(String value) { this.placeState = value; return this; } public Long getFollowersCount() { return followersCount; } public PlaceApiDto setFollowersCount(Long value) { this.followersCount = value; return this; } public OpeningHours getOpeningHours() { return openingHours; } public PlaceApiDto setOpeningHours(OpeningHours value) { this.openingHours = value; return this; } public ArrayList getCategories() { return categories; } public PlaceApiDto setCategories(ArrayList value) { this.categories = value; return this; } public ArrayList getFeatureData() { return featureData; } public PlaceApiDto setFeatureData(ArrayList value) { this.featureData = value; return this; } public ArrayList getBarSpecialities() { return barSpecialities; } public PlaceApiDto setBarSpecialities(ArrayList value) { this.barSpecialities = value; return this; } public ArrayList getBarTypes() { return barTypes; } public PlaceApiDto setBarTypes(ArrayList value) { this.barTypes = value; return this; } public ArrayList getBrands() { return brands; } public PlaceApiDto setBrands(ArrayList value) { this.brands = value; return this; } public ArrayList getCuisines() { return cuisines; } public PlaceApiDto setCuisines(ArrayList value) { this.cuisines = value; return this; } public ArrayList getMealTypes() { return mealTypes; } public PlaceApiDto setMealTypes(ArrayList value) { this.mealTypes = value; return this; } public ArrayList getParking() { return parking; } public PlaceApiDto setParking(ArrayList value) { this.parking = value; return this; } public ArrayList getPaymentOptions() { return paymentOptions; } public PlaceApiDto setPaymentOptions(ArrayList value) { this.paymentOptions = value; return this; } public ArrayList getEatingSuitabilities() { return eatingSuitabilities; } public PlaceApiDto setEatingSuitabilities(ArrayList value) { this.eatingSuitabilities = value; return this; } public ArrayList getTakeAways() { return takeAways; } public PlaceApiDto setTakeAways(ArrayList value) { this.takeAways = value; return this; } public ArrayList getWearPriceProfiles() { return wearPriceProfiles; } public PlaceApiDto setWearPriceProfiles(ArrayList value) { this.wearPriceProfiles = value; return this; } public ArrayList getMenus() { return menus; } public PlaceApiDto setMenus(ArrayList value) { this.menus = value; return this; } public ImageUrls getLogoUrl() { return logoUrl; } public PlaceApiDto setLogoUrl(ImageUrls value) { this.logoUrl = value; return this; } public ImageUrls getImageUrl() { return imageUrl; } public PlaceApiDto setImageUrl(ImageUrls value) { this.imageUrl = value; return this; } public Boolean isWheelchairAccessible() { return wheelchairAccessible; } public PlaceApiDto setWheelchairAccessible(Boolean value) { this.wheelchairAccessible = value; return this; } public Boolean isWifi() { return wifi; } public PlaceApiDto setWifi(Boolean value) { this.wifi = value; return this; } public Boolean isOutdoorSeating() { return outdoorSeating; } public PlaceApiDto setOutdoorSeating(Boolean value) { this.outdoorSeating = value; return this; } public Boolean isSaveFoodAndMoney() { return saveFoodAndMoney; } public PlaceApiDto setSaveFoodAndMoney(Boolean value) { this.saveFoodAndMoney = value; return this; } public PlaceType getPlaceType() { return placeType; } public PlaceApiDto setPlaceType(PlaceType value) { this.placeType = value; return this; } public PlaceBasicApiDto getMall() { return mall; } public PlaceApiDto setMall(PlaceBasicApiDto value) { this.mall = value; return this; } public PriceMainDishApiDto getPriceMainDish() { return priceMainDish; } public PlaceApiDto setPriceMainDish(PriceMainDishApiDto value) { this.priceMainDish = value; return this; } public ArrayList getPlaces() { return places; } public PlaceApiDto setPlaces(ArrayList value) { this.places = value; return this; } public ArrayList getOtherServices() { return otherServices; } public PlaceApiDto setOtherServices(ArrayList value) { this.otherServices = value; return this; } public String getFloor() { return floor; } public PlaceApiDto setFloor(String value) { this.floor = value; return this; } public TimeZoneDto getTimeZoneDto() { return timeZoneDto; } public PlaceApiDto setTimeZoneDto(TimeZoneDto value) { this.timeZoneDto = value; return this; } public Long getBusinessId() { return businessId; } public PlaceApiDto setBusinessId(Long value) { this.businessId = value; return this; } public PlaceContact getContact() { return contact; } public PlaceApiDto setContact(PlaceContact value) { this.contact = value; return this; } public PlaceAddress getAddress() { return address; } public PlaceApiDto setAddress(PlaceAddress value) { this.address = value; return this; } } public static class CategoryFacetTreeDto { public String name = null; public String slug = null; public String absoluteSlug = null; public ArrayList featureTypes = new ArrayList(); public CategoryFacetTreeType type = null; public Long count = null; public String imageUrl = null; public String allImageUrl = null; public String iconImageUrl = null; public Integer position = null; public ArrayList children = new ArrayList(); public String getName() { return name; } public CategoryFacetTreeDto setName(String value) { this.name = value; return this; } public String getSlug() { return slug; } public CategoryFacetTreeDto setSlug(String value) { this.slug = value; return this; } public String getAbsoluteSlug() { return absoluteSlug; } public CategoryFacetTreeDto setAbsoluteSlug(String value) { this.absoluteSlug = value; return this; } public ArrayList getFeatureTypes() { return featureTypes; } public CategoryFacetTreeDto setFeatureTypes(ArrayList value) { this.featureTypes = value; return this; } public CategoryFacetTreeType getType() { return type; } public CategoryFacetTreeDto setType(CategoryFacetTreeType value) { this.type = value; return this; } public Long getCount() { return count; } public CategoryFacetTreeDto setCount(Long value) { this.count = value; return this; } public String getImageUrl() { return imageUrl; } public CategoryFacetTreeDto setImageUrl(String value) { this.imageUrl = value; return this; } public String getAllImageUrl() { return allImageUrl; } public CategoryFacetTreeDto setAllImageUrl(String value) { this.allImageUrl = value; return this; } public String getIconImageUrl() { return iconImageUrl; } public CategoryFacetTreeDto setIconImageUrl(String value) { this.iconImageUrl = value; return this; } public Integer getPosition() { return position; } public CategoryFacetTreeDto setPosition(Integer value) { this.position = value; return this; } public ArrayList getChildren() { return children; } public CategoryFacetTreeDto setChildren(ArrayList value) { this.children = value; return this; } } public static class PlaceBasicApiDto { public Long id = null; public UUID guid = null; public String overview = null; public String name = null; public Float longitude = null; public Float latitude = null; public Boolean claimed = null; public String organizationNumber = null; public String countryCode = null; public OpeningHours openingHours = null; public Boolean wheelchairAccessible = null; public Boolean wifi = null; public Boolean outdoorSeating = null; public Boolean saveFoodAndMoney = null; public PlaceType placeType = null; public PriceMainDishApiDto priceMainDish = null; public TimeZoneDto timeZoneDto = null; public Long businessId = null; public PlaceContact contact = null; public PlaceAddress address = null; public ArrayList categories = new ArrayList(); public ImageUrls logoUrl = null; public ImageUrls imageUrl = null; public ArrayList wearPriceProfiles = new ArrayList(); public ArrayList brands = new ArrayList(); public String floor = null; public Long getId() { return id; } public PlaceBasicApiDto setId(Long value) { this.id = value; return this; } public UUID getGuid() { return guid; } public PlaceBasicApiDto setGuid(UUID value) { this.guid = value; return this; } public String getOverview() { return overview; } public PlaceBasicApiDto setOverview(String value) { this.overview = value; return this; } public String getName() { return name; } public PlaceBasicApiDto setName(String value) { this.name = value; return this; } public Float getLongitude() { return longitude; } public PlaceBasicApiDto setLongitude(Float value) { this.longitude = value; return this; } public Float getLatitude() { return latitude; } public PlaceBasicApiDto setLatitude(Float value) { this.latitude = value; return this; } public Boolean isClaimed() { return claimed; } public PlaceBasicApiDto setClaimed(Boolean value) { this.claimed = value; return this; } public String getOrganizationNumber() { return organizationNumber; } public PlaceBasicApiDto setOrganizationNumber(String value) { this.organizationNumber = value; return this; } public String getCountryCode() { return countryCode; } public PlaceBasicApiDto setCountryCode(String value) { this.countryCode = value; return this; } public OpeningHours getOpeningHours() { return openingHours; } public PlaceBasicApiDto setOpeningHours(OpeningHours value) { this.openingHours = value; return this; } public Boolean isWheelchairAccessible() { return wheelchairAccessible; } public PlaceBasicApiDto setWheelchairAccessible(Boolean value) { this.wheelchairAccessible = value; return this; } public Boolean isWifi() { return wifi; } public PlaceBasicApiDto setWifi(Boolean value) { this.wifi = value; return this; } public Boolean isOutdoorSeating() { return outdoorSeating; } public PlaceBasicApiDto setOutdoorSeating(Boolean value) { this.outdoorSeating = value; return this; } public Boolean isSaveFoodAndMoney() { return saveFoodAndMoney; } public PlaceBasicApiDto setSaveFoodAndMoney(Boolean value) { this.saveFoodAndMoney = value; return this; } public PlaceType getPlaceType() { return placeType; } public PlaceBasicApiDto setPlaceType(PlaceType value) { this.placeType = value; return this; } public PriceMainDishApiDto getPriceMainDish() { return priceMainDish; } public PlaceBasicApiDto setPriceMainDish(PriceMainDishApiDto value) { this.priceMainDish = value; return this; } public TimeZoneDto getTimeZoneDto() { return timeZoneDto; } public PlaceBasicApiDto setTimeZoneDto(TimeZoneDto value) { this.timeZoneDto = value; return this; } public Long getBusinessId() { return businessId; } public PlaceBasicApiDto setBusinessId(Long value) { this.businessId = value; return this; } public PlaceContact getContact() { return contact; } public PlaceBasicApiDto setContact(PlaceContact value) { this.contact = value; return this; } public PlaceAddress getAddress() { return address; } public PlaceBasicApiDto setAddress(PlaceAddress value) { this.address = value; return this; } public ArrayList getCategories() { return categories; } public PlaceBasicApiDto setCategories(ArrayList value) { this.categories = value; return this; } public ImageUrls getLogoUrl() { return logoUrl; } public PlaceBasicApiDto setLogoUrl(ImageUrls value) { this.logoUrl = value; return this; } public ImageUrls getImageUrl() { return imageUrl; } public PlaceBasicApiDto setImageUrl(ImageUrls value) { this.imageUrl = value; return this; } public ArrayList getWearPriceProfiles() { return wearPriceProfiles; } public PlaceBasicApiDto setWearPriceProfiles(ArrayList value) { this.wearPriceProfiles = value; return this; } public ArrayList getBrands() { return brands; } public PlaceBasicApiDto setBrands(ArrayList value) { this.brands = value; return this; } public String getFloor() { return floor; } public PlaceBasicApiDto setFloor(String value) { this.floor = value; return this; } } public static enum Parking { StreetParking, ParkingGarageNearby; } public static enum PaymentOption { Visa, MasterCard, AmericanExpress, Diners, Vipps; } public static enum PriceMainDish { Value, Medium, High, FineDining; } public static class OpenAtTimeDto { public DayOfWeek weekDay = null; public Integer hour = null; public Integer minute = null; public DayOfWeek getWeekDay() { return weekDay; } public OpenAtTimeDto setWeekDay(DayOfWeek value) { this.weekDay = value; return this; } public Integer getHour() { return hour; } public OpenAtTimeDto setHour(Integer value) { this.hour = value; return this; } public Integer getMinute() { return minute; } public OpenAtTimeDto setMinute(Integer value) { this.minute = value; return this; } } public static class OpeningHours { public WeeklyOpeningHours weekly = null; public WeeklyOpeningHours getWeekly() { return weekly; } public OpeningHours setWeekly(WeeklyOpeningHours value) { this.weekly = value; return this; } } public static class CategoryTreeApiDto { public String name = null; public String slug = null; public String absoluteSlug = null; public String imageUrl = null; public String allImageUrl = null; public String iconImageUrl = null; public Integer position = null; public ArrayList children = new ArrayList(); public String getName() { return name; } public CategoryTreeApiDto setName(String value) { this.name = value; return this; } public String getSlug() { return slug; } public CategoryTreeApiDto setSlug(String value) { this.slug = value; return this; } public String getAbsoluteSlug() { return absoluteSlug; } public CategoryTreeApiDto setAbsoluteSlug(String value) { this.absoluteSlug = value; return this; } public String getImageUrl() { return imageUrl; } public CategoryTreeApiDto setImageUrl(String value) { this.imageUrl = value; return this; } public String getAllImageUrl() { return allImageUrl; } public CategoryTreeApiDto setAllImageUrl(String value) { this.allImageUrl = value; return this; } public String getIconImageUrl() { return iconImageUrl; } public CategoryTreeApiDto setIconImageUrl(String value) { this.iconImageUrl = value; return this; } public Integer getPosition() { return position; } public CategoryTreeApiDto setPosition(Integer value) { this.position = value; return this; } public ArrayList getChildren() { return children; } public CategoryTreeApiDto setChildren(ArrayList value) { this.children = value; return this; } } public static class IndividualFeatureDataApiDto { public FeatureType slug = null; public String label = null; public FeatureType getSlug() { return slug; } public IndividualFeatureDataApiDto setSlug(FeatureType value) { this.slug = value; return this; } public String getLabel() { return label; } public IndividualFeatureDataApiDto setLabel(String value) { this.label = value; return this; } } public static class BarSpecialityEsDto { public String slug = null; public String title = null; public String getSlug() { return slug; } public BarSpecialityEsDto setSlug(String value) { this.slug = value; return this; } public String getTitle() { return title; } public BarSpecialityEsDto setTitle(String value) { this.title = value; return this; } } public static class BarTypeEsDto { public String slug = null; public String title = null; public String getSlug() { return slug; } public BarTypeEsDto setSlug(String value) { this.slug = value; return this; } public String getTitle() { return title; } public BarTypeEsDto setTitle(String value) { this.title = value; return this; } } public static class PlaceSelectedBrandApiDto { public BrandApiDto brand = null; public ArrayList categoryAbsoluteSlugs = new ArrayList(); public PlaceCustomBrandApiDto placeCustomBrand = null; public BrandApiDto getBrand() { return brand; } public PlaceSelectedBrandApiDto setBrand(BrandApiDto value) { this.brand = value; return this; } public ArrayList getCategoryAbsoluteSlugs() { return categoryAbsoluteSlugs; } public PlaceSelectedBrandApiDto setCategoryAbsoluteSlugs(ArrayList value) { this.categoryAbsoluteSlugs = value; return this; } public PlaceCustomBrandApiDto getPlaceCustomBrand() { return placeCustomBrand; } public PlaceSelectedBrandApiDto setPlaceCustomBrand(PlaceCustomBrandApiDto value) { this.placeCustomBrand = value; return this; } } public static class CuisineEsDto { public String label = null; public String slug = null; public String getLabel() { return label; } public CuisineEsDto setLabel(String value) { this.label = value; return this; } public String getSlug() { return slug; } public CuisineEsDto setSlug(String value) { this.slug = value; return this; } } public static class MealTypeApiDto { public String label = null; public String slug = null; public String getLabel() { return label; } public MealTypeApiDto setLabel(String value) { this.label = value; return this; } public String getSlug() { return slug; } public MealTypeApiDto setSlug(String value) { this.slug = value; return this; } } public static class ParkingApiDto { public String label = null; public Parking slug = null; public String getLabel() { return label; } public ParkingApiDto setLabel(String value) { this.label = value; return this; } public Parking getSlug() { return slug; } public ParkingApiDto setSlug(Parking value) { this.slug = value; return this; } } public static class PaymentOptionApiDto { public String label = null; public PaymentOption slug = null; public String getLabel() { return label; } public PaymentOptionApiDto setLabel(String value) { this.label = value; return this; } public PaymentOption getSlug() { return slug; } public PaymentOptionApiDto setSlug(PaymentOption value) { this.slug = value; return this; } } public static class EatingSuitabilityApiDto { public String label = null; public String slug = null; public String getLabel() { return label; } public EatingSuitabilityApiDto setLabel(String value) { this.label = value; return this; } public String getSlug() { return slug; } public EatingSuitabilityApiDto setSlug(String value) { this.slug = value; return this; } } public static class TakeAwayApiDto { public String label = null; public String slug = null; public String getLabel() { return label; } public TakeAwayApiDto setLabel(String value) { this.label = value; return this; } public String getSlug() { return slug; } public TakeAwayApiDto setSlug(String value) { this.slug = value; return this; } } public static class WearPriceProfileEsDto { public String slug = null; public String label = null; public String getSlug() { return slug; } public WearPriceProfileEsDto setSlug(String value) { this.slug = value; return this; } public String getLabel() { return label; } public WearPriceProfileEsDto setLabel(String value) { this.label = value; return this; } } public static class MenuEsDto { public String name = null; public String url = null; public Integer position = null; public String getName() { return name; } public MenuEsDto setName(String value) { this.name = value; return this; } public String getUrl() { return url; } public MenuEsDto setUrl(String value) { this.url = value; return this; } public Integer getPosition() { return position; } public MenuEsDto setPosition(Integer value) { this.position = value; return this; } } public static class ImageUrls { public String preview = null; public String small = null; public String medium = null; public String large = null; public String getPreview() { return preview; } public ImageUrls setPreview(String value) { this.preview = value; return this; } public String getSmall() { return small; } public ImageUrls setSmall(String value) { this.small = value; return this; } public String getMedium() { return medium; } public ImageUrls setMedium(String value) { this.medium = value; return this; } public String getLarge() { return large; } public ImageUrls setLarge(String value) { this.large = value; return this; } } public static enum PlaceType { Mall, Regular; } public static class PriceMainDishApiDto { public String title = null; public PriceMainDish slug = null; public String getTitle() { return title; } public PriceMainDishApiDto setTitle(String value) { this.title = value; return this; } public PriceMainDish getSlug() { return slug; } public PriceMainDishApiDto setSlug(PriceMainDish value) { this.slug = value; return this; } } public static class MallOtherServiceApiDto { public String serviceName = null; public String floor = null; public String getServiceName() { return serviceName; } public MallOtherServiceApiDto setServiceName(String value) { this.serviceName = value; return this; } public String getFloor() { return floor; } public MallOtherServiceApiDto setFloor(String value) { this.floor = value; return this; } } public static class TimeZoneDto { public TimeSpan baseUtcOffset = null; public String daylightName = null; public String displayName = null; public String id = null; public String standardName = null; public Boolean supportsDaylightSavingTime = null; public TimeSpan getBaseUtcOffset() { return baseUtcOffset; } public TimeZoneDto setBaseUtcOffset(TimeSpan value) { this.baseUtcOffset = value; return this; } public String getDaylightName() { return daylightName; } public TimeZoneDto setDaylightName(String value) { this.daylightName = value; return this; } public String getDisplayName() { return displayName; } public TimeZoneDto setDisplayName(String value) { this.displayName = value; return this; } public String getId() { return id; } public TimeZoneDto setId(String value) { this.id = value; return this; } public String getStandardName() { return standardName; } public TimeZoneDto setStandardName(String value) { this.standardName = value; return this; } public Boolean isSupportsDaylightSavingTime() { return supportsDaylightSavingTime; } public TimeZoneDto setSupportsDaylightSavingTime(Boolean value) { this.supportsDaylightSavingTime = value; return this; } } public static class PlaceContact { public String phone = null; public String email = null; public String website = null; public String webShop = null; public String getPhone() { return phone; } public PlaceContact setPhone(String value) { this.phone = value; return this; } public String getEmail() { return email; } public PlaceContact setEmail(String value) { this.email = value; return this; } public String getWebsite() { return website; } public PlaceContact setWebsite(String value) { this.website = value; return this; } public String getWebShop() { return webShop; } public PlaceContact setWebShop(String value) { this.webShop = value; return this; } } public static class PlaceAddress { public String street = null; public String postalCode = null; public String region = null; public String countryCode = null; public String getStreet() { return street; } public PlaceAddress setStreet(String value) { this.street = value; return this; } public String getPostalCode() { return postalCode; } public PlaceAddress setPostalCode(String value) { this.postalCode = value; return this; } public String getRegion() { return region; } public PlaceAddress setRegion(String value) { this.region = value; return this; } public String getCountryCode() { return countryCode; } public PlaceAddress setCountryCode(String value) { this.countryCode = value; return this; } } public static class BrandApiDto { public String name = null; public String getName() { return name; } public BrandApiDto setName(String value) { this.name = value; return this; } } public static enum FeatureType { BarSpeciality, BarType, Cuisine, SaveFoodAndMoney, MealType, Menu, OutdoorSeating, Parking, PaymentOptions, PriceMainDish, SubCategories, SubCategoriesAndBrands, EatingSuitabilities, TakeAway, WearPriceProfile, WheelChairAccessible, Wifi, WebShop, Filtering; } public static enum CategoryFacetTreeType { Parent, Selected, Available; } public static enum DayOfWeek { Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday; } public static class WeeklyOpeningHours { public OpeningHour monday = null; public OpeningHour tuesday = null; public OpeningHour wednesday = null; public OpeningHour thursday = null; public OpeningHour friday = null; public OpeningHour saturday = null; public OpeningHour sunday = null; public OpeningHour getMonday() { return monday; } public WeeklyOpeningHours setMonday(OpeningHour value) { this.monday = value; return this; } public OpeningHour getTuesday() { return tuesday; } public WeeklyOpeningHours setTuesday(OpeningHour value) { this.tuesday = value; return this; } public OpeningHour getWednesday() { return wednesday; } public WeeklyOpeningHours setWednesday(OpeningHour value) { this.wednesday = value; return this; } public OpeningHour getThursday() { return thursday; } public WeeklyOpeningHours setThursday(OpeningHour value) { this.thursday = value; return this; } public OpeningHour getFriday() { return friday; } public WeeklyOpeningHours setFriday(OpeningHour value) { this.friday = value; return this; } public OpeningHour getSaturday() { return saturday; } public WeeklyOpeningHours setSaturday(OpeningHour value) { this.saturday = value; return this; } public OpeningHour getSunday() { return sunday; } public WeeklyOpeningHours setSunday(OpeningHour value) { this.sunday = value; return this; } } public static class PlaceCustomBrandApiDto { public String name = null; public String getName() { return name; } public PlaceCustomBrandApiDto setName(String value) { this.name = value; return this; } } public static class OpeningHour { public Integer openAtHour = null; public Integer openAtMinute = null; public Integer closeAtHour = null; public Integer closeAtMinute = null; public Integer getOpenAtHour() { return openAtHour; } public OpeningHour setOpenAtHour(Integer value) { this.openAtHour = value; return this; } public Integer getOpenAtMinute() { return openAtMinute; } public OpeningHour setOpenAtMinute(Integer value) { this.openAtMinute = value; return this; } public Integer getCloseAtHour() { return closeAtHour; } public OpeningHour setCloseAtHour(Integer value) { this.closeAtHour = value; return this; } public Integer getCloseAtMinute() { return closeAtMinute; } public OpeningHour setCloseAtMinute(Integer value) { this.closeAtMinute = value; return this; } } }