Required role: | Consumer |
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;
public class ConsumerApi
{
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 enum DayOfWeek
{
Sunday,
Monday,
Tuesday,
Wednesday,
Thursday,
Friday,
Saturday;
}
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<CategoryTreeApiDto> categories = new ArrayList<CategoryTreeApiDto>();
public ArrayList<IndividualFeatureDataApiDto> featureData = new ArrayList<IndividualFeatureDataApiDto>();
public ArrayList<BarSpecialityEsDto> barSpecialities = new ArrayList<BarSpecialityEsDto>();
public ArrayList<BarTypeEsDto> barTypes = new ArrayList<BarTypeEsDto>();
public ArrayList<PlaceSelectedBrandApiDto> brands = new ArrayList<PlaceSelectedBrandApiDto>();
public ArrayList<CuisineEsDto> cuisines = new ArrayList<CuisineEsDto>();
public ArrayList<MealTypeApiDto> mealTypes = new ArrayList<MealTypeApiDto>();
public ArrayList<ParkingApiDto> parking = new ArrayList<ParkingApiDto>();
public ArrayList<PaymentOptionApiDto> paymentOptions = new ArrayList<PaymentOptionApiDto>();
public ArrayList<EatingSuitabilityApiDto> eatingSuitabilities = new ArrayList<EatingSuitabilityApiDto>();
public ArrayList<TakeAwayApiDto> takeAways = new ArrayList<TakeAwayApiDto>();
public ArrayList<WearPriceProfileEsDto> wearPriceProfiles = new ArrayList<WearPriceProfileEsDto>();
public ArrayList<MenuEsDto> menus = new ArrayList<MenuEsDto>();
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<PlaceBasicApiDto> places = new ArrayList<PlaceBasicApiDto>();
public ArrayList<MallOtherServiceApiDto> otherServices = new ArrayList<MallOtherServiceApiDto>();
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<CategoryTreeApiDto> getCategories() { return categories; }
public PlaceApiDto setCategories(ArrayList<CategoryTreeApiDto> value) { this.categories = value; return this; }
public ArrayList<IndividualFeatureDataApiDto> getFeatureData() { return featureData; }
public PlaceApiDto setFeatureData(ArrayList<IndividualFeatureDataApiDto> value) { this.featureData = value; return this; }
public ArrayList<BarSpecialityEsDto> getBarSpecialities() { return barSpecialities; }
public PlaceApiDto setBarSpecialities(ArrayList<BarSpecialityEsDto> value) { this.barSpecialities = value; return this; }
public ArrayList<BarTypeEsDto> getBarTypes() { return barTypes; }
public PlaceApiDto setBarTypes(ArrayList<BarTypeEsDto> value) { this.barTypes = value; return this; }
public ArrayList<PlaceSelectedBrandApiDto> getBrands() { return brands; }
public PlaceApiDto setBrands(ArrayList<PlaceSelectedBrandApiDto> value) { this.brands = value; return this; }
public ArrayList<CuisineEsDto> getCuisines() { return cuisines; }
public PlaceApiDto setCuisines(ArrayList<CuisineEsDto> value) { this.cuisines = value; return this; }
public ArrayList<MealTypeApiDto> getMealTypes() { return mealTypes; }
public PlaceApiDto setMealTypes(ArrayList<MealTypeApiDto> value) { this.mealTypes = value; return this; }
public ArrayList<ParkingApiDto> getParking() { return parking; }
public PlaceApiDto setParking(ArrayList<ParkingApiDto> value) { this.parking = value; return this; }
public ArrayList<PaymentOptionApiDto> getPaymentOptions() { return paymentOptions; }
public PlaceApiDto setPaymentOptions(ArrayList<PaymentOptionApiDto> value) { this.paymentOptions = value; return this; }
public ArrayList<EatingSuitabilityApiDto> getEatingSuitabilities() { return eatingSuitabilities; }
public PlaceApiDto setEatingSuitabilities(ArrayList<EatingSuitabilityApiDto> value) { this.eatingSuitabilities = value; return this; }
public ArrayList<TakeAwayApiDto> getTakeAways() { return takeAways; }
public PlaceApiDto setTakeAways(ArrayList<TakeAwayApiDto> value) { this.takeAways = value; return this; }
public ArrayList<WearPriceProfileEsDto> getWearPriceProfiles() { return wearPriceProfiles; }
public PlaceApiDto setWearPriceProfiles(ArrayList<WearPriceProfileEsDto> value) { this.wearPriceProfiles = value; return this; }
public ArrayList<MenuEsDto> getMenus() { return menus; }
public PlaceApiDto setMenus(ArrayList<MenuEsDto> 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<PlaceBasicApiDto> getPlaces() { return places; }
public PlaceApiDto setPlaces(ArrayList<PlaceBasicApiDto> value) { this.places = value; return this; }
public ArrayList<MallOtherServiceApiDto> getOtherServices() { return otherServices; }
public PlaceApiDto setOtherServices(ArrayList<MallOtherServiceApiDto> 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 OpeningHours
{
public WeeklyOpeningHours weekly = null;
public WeeklyOpeningHours getWeekly() { return weekly; }
public OpeningHours setWeekly(WeeklyOpeningHours value) { this.weekly = value; return this; }
}
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 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; }
}
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<CategoryTreeApiDto> children = new ArrayList<CategoryTreeApiDto>();
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<CategoryTreeApiDto> getChildren() { return children; }
public CategoryTreeApiDto setChildren(ArrayList<CategoryTreeApiDto> 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 enum FeatureType
{
BarSpeciality,
BarType,
Cuisine,
SaveFoodAndMoney,
MealType,
Menu,
OutdoorSeating,
Parking,
PaymentOptions,
PriceMainDish,
SubCategories,
SubCategoriesAndBrands,
EatingSuitabilities,
TakeAway,
WearPriceProfile,
WheelChairAccessible,
Wifi,
WebShop,
Filtering;
}
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<String> categoryAbsoluteSlugs = new ArrayList<String>();
public PlaceCustomBrandApiDto placeCustomBrand = null;
public BrandApiDto getBrand() { return brand; }
public PlaceSelectedBrandApiDto setBrand(BrandApiDto value) { this.brand = value; return this; }
public ArrayList<String> getCategoryAbsoluteSlugs() { return categoryAbsoluteSlugs; }
public PlaceSelectedBrandApiDto setCategoryAbsoluteSlugs(ArrayList<String> value) { this.categoryAbsoluteSlugs = value; return this; }
public PlaceCustomBrandApiDto getPlaceCustomBrand() { return placeCustomBrand; }
public PlaceSelectedBrandApiDto setPlaceCustomBrand(PlaceCustomBrandApiDto value) { this.placeCustomBrand = 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 class PlaceCustomBrandApiDto
{
public String name = null;
public String getName() { return name; }
public PlaceCustomBrandApiDto setName(String value) { this.name = 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 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<CategoryTreeApiDto> categories = new ArrayList<CategoryTreeApiDto>();
public ImageUrls logoUrl = null;
public ImageUrls imageUrl = null;
public ArrayList<WearPriceProfileEsDto> wearPriceProfiles = new ArrayList<WearPriceProfileEsDto>();
public ArrayList<PlaceSelectedBrandApiDto> brands = new ArrayList<PlaceSelectedBrandApiDto>();
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<CategoryTreeApiDto> getCategories() { return categories; }
public PlaceBasicApiDto setCategories(ArrayList<CategoryTreeApiDto> 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<WearPriceProfileEsDto> getWearPriceProfiles() { return wearPriceProfiles; }
public PlaceBasicApiDto setWearPriceProfiles(ArrayList<WearPriceProfileEsDto> value) { this.wearPriceProfiles = value; return this; }
public ArrayList<PlaceSelectedBrandApiDto> getBrands() { return brands; }
public PlaceBasicApiDto setBrands(ArrayList<PlaceSelectedBrandApiDto> value) { this.brands = value; return this; }
public String getFloor() { return floor; }
public PlaceBasicApiDto setFloor(String value) { this.floor = value; return this; }
}
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 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 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; }
}
}
Java FindBoundedMapPlacesRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /xml/reply/FindBoundedMapPlacesRequest HTTP/1.1
Host: unstable-consumer-api.brovs.com
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<FindBoundedMapPlacesRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ConsumerApi.Dto">
<Bounds>
<ClusterZoomLevel>0</ClusterZoomLevel>
<East>0</East>
<North>0</North>
<South>0</South>
<West>0</West>
</Bounds>
<CacheVersion>0</CacheVersion>
<Filter>
<AdMessageGuid>00000000-0000-0000-0000-000000000000</AdMessageGuid>
<BarSpecialitySlugs xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:string>String</d3p1:string>
</BarSpecialitySlugs>
<BarTypeSlugs xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:string>String</d3p1:string>
</BarTypeSlugs>
<BrandNames xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:string>String</d3p1:string>
</BrandNames>
<CategoryAbsoluteSlugs xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:string>String</d3p1:string>
</CategoryAbsoluteSlugs>
<CuisineSlugs xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:string>String</d3p1:string>
</CuisineSlugs>
<EatingSuitabilitySlugs xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:string>String</d3p1:string>
</EatingSuitabilitySlugs>
<MealTypeSlugs xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:string>String</d3p1:string>
</MealTypeSlugs>
<OpenAt xmlns:d3p1="http://schemas.datacontract.org/2004/07/Entities.Common">
<d3p1:Hour>0</d3p1:Hour>
<d3p1:Minute>0</d3p1:Minute>
<d3p1:WeekDay>Sunday</d3p1:WeekDay>
</OpenAt>
<OutdoorSeating>false</OutdoorSeating>
<Parking xmlns:d3p1="http://schemas.datacontract.org/2004/07/Entities.Database">
<d3p1:Parking>StreetParking</d3p1:Parking>
</Parking>
<PaymentOptions xmlns:d3p1="http://schemas.datacontract.org/2004/07/Entities.Database">
<d3p1:PaymentOption>Visa</d3p1:PaymentOption>
</PaymentOptions>
<PlaceGuid>00000000-0000-0000-0000-000000000000</PlaceGuid>
<PriceMainDishes xmlns:d3p1="http://schemas.datacontract.org/2004/07/Entities.Database">
<d3p1:PriceMainDish>Value</d3p1:PriceMainDish>
</PriceMainDishes>
<SaveFoodAndMoney>false</SaveFoodAndMoney>
<TakeAwaySlugs xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:string>String</d3p1:string>
</TakeAwaySlugs>
<Term>String</Term>
<WearPriceProfileSlugs xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:string>String</d3p1:string>
</WearPriceProfileSlugs>
<WheelChairAccessible>false</WheelChairAccessible>
<Wifi>false</Wifi>
</Filter>
</FindBoundedMapPlacesRequest>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <FindBoundedMapPlacesResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ConsumerApi.Dto"> <AdMessageCount>0</AdMessageCount> <AdMessageSaveFoodAndMoneyCount>0</AdMessageSaveFoodAndMoneyCount> <CategoryFacetTrees> <CategoryFacetTreeDto> <AbsoluteSlug>String</AbsoluteSlug> <AllImageUrl>String</AllImageUrl> <Children> <CategoryFacetTreeDto> <AbsoluteSlug>String</AbsoluteSlug> <AllImageUrl>String</AllImageUrl> <Children> <CategoryFacetTreeDto> <AbsoluteSlug>String</AbsoluteSlug> <AllImageUrl>String</AllImageUrl> <Children i:nil="true" /> <Count>0</Count> <FeatureTypes xmlns:d8p1="http://schemas.datacontract.org/2004/07/Entities.Database"> <d8p1:FeatureType>BarSpeciality</d8p1:FeatureType> </FeatureTypes> <IconImageUrl>String</IconImageUrl> <ImageUrl>String</ImageUrl> <Name>String</Name> <Position>0</Position> <Slug>String</Slug> <Type>Parent</Type> </CategoryFacetTreeDto> </Children> <Count>0</Count> <FeatureTypes xmlns:d6p1="http://schemas.datacontract.org/2004/07/Entities.Database"> <d6p1:FeatureType>BarSpeciality</d6p1:FeatureType> </FeatureTypes> <IconImageUrl>String</IconImageUrl> <ImageUrl>String</ImageUrl> <Name>String</Name> <Position>0</Position> <Slug>String</Slug> <Type>Parent</Type> </CategoryFacetTreeDto> </Children> <Count>0</Count> <FeatureTypes xmlns:d4p1="http://schemas.datacontract.org/2004/07/Entities.Database"> <d4p1:FeatureType>BarSpeciality</d4p1:FeatureType> </FeatureTypes> <IconImageUrl>String</IconImageUrl> <ImageUrl>String</ImageUrl> <Name>String</Name> <Position>0</Position> <Slug>String</Slug> <Type>Parent</Type> </CategoryFacetTreeDto> </CategoryFacetTrees> <Clusters> <FindBoundedMapPinCluster> <Count>0</Count> <Latitude>0</Latitude> <Longitude>0</Longitude> </FindBoundedMapPinCluster> </Clusters> <PlacesWithDisplayLocation> <PlaceWithDisplayLocationDto> <CrowdedMapDisplayLocation> <Latitude>0</Latitude> <Longitude>0</Longitude> </CrowdedMapDisplayLocation> <Place xmlns:d4p1="http://schemas.datacontract.org/2004/07/Api.Dto"> <d4p1:Address xmlns:d5p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d5p1:CountryCode>String</d5p1:CountryCode> <d5p1:PostalCode>String</d5p1:PostalCode> <d5p1:Region>String</d5p1:Region> <d5p1:Street>String</d5p1:Street> </d4p1:Address> <d4p1:BarSpecialities> <d4p1:BarSpecialityEsDto> <d4p1:Slug>String</d4p1:Slug> <d4p1:Title>String</d4p1:Title> </d4p1:BarSpecialityEsDto> </d4p1:BarSpecialities> <d4p1:BarTypes> <d4p1:BarTypeEsDto> <d4p1:Slug>String</d4p1:Slug> <d4p1:Title>String</d4p1:Title> </d4p1:BarTypeEsDto> </d4p1:BarTypes> <d4p1:Brands> <d4p1:PlaceSelectedBrandApiDto> <d4p1:Brand> <d4p1:Name>String</d4p1:Name> </d4p1:Brand> <d4p1:CategoryAbsoluteSlugs xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d7p1:string>String</d7p1:string> </d4p1:CategoryAbsoluteSlugs> <d4p1:PlaceCustomBrand> <d4p1:Name>String</d4p1:Name> </d4p1:PlaceCustomBrand> </d4p1:PlaceSelectedBrandApiDto> </d4p1:Brands> <d4p1:BusinessId>0</d4p1:BusinessId> <d4p1:Categories> <d4p1:CategoryTreeApiDto> <d4p1:AbsoluteSlug>String</d4p1:AbsoluteSlug> <d4p1:AllImageUrl>String</d4p1:AllImageUrl> <d4p1:Children> <d4p1:CategoryTreeApiDto> <d4p1:AbsoluteSlug>String</d4p1:AbsoluteSlug> <d4p1:AllImageUrl>String</d4p1:AllImageUrl> <d4p1:Children> <d4p1:CategoryTreeApiDto> <d4p1:AbsoluteSlug>String</d4p1:AbsoluteSlug> <d4p1:AllImageUrl>String</d4p1:AllImageUrl> <d4p1:Children i:nil="true" /> <d4p1:IconImageUrl>String</d4p1:IconImageUrl> <d4p1:ImageUrl>String</d4p1:ImageUrl> <d4p1:Name>String</d4p1:Name> <d4p1:Position>0</d4p1:Position> <d4p1:Slug>String</d4p1:Slug> </d4p1:CategoryTreeApiDto> </d4p1:Children> <d4p1:IconImageUrl>String</d4p1:IconImageUrl> <d4p1:ImageUrl>String</d4p1:ImageUrl> <d4p1:Name>String</d4p1:Name> <d4p1:Position>0</d4p1:Position> <d4p1:Slug>String</d4p1:Slug> </d4p1:CategoryTreeApiDto> </d4p1:Children> <d4p1:IconImageUrl>String</d4p1:IconImageUrl> <d4p1:ImageUrl>String</d4p1:ImageUrl> <d4p1:Name>String</d4p1:Name> <d4p1:Position>0</d4p1:Position> <d4p1:Slug>String</d4p1:Slug> </d4p1:CategoryTreeApiDto> </d4p1:Categories> <d4p1:Claimed>false</d4p1:Claimed> <d4p1:Contact xmlns:d5p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d5p1:Email>String</d5p1:Email> <d5p1:Phone>String</d5p1:Phone> <d5p1:WebShop>String</d5p1:WebShop> <d5p1:Website>String</d5p1:Website> </d4p1:Contact> <d4p1:CountryCode>String</d4p1:CountryCode> <d4p1:Cuisines> <d4p1:CuisineEsDto> <d4p1:Label>String</d4p1:Label> <d4p1:Slug>String</d4p1:Slug> </d4p1:CuisineEsDto> </d4p1:Cuisines> <d4p1:EatingSuitabilities> <d4p1:EatingSuitabilityApiDto> <d4p1:Label>String</d4p1:Label> <d4p1:Slug>String</d4p1:Slug> </d4p1:EatingSuitabilityApiDto> </d4p1:EatingSuitabilities> <d4p1:FeatureData> <d4p1:IndividualFeatureDataApiDto> <d4p1:Label>String</d4p1:Label> <d4p1:Slug>BarSpeciality</d4p1:Slug> </d4p1:IndividualFeatureDataApiDto> </d4p1:FeatureData> <d4p1:Floor>String</d4p1:Floor> <d4p1:FollowersCount>0</d4p1:FollowersCount> <d4p1:Guid>00000000-0000-0000-0000-000000000000</d4p1:Guid> <d4p1:Id>0</d4p1:Id> <d4p1:ImageUrl xmlns:d5p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d5p1:Large>String</d5p1:Large> <d5p1:Medium>String</d5p1:Medium> <d5p1:Preview>String</d5p1:Preview> <d5p1:Small>String</d5p1:Small> </d4p1:ImageUrl> <d4p1:Latitude>0</d4p1:Latitude> <d4p1:LogoUrl xmlns:d5p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d5p1:Large>String</d5p1:Large> <d5p1:Medium>String</d5p1:Medium> <d5p1:Preview>String</d5p1:Preview> <d5p1:Small>String</d5p1:Small> </d4p1:LogoUrl> <d4p1:Longitude>0</d4p1:Longitude> <d4p1:Mall> <d4p1:Address xmlns:d6p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d6p1:CountryCode>String</d6p1:CountryCode> <d6p1:PostalCode>String</d6p1:PostalCode> <d6p1:Region>String</d6p1:Region> <d6p1:Street>String</d6p1:Street> </d4p1:Address> <d4p1:Brands> <d4p1:PlaceSelectedBrandApiDto> <d4p1:Brand> <d4p1:Name>String</d4p1:Name> </d4p1:Brand> <d4p1:CategoryAbsoluteSlugs xmlns:d8p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d8p1:string>String</d8p1:string> </d4p1:CategoryAbsoluteSlugs> <d4p1:PlaceCustomBrand> <d4p1:Name>String</d4p1:Name> </d4p1:PlaceCustomBrand> </d4p1:PlaceSelectedBrandApiDto> </d4p1:Brands> <d4p1:BusinessId>0</d4p1:BusinessId> <d4p1:Categories> <d4p1:CategoryTreeApiDto> <d4p1:AbsoluteSlug>String</d4p1:AbsoluteSlug> <d4p1:AllImageUrl>String</d4p1:AllImageUrl> <d4p1:Children> <d4p1:CategoryTreeApiDto> <d4p1:AbsoluteSlug>String</d4p1:AbsoluteSlug> <d4p1:AllImageUrl>String</d4p1:AllImageUrl> <d4p1:Children> <d4p1:CategoryTreeApiDto> <d4p1:AbsoluteSlug>String</d4p1:AbsoluteSlug> <d4p1:AllImageUrl>String</d4p1:AllImageUrl> <d4p1:Children i:nil="true" /> <d4p1:IconImageUrl>String</d4p1:IconImageUrl> <d4p1:ImageUrl>String</d4p1:ImageUrl> <d4p1:Name>String</d4p1:Name> <d4p1:Position>0</d4p1:Position> <d4p1:Slug>String</d4p1:Slug> </d4p1:CategoryTreeApiDto> </d4p1:Children> <d4p1:IconImageUrl>String</d4p1:IconImageUrl> <d4p1:ImageUrl>String</d4p1:ImageUrl> <d4p1:Name>String</d4p1:Name> <d4p1:Position>0</d4p1:Position> <d4p1:Slug>String</d4p1:Slug> </d4p1:CategoryTreeApiDto> </d4p1:Children> <d4p1:IconImageUrl>String</d4p1:IconImageUrl> <d4p1:ImageUrl>String</d4p1:ImageUrl> <d4p1:Name>String</d4p1:Name> <d4p1:Position>0</d4p1:Position> <d4p1:Slug>String</d4p1:Slug> </d4p1:CategoryTreeApiDto> </d4p1:Categories> <d4p1:Claimed>false</d4p1:Claimed> <d4p1:Contact xmlns:d6p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d6p1:Email>String</d6p1:Email> <d6p1:Phone>String</d6p1:Phone> <d6p1:WebShop>String</d6p1:WebShop> <d6p1:Website>String</d6p1:Website> </d4p1:Contact> <d4p1:CountryCode>String</d4p1:CountryCode> <d4p1:Floor>String</d4p1:Floor> <d4p1:Guid>00000000-0000-0000-0000-000000000000</d4p1:Guid> <d4p1:Id>0</d4p1:Id> <d4p1:ImageUrl xmlns:d6p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d6p1:Large>String</d6p1:Large> <d6p1:Medium>String</d6p1:Medium> <d6p1:Preview>String</d6p1:Preview> <d6p1:Small>String</d6p1:Small> </d4p1:ImageUrl> <d4p1:Latitude>0</d4p1:Latitude> <d4p1:LogoUrl xmlns:d6p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d6p1:Large>String</d6p1:Large> <d6p1:Medium>String</d6p1:Medium> <d6p1:Preview>String</d6p1:Preview> <d6p1:Small>String</d6p1:Small> </d4p1:LogoUrl> <d4p1:Longitude>0</d4p1:Longitude> <d4p1:Name>String</d4p1:Name> <d4p1:OpeningHours xmlns:d6p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d6p1:Weekly> <d6p1:Friday> <d6p1:CloseAtHour>0</d6p1:CloseAtHour> <d6p1:CloseAtMinute>0</d6p1:CloseAtMinute> <d6p1:OpenAtHour>0</d6p1:OpenAtHour> <d6p1:OpenAtMinute>0</d6p1:OpenAtMinute> </d6p1:Friday> <d6p1:Monday> <d6p1:CloseAtHour>0</d6p1:CloseAtHour> <d6p1:CloseAtMinute>0</d6p1:CloseAtMinute> <d6p1:OpenAtHour>0</d6p1:OpenAtHour> <d6p1:OpenAtMinute>0</d6p1:OpenAtMinute> </d6p1:Monday> <d6p1:Saturday> <d6p1:CloseAtHour>0</d6p1:CloseAtHour> <d6p1:CloseAtMinute>0</d6p1:CloseAtMinute> <d6p1:OpenAtHour>0</d6p1:OpenAtHour> <d6p1:OpenAtMinute>0</d6p1:OpenAtMinute> </d6p1:Saturday> <d6p1:Sunday> <d6p1:CloseAtHour>0</d6p1:CloseAtHour> <d6p1:CloseAtMinute>0</d6p1:CloseAtMinute> <d6p1:OpenAtHour>0</d6p1:OpenAtHour> <d6p1:OpenAtMinute>0</d6p1:OpenAtMinute> </d6p1:Sunday> <d6p1:Thursday> <d6p1:CloseAtHour>0</d6p1:CloseAtHour> <d6p1:CloseAtMinute>0</d6p1:CloseAtMinute> <d6p1:OpenAtHour>0</d6p1:OpenAtHour> <d6p1:OpenAtMinute>0</d6p1:OpenAtMinute> </d6p1:Thursday> <d6p1:Tuesday> <d6p1:CloseAtHour>0</d6p1:CloseAtHour> <d6p1:CloseAtMinute>0</d6p1:CloseAtMinute> <d6p1:OpenAtHour>0</d6p1:OpenAtHour> <d6p1:OpenAtMinute>0</d6p1:OpenAtMinute> </d6p1:Tuesday> <d6p1:Wednesday> <d6p1:CloseAtHour>0</d6p1:CloseAtHour> <d6p1:CloseAtMinute>0</d6p1:CloseAtMinute> <d6p1:OpenAtHour>0</d6p1:OpenAtHour> <d6p1:OpenAtMinute>0</d6p1:OpenAtMinute> </d6p1:Wednesday> </d6p1:Weekly> </d4p1:OpeningHours> <d4p1:OrganizationNumber>String</d4p1:OrganizationNumber> <d4p1:OutdoorSeating>false</d4p1:OutdoorSeating> <d4p1:Overview>String</d4p1:Overview> <d4p1:PlaceType>Mall</d4p1:PlaceType> <d4p1:PriceMainDish> <d4p1:Slug>Value</d4p1:Slug> <d4p1:Title>String</d4p1:Title> </d4p1:PriceMainDish> <d4p1:SaveFoodAndMoney>false</d4p1:SaveFoodAndMoney> <d4p1:TimeZoneDto xmlns:d6p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d6p1:BaseUtcOffset>PT0S</d6p1:BaseUtcOffset> <d6p1:DaylightName>String</d6p1:DaylightName> <d6p1:DisplayName>String</d6p1:DisplayName> <d6p1:Id>String</d6p1:Id> <d6p1:StandardName>String</d6p1:StandardName> <d6p1:SupportsDaylightSavingTime>false</d6p1:SupportsDaylightSavingTime> </d4p1:TimeZoneDto> <d4p1:WearPriceProfiles> <d4p1:WearPriceProfileEsDto> <d4p1:Label>String</d4p1:Label> <d4p1:Slug>String</d4p1:Slug> </d4p1:WearPriceProfileEsDto> </d4p1:WearPriceProfiles> <d4p1:WheelchairAccessible>false</d4p1:WheelchairAccessible> <d4p1:Wifi>false</d4p1:Wifi> </d4p1:Mall> <d4p1:MealTypes> <d4p1:MealTypeApiDto> <d4p1:Label>String</d4p1:Label> <d4p1:Slug>String</d4p1:Slug> </d4p1:MealTypeApiDto> </d4p1:MealTypes> <d4p1:Menus> <d4p1:MenuEsDto> <d4p1:Name>String</d4p1:Name> <d4p1:Position>0</d4p1:Position> <d4p1:Url>String</d4p1:Url> </d4p1:MenuEsDto> </d4p1:Menus> <d4p1:Name>String</d4p1:Name> <d4p1:OpeningHours xmlns:d5p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d5p1:Weekly> <d5p1:Friday> <d5p1:CloseAtHour>0</d5p1:CloseAtHour> <d5p1:CloseAtMinute>0</d5p1:CloseAtMinute> <d5p1:OpenAtHour>0</d5p1:OpenAtHour> <d5p1:OpenAtMinute>0</d5p1:OpenAtMinute> </d5p1:Friday> <d5p1:Monday> <d5p1:CloseAtHour>0</d5p1:CloseAtHour> <d5p1:CloseAtMinute>0</d5p1:CloseAtMinute> <d5p1:OpenAtHour>0</d5p1:OpenAtHour> <d5p1:OpenAtMinute>0</d5p1:OpenAtMinute> </d5p1:Monday> <d5p1:Saturday> <d5p1:CloseAtHour>0</d5p1:CloseAtHour> <d5p1:CloseAtMinute>0</d5p1:CloseAtMinute> <d5p1:OpenAtHour>0</d5p1:OpenAtHour> <d5p1:OpenAtMinute>0</d5p1:OpenAtMinute> </d5p1:Saturday> <d5p1:Sunday> <d5p1:CloseAtHour>0</d5p1:CloseAtHour> <d5p1:CloseAtMinute>0</d5p1:CloseAtMinute> <d5p1:OpenAtHour>0</d5p1:OpenAtHour> <d5p1:OpenAtMinute>0</d5p1:OpenAtMinute> </d5p1:Sunday> <d5p1:Thursday> <d5p1:CloseAtHour>0</d5p1:CloseAtHour> <d5p1:CloseAtMinute>0</d5p1:CloseAtMinute> <d5p1:OpenAtHour>0</d5p1:OpenAtHour> <d5p1:OpenAtMinute>0</d5p1:OpenAtMinute> </d5p1:Thursday> <d5p1:Tuesday> <d5p1:CloseAtHour>0</d5p1:CloseAtHour> <d5p1:CloseAtMinute>0</d5p1:CloseAtMinute> <d5p1:OpenAtHour>0</d5p1:OpenAtHour> <d5p1:OpenAtMinute>0</d5p1:OpenAtMinute> </d5p1:Tuesday> <d5p1:Wednesday> <d5p1:CloseAtHour>0</d5p1:CloseAtHour> <d5p1:CloseAtMinute>0</d5p1:CloseAtMinute> <d5p1:OpenAtHour>0</d5p1:OpenAtHour> <d5p1:OpenAtMinute>0</d5p1:OpenAtMinute> </d5p1:Wednesday> </d5p1:Weekly> </d4p1:OpeningHours> <d4p1:OrganizationNumber>String</d4p1:OrganizationNumber> <d4p1:OtherServices> <d4p1:MallOtherServiceApiDto> <d4p1:Floor>String</d4p1:Floor> <d4p1:ServiceName>String</d4p1:ServiceName> </d4p1:MallOtherServiceApiDto> </d4p1:OtherServices> <d4p1:OutdoorSeating>false</d4p1:OutdoorSeating> <d4p1:Overview>String</d4p1:Overview> <d4p1:Parking> <d4p1:ParkingApiDto> <d4p1:Label>String</d4p1:Label> <d4p1:Slug>StreetParking</d4p1:Slug> </d4p1:ParkingApiDto> </d4p1:Parking> <d4p1:PaymentOptions> <d4p1:PaymentOptionApiDto> <d4p1:Label>String</d4p1:Label> <d4p1:Slug>Visa</d4p1:Slug> </d4p1:PaymentOptionApiDto> </d4p1:PaymentOptions> <d4p1:PlaceState>String</d4p1:PlaceState> <d4p1:PlaceType>Mall</d4p1:PlaceType> <d4p1:Places> <d4p1:PlaceBasicApiDto> <d4p1:Address xmlns:d7p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d7p1:CountryCode>String</d7p1:CountryCode> <d7p1:PostalCode>String</d7p1:PostalCode> <d7p1:Region>String</d7p1:Region> <d7p1:Street>String</d7p1:Street> </d4p1:Address> <d4p1:Brands> <d4p1:PlaceSelectedBrandApiDto> <d4p1:Brand> <d4p1:Name>String</d4p1:Name> </d4p1:Brand> <d4p1:CategoryAbsoluteSlugs xmlns:d9p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d9p1:string>String</d9p1:string> </d4p1:CategoryAbsoluteSlugs> <d4p1:PlaceCustomBrand> <d4p1:Name>String</d4p1:Name> </d4p1:PlaceCustomBrand> </d4p1:PlaceSelectedBrandApiDto> </d4p1:Brands> <d4p1:BusinessId>0</d4p1:BusinessId> <d4p1:Categories> <d4p1:CategoryTreeApiDto> <d4p1:AbsoluteSlug>String</d4p1:AbsoluteSlug> <d4p1:AllImageUrl>String</d4p1:AllImageUrl> <d4p1:Children> <d4p1:CategoryTreeApiDto> <d4p1:AbsoluteSlug>String</d4p1:AbsoluteSlug> <d4p1:AllImageUrl>String</d4p1:AllImageUrl> <d4p1:Children> <d4p1:CategoryTreeApiDto> <d4p1:AbsoluteSlug>String</d4p1:AbsoluteSlug> <d4p1:AllImageUrl>String</d4p1:AllImageUrl> <d4p1:Children i:nil="true" /> <d4p1:IconImageUrl>String</d4p1:IconImageUrl> <d4p1:ImageUrl>String</d4p1:ImageUrl> <d4p1:Name>String</d4p1:Name> <d4p1:Position>0</d4p1:Position> <d4p1:Slug>String</d4p1:Slug> </d4p1:CategoryTreeApiDto> </d4p1:Children> <d4p1:IconImageUrl>String</d4p1:IconImageUrl> <d4p1:ImageUrl>String</d4p1:ImageUrl> <d4p1:Name>String</d4p1:Name> <d4p1:Position>0</d4p1:Position> <d4p1:Slug>String</d4p1:Slug> </d4p1:CategoryTreeApiDto> </d4p1:Children> <d4p1:IconImageUrl>String</d4p1:IconImageUrl> <d4p1:ImageUrl>String</d4p1:ImageUrl> <d4p1:Name>String</d4p1:Name> <d4p1:Position>0</d4p1:Position> <d4p1:Slug>String</d4p1:Slug> </d4p1:CategoryTreeApiDto> </d4p1:Categories> <d4p1:Claimed>false</d4p1:Claimed> <d4p1:Contact xmlns:d7p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d7p1:Email>String</d7p1:Email> <d7p1:Phone>String</d7p1:Phone> <d7p1:WebShop>String</d7p1:WebShop> <d7p1:Website>String</d7p1:Website> </d4p1:Contact> <d4p1:CountryCode>String</d4p1:CountryCode> <d4p1:Floor>String</d4p1:Floor> <d4p1:Guid>00000000-0000-0000-0000-000000000000</d4p1:Guid> <d4p1:Id>0</d4p1:Id> <d4p1:ImageUrl xmlns:d7p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d7p1:Large>String</d7p1:Large> <d7p1:Medium>String</d7p1:Medium> <d7p1:Preview>String</d7p1:Preview> <d7p1:Small>String</d7p1:Small> </d4p1:ImageUrl> <d4p1:Latitude>0</d4p1:Latitude> <d4p1:LogoUrl xmlns:d7p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d7p1:Large>String</d7p1:Large> <d7p1:Medium>String</d7p1:Medium> <d7p1:Preview>String</d7p1:Preview> <d7p1:Small>String</d7p1:Small> </d4p1:LogoUrl> <d4p1:Longitude>0</d4p1:Longitude> <d4p1:Name>String</d4p1:Name> <d4p1:OpeningHours xmlns:d7p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d7p1:Weekly> <d7p1:Friday> <d7p1:CloseAtHour>0</d7p1:CloseAtHour> <d7p1:CloseAtMinute>0</d7p1:CloseAtMinute> <d7p1:OpenAtHour>0</d7p1:OpenAtHour> <d7p1:OpenAtMinute>0</d7p1:OpenAtMinute> </d7p1:Friday> <d7p1:Monday> <d7p1:CloseAtHour>0</d7p1:CloseAtHour> <d7p1:CloseAtMinute>0</d7p1:CloseAtMinute> <d7p1:OpenAtHour>0</d7p1:OpenAtHour> <d7p1:OpenAtMinute>0</d7p1:OpenAtMinute> </d7p1:Monday> <d7p1:Saturday> <d7p1:CloseAtHour>0</d7p1:CloseAtHour> <d7p1:CloseAtMinute>0</d7p1:CloseAtMinute> <d7p1:OpenAtHour>0</d7p1:OpenAtHour> <d7p1:OpenAtMinute>0</d7p1:OpenAtMinute> </d7p1:Saturday> <d7p1:Sunday> <d7p1:CloseAtHour>0</d7p1:CloseAtHour> <d7p1:CloseAtMinute>0</d7p1:CloseAtMinute> <d7p1:OpenAtHour>0</d7p1:OpenAtHour> <d7p1:OpenAtMinute>0</d7p1:OpenAtMinute> </d7p1:Sunday> <d7p1:Thursday> <d7p1:CloseAtHour>0</d7p1:CloseAtHour> <d7p1:CloseAtMinute>0</d7p1:CloseAtMinute> <d7p1:OpenAtHour>0</d7p1:OpenAtHour> <d7p1:OpenAtMinute>0</d7p1:OpenAtMinute> </d7p1:Thursday> <d7p1:Tuesday> <d7p1:CloseAtHour>0</d7p1:CloseAtHour> <d7p1:CloseAtMinute>0</d7p1:CloseAtMinute> <d7p1:OpenAtHour>0</d7p1:OpenAtHour> <d7p1:OpenAtMinute>0</d7p1:OpenAtMinute> </d7p1:Tuesday> <d7p1:Wednesday> <d7p1:CloseAtHour>0</d7p1:CloseAtHour> <d7p1:CloseAtMinute>0</d7p1:CloseAtMinute> <d7p1:OpenAtHour>0</d7p1:OpenAtHour> <d7p1:OpenAtMinute>0</d7p1:OpenAtMinute> </d7p1:Wednesday> </d7p1:Weekly> </d4p1:OpeningHours> <d4p1:OrganizationNumber>String</d4p1:OrganizationNumber> <d4p1:OutdoorSeating>false</d4p1:OutdoorSeating> <d4p1:Overview>String</d4p1:Overview> <d4p1:PlaceType>Mall</d4p1:PlaceType> <d4p1:PriceMainDish> <d4p1:Slug>Value</d4p1:Slug> <d4p1:Title>String</d4p1:Title> </d4p1:PriceMainDish> <d4p1:SaveFoodAndMoney>false</d4p1:SaveFoodAndMoney> <d4p1:TimeZoneDto xmlns:d7p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d7p1:BaseUtcOffset>PT0S</d7p1:BaseUtcOffset> <d7p1:DaylightName>String</d7p1:DaylightName> <d7p1:DisplayName>String</d7p1:DisplayName> <d7p1:Id>String</d7p1:Id> <d7p1:StandardName>String</d7p1:StandardName> <d7p1:SupportsDaylightSavingTime>false</d7p1:SupportsDaylightSavingTime> </d4p1:TimeZoneDto> <d4p1:WearPriceProfiles> <d4p1:WearPriceProfileEsDto> <d4p1:Label>String</d4p1:Label> <d4p1:Slug>String</d4p1:Slug> </d4p1:WearPriceProfileEsDto> </d4p1:WearPriceProfiles> <d4p1:WheelchairAccessible>false</d4p1:WheelchairAccessible> <d4p1:Wifi>false</d4p1:Wifi> </d4p1:PlaceBasicApiDto> </d4p1:Places> <d4p1:PriceMainDish> <d4p1:Slug>Value</d4p1:Slug> <d4p1:Title>String</d4p1:Title> </d4p1:PriceMainDish> <d4p1:SaveFoodAndMoney>false</d4p1:SaveFoodAndMoney> <d4p1:TakeAways> <d4p1:TakeAwayApiDto> <d4p1:Label>String</d4p1:Label> <d4p1:Slug>String</d4p1:Slug> </d4p1:TakeAwayApiDto> </d4p1:TakeAways> <d4p1:TimeZoneDto xmlns:d5p1="http://schemas.datacontract.org/2004/07/Entities.Common"> <d5p1:BaseUtcOffset>PT0S</d5p1:BaseUtcOffset> <d5p1:DaylightName>String</d5p1:DaylightName> <d5p1:DisplayName>String</d5p1:DisplayName> <d5p1:Id>String</d5p1:Id> <d5p1:StandardName>String</d5p1:StandardName> <d5p1:SupportsDaylightSavingTime>false</d5p1:SupportsDaylightSavingTime> </d4p1:TimeZoneDto> <d4p1:WearPriceProfiles> <d4p1:WearPriceProfileEsDto> <d4p1:Label>String</d4p1:Label> <d4p1:Slug>String</d4p1:Slug> </d4p1:WearPriceProfileEsDto> </d4p1:WearPriceProfiles> <d4p1:WheelchairAccessible>false</d4p1:WheelchairAccessible> <d4p1:Wifi>false</d4p1:Wifi> </Place> </PlaceWithDisplayLocationDto> </PlacesWithDisplayLocation> </FindBoundedMapPlacesResponse>