| Required role: | Business |
| GET | /place/getbootstrap |
|---|
"use strict";
export class OpeningHour {
/** @param {{openAtHour?:number,openAtMinute?:number,closeAtHour?:number,closeAtMinute?:number}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {?number} */
openAtHour;
/** @type {?number} */
openAtMinute;
/** @type {?number} */
closeAtHour;
/** @type {?number} */
closeAtMinute;
}
export class WeeklyOpeningHours {
/** @param {{monday?:OpeningHour,tuesday?:OpeningHour,wednesday?:OpeningHour,thursday?:OpeningHour,friday?:OpeningHour,saturday?:OpeningHour,sunday?:OpeningHour}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {?OpeningHour} */
monday;
/** @type {?OpeningHour} */
tuesday;
/** @type {?OpeningHour} */
wednesday;
/** @type {?OpeningHour} */
thursday;
/** @type {?OpeningHour} */
friday;
/** @type {?OpeningHour} */
saturday;
/** @type {?OpeningHour} */
sunday;
}
export class OpeningHours {
/** @param {{weekly?:WeeklyOpeningHours}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {WeeklyOpeningHours} */
weekly;
}
/** @typedef {'BarSpeciality'|'BarType'|'Cuisine'|'SaveFoodAndMoney'|'MealType'|'Menu'|'OutdoorSeating'|'Parking'|'PaymentOptions'|'PriceMainDish'|'SubCategories'|'SubCategoriesAndBrands'|'EatingSuitabilities'|'TakeAway'|'WearPriceProfile'|'WheelChairAccessible'|'Wifi'|'WebShop'|'Filtering'} */
export var FeatureType;
(function (FeatureType) {
FeatureType["BarSpeciality"] = "BarSpeciality"
FeatureType["BarType"] = "BarType"
FeatureType["Cuisine"] = "Cuisine"
FeatureType["SaveFoodAndMoney"] = "SaveFoodAndMoney"
FeatureType["MealType"] = "MealType"
FeatureType["Menu"] = "Menu"
FeatureType["OutdoorSeating"] = "OutdoorSeating"
FeatureType["Parking"] = "Parking"
FeatureType["PaymentOptions"] = "PaymentOptions"
FeatureType["PriceMainDish"] = "PriceMainDish"
FeatureType["SubCategories"] = "SubCategories"
FeatureType["SubCategoriesAndBrands"] = "SubCategoriesAndBrands"
FeatureType["EatingSuitabilities"] = "EatingSuitabilities"
FeatureType["TakeAway"] = "TakeAway"
FeatureType["WearPriceProfile"] = "WearPriceProfile"
FeatureType["WheelChairAccessible"] = "WheelChairAccessible"
FeatureType["Wifi"] = "Wifi"
FeatureType["WebShop"] = "WebShop"
FeatureType["Filtering"] = "Filtering"
})(FeatureType || (FeatureType = {}));
export class BarSpecialityDto {
/** @param {{id?:number,slug?:string,title?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {?number} */
id;
/** @type {string} */
slug;
/** @type {string} */
title;
}
export class BarTypeDto {
/** @param {{id?:number,slug?:string,title?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {?number} */
id;
/** @type {string} */
slug;
/** @type {string} */
title;
}
export class CuisineDto {
/** @param {{id?:number,label?:string,slug?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {?number} */
id;
/** @type {string} */
label;
/** @type {string} */
slug;
}
/** @typedef {'StreetParking'|'ParkingGarageNearby'} */
export var Parking;
(function (Parking) {
Parking["StreetParking"] = "StreetParking"
Parking["ParkingGarageNearby"] = "ParkingGarageNearby"
})(Parking || (Parking = {}));
/** @typedef {'Visa'|'MasterCard'|'AmericanExpress'|'Diners'|'Vipps'} */
export var PaymentOption;
(function (PaymentOption) {
PaymentOption["Visa"] = "Visa"
PaymentOption["MasterCard"] = "MasterCard"
PaymentOption["AmericanExpress"] = "AmericanExpress"
PaymentOption["Diners"] = "Diners"
PaymentOption["Vipps"] = "Vipps"
})(PaymentOption || (PaymentOption = {}));
export class EatingSuitability {
/** @param {{id?:number,label?:string,slug?:string,position?:number,createdAt?:string,updatedAt?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {?number} */
id;
/** @type {?string} */
label;
/** @type {?string} */
slug;
/** @type {?number} */
position;
/** @type {?string} */
createdAt;
/** @type {?string} */
updatedAt;
}
/** @typedef {'Mall'|'Regular'} */
export var PlaceType;
(function (PlaceType) {
PlaceType["Mall"] = "Mall"
PlaceType["Regular"] = "Regular"
})(PlaceType || (PlaceType = {}));
export class PlaceContact {
/** @param {{phone?:string,email?:string,website?:string,webShop?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {?string} */
phone;
/** @type {?string} */
email;
/** @type {?string} */
website;
/** @type {?string} */
webShop;
}
export class PlaceAddress {
/** @param {{street?:string,postalCode?:string,region?:string,countryCode?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
street;
/** @type {string} */
postalCode;
/** @type {string} */
region;
/** @type {string} */
countryCode;
}
export class TimeZoneDto {
/** @param {{baseUtcOffset?:string,daylightName?:string,displayName?:string,id?:string,standardName?:string,supportsDaylightSavingTime?:boolean}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {?string} */
baseUtcOffset;
/** @type {string} */
daylightName;
/** @type {string} */
displayName;
/** @type {string} */
id;
/** @type {string} */
standardName;
/** @type {?boolean} */
supportsDaylightSavingTime;
}
/** @typedef {'Value'|'Medium'|'High'|'FineDining'} */
export var PriceMainDish;
(function (PriceMainDish) {
PriceMainDish["Value"] = "Value"
PriceMainDish["Medium"] = "Medium"
PriceMainDish["High"] = "High"
PriceMainDish["FineDining"] = "FineDining"
})(PriceMainDish || (PriceMainDish = {}));
export class PriceMainDishDto {
/** @param {{title?:string,slug?:PriceMainDish}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
title;
/** @type {?PriceMainDish} */
slug;
}
/** @typedef {'Owner'|'Manager'|'Sales'|'Marketing'|'Other'} */
export var BusinessRole;
(function (BusinessRole) {
BusinessRole["Owner"] = "Owner"
BusinessRole["Manager"] = "Manager"
BusinessRole["Sales"] = "Sales"
BusinessRole["Marketing"] = "Marketing"
BusinessRole["Other"] = "Other"
})(BusinessRole || (BusinessRole = {}));
JavaScript GetPlaceBootstrapRequest 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.
GET /place/getbootstrap HTTP/1.1 Host: business-api.brovs.com Accept: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<GetPlaceBootstrapResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessApi.Dto">
<GetPlaceCountersResponse>
<AdMessagesDraftCount>0</AdMessagesDraftCount>
<AdMessagesRunningCount>0</AdMessagesRunningCount>
<AdMessagesUpcomingCount>0</AdMessagesUpcomingCount>
</GetPlaceCountersResponse>
<GetPlaceResponse>
<Place>
<Address xmlns:d4p1="http://schemas.datacontract.org/2004/07/Entities.Common">
<d4p1:CountryCode>String</d4p1:CountryCode>
<d4p1:PostalCode>String</d4p1:PostalCode>
<d4p1:Region>String</d4p1:Region>
<d4p1:Street>String</d4p1:Street>
</Address>
<BarSpecialities xmlns:d4p1="http://schemas.datacontract.org/2004/07/Entities.Common">
<d4p1:BarSpecialityDto>
<d4p1:Id>0</d4p1:Id>
<d4p1:Slug>String</d4p1:Slug>
<d4p1:Title>String</d4p1:Title>
</d4p1:BarSpecialityDto>
</BarSpecialities>
<BarTypes xmlns:d4p1="http://schemas.datacontract.org/2004/07/Entities.Common">
<d4p1:BarTypeDto>
<d4p1:Id>0</d4p1:Id>
<d4p1:Slug>String</d4p1:Slug>
<d4p1:Title>String</d4p1:Title>
</d4p1:BarTypeDto>
</BarTypes>
<Brands>
<PlaceSelectedBrandDto>
<Brand>
<DefinedByRootCategoryId>0</DefinedByRootCategoryId>
<Id>0</Id>
<Name>String</Name>
</Brand>
<Category>
<AbsoluteSlug>String</AbsoluteSlug>
<Id>0</Id>
<Name>String</Name>
<ParentId>0</ParentId>
<Slug>String</Slug>
</Category>
<Id>0</Id>
<PlaceCustomBrand>
<DefinedByPlaceId>0</DefinedByPlaceId>
<Id>0</Id>
<Name>String</Name>
</PlaceCustomBrand>
</PlaceSelectedBrandDto>
</Brands>
<BusinessId>0</BusinessId>
<Categories>
<CategoryTreeWithFeaturesDto>
<AbsoluteSlug>String</AbsoluteSlug>
<Children>
<CategoryTreeWithFeaturesDto>
<AbsoluteSlug>String</AbsoluteSlug>
<Children>
<CategoryTreeWithFeaturesDto>
<AbsoluteSlug>String</AbsoluteSlug>
<Children i:nil="true" />
<FeatureTypes>
<FeatureDto>
<Label>String</Label>
<Slug>BarSpeciality</Slug>
</FeatureDto>
</FeatureTypes>
<Id>0</Id>
<Name>String</Name>
<Slug>String</Slug>
</CategoryTreeWithFeaturesDto>
</Children>
<FeatureTypes>
<FeatureDto>
<Label>String</Label>
<Slug>BarSpeciality</Slug>
</FeatureDto>
</FeatureTypes>
<Id>0</Id>
<Name>String</Name>
<Slug>String</Slug>
</CategoryTreeWithFeaturesDto>
</Children>
<FeatureTypes>
<FeatureDto>
<Label>String</Label>
<Slug>BarSpeciality</Slug>
</FeatureDto>
</FeatureTypes>
<Id>0</Id>
<Name>String</Name>
<Slug>String</Slug>
</CategoryTreeWithFeaturesDto>
</Categories>
<CategoryImageUrl>String</CategoryImageUrl>
<Claimed>false</Claimed>
<Contact xmlns:d4p1="http://schemas.datacontract.org/2004/07/Entities.Common">
<d4p1:Email>String</d4p1:Email>
<d4p1:Phone>String</d4p1:Phone>
<d4p1:WebShop>String</d4p1:WebShop>
<d4p1:Website>String</d4p1:Website>
</Contact>
<CountryCode>String</CountryCode>
<Cuisines xmlns:d4p1="http://schemas.datacontract.org/2004/07/Entities.Common">
<d4p1:CuisineDto>
<d4p1:Id>0</d4p1:Id>
<d4p1:Label>String</d4p1:Label>
<d4p1:Slug>String</d4p1:Slug>
</d4p1:CuisineDto>
</Cuisines>
<CustomImageUrl>String</CustomImageUrl>
<EatingSuitabilities>
<EatingSuitabilityDto>
<Label>String</Label>
<Slug xmlns:d6p1="http://schemas.datacontract.org/2004/07/Entities.Database">
<d6p1:CreatedAt xmlns:d7p1="http://schemas.datacontract.org/2004/07/System">
<d7p1:DateTime>0001-01-01T00:00:00Z</d7p1:DateTime>
<d7p1:OffsetMinutes>0</d7p1:OffsetMinutes>
</d6p1:CreatedAt>
<d6p1:Id>0</d6p1:Id>
<d6p1:Label>String</d6p1:Label>
<d6p1:Position>0</d6p1:Position>
<d6p1:Slug>String</d6p1:Slug>
<d6p1:UpdatedAt xmlns:d7p1="http://schemas.datacontract.org/2004/07/System">
<d7p1:DateTime>0001-01-01T00:00:00Z</d7p1:DateTime>
<d7p1:OffsetMinutes>0</d7p1:OffsetMinutes>
</d6p1:UpdatedAt>
</Slug>
</EatingSuitabilityDto>
</EatingSuitabilities>
<FeatureData>
<FeatureDto>
<Label>String</Label>
<Slug>BarSpeciality</Slug>
</FeatureDto>
</FeatureData>
<Floor>String</Floor>
<Guid>00000000-0000-0000-0000-000000000000</Guid>
<Id>0</Id>
<Latitude>0</Latitude>
<LogoUrl>String</LogoUrl>
<Longitude>0</Longitude>
<Mall>
<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>
</Address>
<BusinessId>0</BusinessId>
<Claimed>false</Claimed>
<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>
</Contact>
<CountryCode>String</CountryCode>
<Floor>String</Floor>
<Guid>00000000-0000-0000-0000-000000000000</Guid>
<Id>0</Id>
<Latitude>0</Latitude>
<Longitude>0</Longitude>
<Name>String</Name>
<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>
</OpeningHours>
<OrganizationNumber>String</OrganizationNumber>
<OtherServices>
<MallOtherServiceDto>
<Floor>String</Floor>
<Id>0</Id>
<ServiceName>String</ServiceName>
</MallOtherServiceDto>
</OtherServices>
<OutdoorSeating>false</OutdoorSeating>
<Overview>String</Overview>
<PlaceType>Mall</PlaceType>
<PriceMainDish xmlns:d5p1="http://schemas.datacontract.org/2004/07/Entities.Common">
<d5p1:Slug>Value</d5p1:Slug>
<d5p1:Title>String</d5p1:Title>
</PriceMainDish>
<SaveFoodAndMoney>false</SaveFoodAndMoney>
<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>
</TimeZoneDto>
<WheelChairAccessible>false</WheelChairAccessible>
<Wifi>false</Wifi>
</Mall>
<MealTypes>
<MealTypeDto>
<Id>0</Id>
<Label>String</Label>
<Position>0</Position>
<Slug>String</Slug>
</MealTypeDto>
</MealTypes>
<Menus>
<BusinessMenuDto>
<Id>0</Id>
<Name>String</Name>
<Position>0</Position>
<Url>String</Url>
</BusinessMenuDto>
</Menus>
<Name>String</Name>
<OpeningHours xmlns:d4p1="http://schemas.datacontract.org/2004/07/Entities.Common">
<d4p1:Weekly>
<d4p1:Friday>
<d4p1:CloseAtHour>0</d4p1:CloseAtHour>
<d4p1:CloseAtMinute>0</d4p1:CloseAtMinute>
<d4p1:OpenAtHour>0</d4p1:OpenAtHour>
<d4p1:OpenAtMinute>0</d4p1:OpenAtMinute>
</d4p1:Friday>
<d4p1:Monday>
<d4p1:CloseAtHour>0</d4p1:CloseAtHour>
<d4p1:CloseAtMinute>0</d4p1:CloseAtMinute>
<d4p1:OpenAtHour>0</d4p1:OpenAtHour>
<d4p1:OpenAtMinute>0</d4p1:OpenAtMinute>
</d4p1:Monday>
<d4p1:Saturday>
<d4p1:CloseAtHour>0</d4p1:CloseAtHour>
<d4p1:CloseAtMinute>0</d4p1:CloseAtMinute>
<d4p1:OpenAtHour>0</d4p1:OpenAtHour>
<d4p1:OpenAtMinute>0</d4p1:OpenAtMinute>
</d4p1:Saturday>
<d4p1:Sunday>
<d4p1:CloseAtHour>0</d4p1:CloseAtHour>
<d4p1:CloseAtMinute>0</d4p1:CloseAtMinute>
<d4p1:OpenAtHour>0</d4p1:OpenAtHour>
<d4p1:OpenAtMinute>0</d4p1:OpenAtMinute>
</d4p1:Sunday>
<d4p1:Thursday>
<d4p1:CloseAtHour>0</d4p1:CloseAtHour>
<d4p1:CloseAtMinute>0</d4p1:CloseAtMinute>
<d4p1:OpenAtHour>0</d4p1:OpenAtHour>
<d4p1:OpenAtMinute>0</d4p1:OpenAtMinute>
</d4p1:Thursday>
<d4p1:Tuesday>
<d4p1:CloseAtHour>0</d4p1:CloseAtHour>
<d4p1:CloseAtMinute>0</d4p1:CloseAtMinute>
<d4p1:OpenAtHour>0</d4p1:OpenAtHour>
<d4p1:OpenAtMinute>0</d4p1:OpenAtMinute>
</d4p1:Tuesday>
<d4p1:Wednesday>
<d4p1:CloseAtHour>0</d4p1:CloseAtHour>
<d4p1:CloseAtMinute>0</d4p1:CloseAtMinute>
<d4p1:OpenAtHour>0</d4p1:OpenAtHour>
<d4p1:OpenAtMinute>0</d4p1:OpenAtMinute>
</d4p1:Wednesday>
</d4p1:Weekly>
</OpeningHours>
<OrganizationNumber>String</OrganizationNumber>
<OtherServices>
<MallOtherServiceDto>
<Floor>String</Floor>
<Id>0</Id>
<ServiceName>String</ServiceName>
</MallOtherServiceDto>
</OtherServices>
<OutdoorSeating>false</OutdoorSeating>
<Overview>String</Overview>
<Parking>
<ParkingDto>
<Label>String</Label>
<Slug>StreetParking</Slug>
</ParkingDto>
</Parking>
<PaymentOptions>
<PaymentOptionDto>
<Label>String</Label>
<Slug>Visa</Slug>
</PaymentOptionDto>
</PaymentOptions>
<PlaceType>Mall</PlaceType>
<Places>
<PlaceBasicDto>
<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>
</Address>
<BusinessId>0</BusinessId>
<Claimed>false</Claimed>
<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>
</Contact>
<CountryCode>String</CountryCode>
<Floor>String</Floor>
<Guid>00000000-0000-0000-0000-000000000000</Guid>
<Id>0</Id>
<Latitude>0</Latitude>
<Longitude>0</Longitude>
<Name>String</Name>
<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>
</OpeningHours>
<OrganizationNumber>String</OrganizationNumber>
<OtherServices>
<MallOtherServiceDto>
<Floor>String</Floor>
<Id>0</Id>
<ServiceName>String</ServiceName>
</MallOtherServiceDto>
</OtherServices>
<OutdoorSeating>false</OutdoorSeating>
<Overview>String</Overview>
<PlaceType>Mall</PlaceType>
<PriceMainDish xmlns:d6p1="http://schemas.datacontract.org/2004/07/Entities.Common">
<d6p1:Slug>Value</d6p1:Slug>
<d6p1:Title>String</d6p1:Title>
</PriceMainDish>
<SaveFoodAndMoney>false</SaveFoodAndMoney>
<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>
</TimeZoneDto>
<WheelChairAccessible>false</WheelChairAccessible>
<Wifi>false</Wifi>
</PlaceBasicDto>
</Places>
<PriceMainDish xmlns:d4p1="http://schemas.datacontract.org/2004/07/Entities.Common">
<d4p1:Slug>Value</d4p1:Slug>
<d4p1:Title>String</d4p1:Title>
</PriceMainDish>
<RootCategory>
<AbsoluteSlug>String</AbsoluteSlug>
<Id>0</Id>
<Name>String</Name>
<ParentId>0</ParentId>
<Slug>String</Slug>
</RootCategory>
<SaveFoodAndMoney>false</SaveFoodAndMoney>
<TakeAways>
<TakeAwayDto>
<Id>0</Id>
<Label>String</Label>
<Position>0</Position>
<Slug>String</Slug>
</TakeAwayDto>
</TakeAways>
<TimeZoneDto xmlns:d4p1="http://schemas.datacontract.org/2004/07/Entities.Common">
<d4p1:BaseUtcOffset>PT0S</d4p1:BaseUtcOffset>
<d4p1:DaylightName>String</d4p1:DaylightName>
<d4p1:DisplayName>String</d4p1:DisplayName>
<d4p1:Id>String</d4p1:Id>
<d4p1:StandardName>String</d4p1:StandardName>
<d4p1:SupportsDaylightSavingTime>false</d4p1:SupportsDaylightSavingTime>
</TimeZoneDto>
<WearPriceProfiles>
<BusinessWearPriceProfileDto>
<Id>0</Id>
<Label>String</Label>
<Slug>String</Slug>
</BusinessWearPriceProfileDto>
</WearPriceProfiles>
<WheelChairAccessible>false</WheelChairAccessible>
<Wifi>false</Wifi>
</Place>
</GetPlaceResponse>
<GetStaffUserResponse>
<StaffDto>
<BusinessId>0</BusinessId>
<BusinessName>String</BusinessName>
<BusinessRole>Owner</BusinessRole>
<Email>String</Email>
<FirstName>String</FirstName>
<Id>0</Id>
<LastActiveOn xmlns:d4p1="http://schemas.datacontract.org/2004/07/System">
<d4p1:DateTime>0001-01-01T00:00:00Z</d4p1:DateTime>
<d4p1:OffsetMinutes>0</d4p1:OffsetMinutes>
</LastActiveOn>
<LastName>String</LastName>
<MobileNumber>String</MobileNumber>
<PlaceId>0</PlaceId>
<PlaceName>String</PlaceName>
<Role>Owner</Role>
<UserId>0</UserId>
</StaffDto>
</GetStaffUserResponse>
<ThisIsTheLastOwnerAndDeleteWillUnclaimThePlace>false</ThisIsTheLastOwnerAndDeleteWillUnclaimThePlace>
</GetPlaceBootstrapResponse>