| Required role: | Business |
| GET | /place/get |
|---|
library BusinessApi;
import 'package:servicestack/servicestack.dart';
class OpeningHour implements IConvertible
{
int? openAtHour;
int? openAtMinute;
int? closeAtHour;
int? closeAtMinute;
OpeningHour({this.openAtHour,this.openAtMinute,this.closeAtHour,this.closeAtMinute});
OpeningHour.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
openAtHour = json['openAtHour'];
openAtMinute = json['openAtMinute'];
closeAtHour = json['closeAtHour'];
closeAtMinute = json['closeAtMinute'];
return this;
}
Map<String, dynamic> toJson() => {
'openAtHour': openAtHour,
'openAtMinute': openAtMinute,
'closeAtHour': closeAtHour,
'closeAtMinute': closeAtMinute
};
getTypeName() => "OpeningHour";
TypeContext? context = _ctx;
}
class WeeklyOpeningHours implements IConvertible
{
OpeningHour? monday;
OpeningHour? tuesday;
OpeningHour? wednesday;
OpeningHour? thursday;
OpeningHour? friday;
OpeningHour? saturday;
OpeningHour? sunday;
WeeklyOpeningHours({this.monday,this.tuesday,this.wednesday,this.thursday,this.friday,this.saturday,this.sunday});
WeeklyOpeningHours.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
monday = JsonConverters.fromJson(json['monday'],'OpeningHour',context!);
tuesday = JsonConverters.fromJson(json['tuesday'],'OpeningHour',context!);
wednesday = JsonConverters.fromJson(json['wednesday'],'OpeningHour',context!);
thursday = JsonConverters.fromJson(json['thursday'],'OpeningHour',context!);
friday = JsonConverters.fromJson(json['friday'],'OpeningHour',context!);
saturday = JsonConverters.fromJson(json['saturday'],'OpeningHour',context!);
sunday = JsonConverters.fromJson(json['sunday'],'OpeningHour',context!);
return this;
}
Map<String, dynamic> toJson() => {
'monday': JsonConverters.toJson(monday,'OpeningHour',context!),
'tuesday': JsonConverters.toJson(tuesday,'OpeningHour',context!),
'wednesday': JsonConverters.toJson(wednesday,'OpeningHour',context!),
'thursday': JsonConverters.toJson(thursday,'OpeningHour',context!),
'friday': JsonConverters.toJson(friday,'OpeningHour',context!),
'saturday': JsonConverters.toJson(saturday,'OpeningHour',context!),
'sunday': JsonConverters.toJson(sunday,'OpeningHour',context!)
};
getTypeName() => "WeeklyOpeningHours";
TypeContext? context = _ctx;
}
class OpeningHours implements IConvertible
{
WeeklyOpeningHours? weekly;
OpeningHours({this.weekly});
OpeningHours.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
weekly = JsonConverters.fromJson(json['weekly'],'WeeklyOpeningHours',context!);
return this;
}
Map<String, dynamic> toJson() => {
'weekly': JsonConverters.toJson(weekly,'WeeklyOpeningHours',context!)
};
getTypeName() => "OpeningHours";
TypeContext? context = _ctx;
}
enum FeatureType
{
BarSpeciality,
BarType,
Cuisine,
SaveFoodAndMoney,
MealType,
Menu,
OutdoorSeating,
Parking,
PaymentOptions,
PriceMainDish,
SubCategories,
SubCategoriesAndBrands,
EatingSuitabilities,
TakeAway,
WearPriceProfile,
WheelChairAccessible,
Wifi,
WebShop,
Filtering,
}
class BarSpecialityDto implements IConvertible
{
int? id;
String? slug;
String? title;
BarSpecialityDto({this.id,this.slug,this.title});
BarSpecialityDto.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
id = json['id'];
slug = json['slug'];
title = json['title'];
return this;
}
Map<String, dynamic> toJson() => {
'id': id,
'slug': slug,
'title': title
};
getTypeName() => "BarSpecialityDto";
TypeContext? context = _ctx;
}
class BarTypeDto implements IConvertible
{
int? id;
String? slug;
String? title;
BarTypeDto({this.id,this.slug,this.title});
BarTypeDto.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
id = json['id'];
slug = json['slug'];
title = json['title'];
return this;
}
Map<String, dynamic> toJson() => {
'id': id,
'slug': slug,
'title': title
};
getTypeName() => "BarTypeDto";
TypeContext? context = _ctx;
}
class CuisineDto implements IConvertible
{
int? id;
String? label;
String? slug;
CuisineDto({this.id,this.label,this.slug});
CuisineDto.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
id = json['id'];
label = json['label'];
slug = json['slug'];
return this;
}
Map<String, dynamic> toJson() => {
'id': id,
'label': label,
'slug': slug
};
getTypeName() => "CuisineDto";
TypeContext? context = _ctx;
}
enum Parking
{
StreetParking,
ParkingGarageNearby,
}
enum PaymentOption
{
Visa,
MasterCard,
AmericanExpress,
Diners,
Vipps,
}
class EatingSuitability implements IAudit, IConvertible
{
int? id;
String? label;
String? slug;
int? position;
DateTime? createdAt;
DateTime? updatedAt;
EatingSuitability({this.id,this.label,this.slug,this.position,this.createdAt,this.updatedAt});
EatingSuitability.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
id = json['id'];
label = json['label'];
slug = json['slug'];
position = json['position'];
createdAt = JsonConverters.fromJson(json['createdAt'],'DateTime',context!);
updatedAt = JsonConverters.fromJson(json['updatedAt'],'DateTime',context!);
return this;
}
Map<String, dynamic> toJson() => {
'id': id,
'label': label,
'slug': slug,
'position': position,
'createdAt': JsonConverters.toJson(createdAt,'DateTime',context!),
'updatedAt': JsonConverters.toJson(updatedAt,'DateTime',context!)
};
getTypeName() => "EatingSuitability";
TypeContext? context = _ctx;
}
enum PlaceType
{
Mall,
Regular,
}
class PlaceContact implements IConvertible
{
String? phone;
String? email;
String? website;
String? webShop;
PlaceContact({this.phone,this.email,this.website,this.webShop});
PlaceContact.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
phone = json['phone'];
email = json['email'];
website = json['website'];
webShop = json['webShop'];
return this;
}
Map<String, dynamic> toJson() => {
'phone': phone,
'email': email,
'website': website,
'webShop': webShop
};
getTypeName() => "PlaceContact";
TypeContext? context = _ctx;
}
class PlaceAddress implements IConvertible
{
String? street;
String? postalCode;
String? region;
String? countryCode;
PlaceAddress({this.street,this.postalCode,this.region,this.countryCode});
PlaceAddress.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
street = json['street'];
postalCode = json['postalCode'];
region = json['region'];
countryCode = json['countryCode'];
return this;
}
Map<String, dynamic> toJson() => {
'street': street,
'postalCode': postalCode,
'region': region,
'countryCode': countryCode
};
getTypeName() => "PlaceAddress";
TypeContext? context = _ctx;
}
class TimeZoneDto implements IConvertible
{
Duration? baseUtcOffset;
String? daylightName;
String? displayName;
String? id;
String? standardName;
bool? supportsDaylightSavingTime;
TimeZoneDto({this.baseUtcOffset,this.daylightName,this.displayName,this.id,this.standardName,this.supportsDaylightSavingTime});
TimeZoneDto.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
baseUtcOffset = JsonConverters.fromJson(json['baseUtcOffset'],'Duration',context!);
daylightName = json['daylightName'];
displayName = json['displayName'];
id = json['id'];
standardName = json['standardName'];
supportsDaylightSavingTime = json['supportsDaylightSavingTime'];
return this;
}
Map<String, dynamic> toJson() => {
'baseUtcOffset': JsonConverters.toJson(baseUtcOffset,'Duration',context!),
'daylightName': daylightName,
'displayName': displayName,
'id': id,
'standardName': standardName,
'supportsDaylightSavingTime': supportsDaylightSavingTime
};
getTypeName() => "TimeZoneDto";
TypeContext? context = _ctx;
}
enum PriceMainDish
{
Value,
Medium,
High,
FineDining,
}
class PriceMainDishDto implements IConvertible
{
String? title;
PriceMainDish? slug;
PriceMainDishDto({this.title,this.slug});
PriceMainDishDto.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
title = json['title'];
slug = JsonConverters.fromJson(json['slug'],'PriceMainDish',context!);
return this;
}
Map<String, dynamic> toJson() => {
'title': title,
'slug': JsonConverters.toJson(slug,'PriceMainDish',context!)
};
getTypeName() => "PriceMainDishDto";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'BusinessApi', types: <String, TypeInfo> {
'OpeningHour': TypeInfo(TypeOf.Class, create:() => OpeningHour()),
'WeeklyOpeningHours': TypeInfo(TypeOf.Class, create:() => WeeklyOpeningHours()),
'OpeningHours': TypeInfo(TypeOf.Class, create:() => OpeningHours()),
'FeatureType': TypeInfo(TypeOf.Enum, enumValues:FeatureType.values),
'BarSpecialityDto': TypeInfo(TypeOf.Class, create:() => BarSpecialityDto()),
'BarTypeDto': TypeInfo(TypeOf.Class, create:() => BarTypeDto()),
'CuisineDto': TypeInfo(TypeOf.Class, create:() => CuisineDto()),
'Parking': TypeInfo(TypeOf.Enum, enumValues:Parking.values),
'PaymentOption': TypeInfo(TypeOf.Enum, enumValues:PaymentOption.values),
'EatingSuitability': TypeInfo(TypeOf.Class, create:() => EatingSuitability()),
'PlaceType': TypeInfo(TypeOf.Enum, enumValues:PlaceType.values),
'PlaceContact': TypeInfo(TypeOf.Class, create:() => PlaceContact()),
'PlaceAddress': TypeInfo(TypeOf.Class, create:() => PlaceAddress()),
'TimeZoneDto': TypeInfo(TypeOf.Class, create:() => TimeZoneDto()),
'PriceMainDish': TypeInfo(TypeOf.Enum, enumValues:PriceMainDish.values),
'PriceMainDishDto': TypeInfo(TypeOf.Class, create:() => PriceMainDishDto()),
});
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/get HTTP/1.1 Host: business-api.brovs.com Accept: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<GetPlaceResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessApi.Dto">
<Place>
<Address xmlns:d3p1="http://schemas.datacontract.org/2004/07/Entities.Common">
<d3p1:CountryCode>String</d3p1:CountryCode>
<d3p1:PostalCode>String</d3p1:PostalCode>
<d3p1:Region>String</d3p1:Region>
<d3p1:Street>String</d3p1:Street>
</Address>
<BarSpecialities xmlns:d3p1="http://schemas.datacontract.org/2004/07/Entities.Common">
<d3p1:BarSpecialityDto>
<d3p1:Id>0</d3p1:Id>
<d3p1:Slug>String</d3p1:Slug>
<d3p1:Title>String</d3p1:Title>
</d3p1:BarSpecialityDto>
</BarSpecialities>
<BarTypes xmlns:d3p1="http://schemas.datacontract.org/2004/07/Entities.Common">
<d3p1:BarTypeDto>
<d3p1:Id>0</d3p1:Id>
<d3p1:Slug>String</d3p1:Slug>
<d3p1:Title>String</d3p1:Title>
</d3p1: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:d3p1="http://schemas.datacontract.org/2004/07/Entities.Common">
<d3p1:Email>String</d3p1:Email>
<d3p1:Phone>String</d3p1:Phone>
<d3p1:WebShop>String</d3p1:WebShop>
<d3p1:Website>String</d3p1:Website>
</Contact>
<CountryCode>String</CountryCode>
<Cuisines xmlns:d3p1="http://schemas.datacontract.org/2004/07/Entities.Common">
<d3p1:CuisineDto>
<d3p1:Id>0</d3p1:Id>
<d3p1:Label>String</d3p1:Label>
<d3p1:Slug>String</d3p1:Slug>
</d3p1:CuisineDto>
</Cuisines>
<CustomImageUrl>String</CustomImageUrl>
<EatingSuitabilities>
<EatingSuitabilityDto>
<Label>String</Label>
<Slug xmlns:d5p1="http://schemas.datacontract.org/2004/07/Entities.Database">
<d5p1:CreatedAt xmlns:d6p1="http://schemas.datacontract.org/2004/07/System">
<d6p1:DateTime>0001-01-01T00:00:00Z</d6p1:DateTime>
<d6p1:OffsetMinutes>0</d6p1:OffsetMinutes>
</d5p1:CreatedAt>
<d5p1:Id>0</d5p1:Id>
<d5p1:Label>String</d5p1:Label>
<d5p1:Position>0</d5p1:Position>
<d5p1:Slug>String</d5p1:Slug>
<d5p1:UpdatedAt xmlns:d6p1="http://schemas.datacontract.org/2004/07/System">
<d6p1:DateTime>0001-01-01T00:00:00Z</d6p1:DateTime>
<d6p1:OffsetMinutes>0</d6p1:OffsetMinutes>
</d5p1: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: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>
<BusinessId>0</BusinessId>
<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>
<Floor>String</Floor>
<Guid>00000000-0000-0000-0000-000000000000</Guid>
<Id>0</Id>
<Latitude>0</Latitude>
<Longitude>0</Longitude>
<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>
<PlaceType>Mall</PlaceType>
<PriceMainDish xmlns:d4p1="http://schemas.datacontract.org/2004/07/Entities.Common">
<d4p1:Slug>Value</d4p1:Slug>
<d4p1:Title>String</d4p1:Title>
</PriceMainDish>
<SaveFoodAndMoney>false</SaveFoodAndMoney>
<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>
<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:d3p1="http://schemas.datacontract.org/2004/07/Entities.Common">
<d3p1:Weekly>
<d3p1:Friday>
<d3p1:CloseAtHour>0</d3p1:CloseAtHour>
<d3p1:CloseAtMinute>0</d3p1:CloseAtMinute>
<d3p1:OpenAtHour>0</d3p1:OpenAtHour>
<d3p1:OpenAtMinute>0</d3p1:OpenAtMinute>
</d3p1:Friday>
<d3p1:Monday>
<d3p1:CloseAtHour>0</d3p1:CloseAtHour>
<d3p1:CloseAtMinute>0</d3p1:CloseAtMinute>
<d3p1:OpenAtHour>0</d3p1:OpenAtHour>
<d3p1:OpenAtMinute>0</d3p1:OpenAtMinute>
</d3p1:Monday>
<d3p1:Saturday>
<d3p1:CloseAtHour>0</d3p1:CloseAtHour>
<d3p1:CloseAtMinute>0</d3p1:CloseAtMinute>
<d3p1:OpenAtHour>0</d3p1:OpenAtHour>
<d3p1:OpenAtMinute>0</d3p1:OpenAtMinute>
</d3p1:Saturday>
<d3p1:Sunday>
<d3p1:CloseAtHour>0</d3p1:CloseAtHour>
<d3p1:CloseAtMinute>0</d3p1:CloseAtMinute>
<d3p1:OpenAtHour>0</d3p1:OpenAtHour>
<d3p1:OpenAtMinute>0</d3p1:OpenAtMinute>
</d3p1:Sunday>
<d3p1:Thursday>
<d3p1:CloseAtHour>0</d3p1:CloseAtHour>
<d3p1:CloseAtMinute>0</d3p1:CloseAtMinute>
<d3p1:OpenAtHour>0</d3p1:OpenAtHour>
<d3p1:OpenAtMinute>0</d3p1:OpenAtMinute>
</d3p1:Thursday>
<d3p1:Tuesday>
<d3p1:CloseAtHour>0</d3p1:CloseAtHour>
<d3p1:CloseAtMinute>0</d3p1:CloseAtMinute>
<d3p1:OpenAtHour>0</d3p1:OpenAtHour>
<d3p1:OpenAtMinute>0</d3p1:OpenAtMinute>
</d3p1:Tuesday>
<d3p1:Wednesday>
<d3p1:CloseAtHour>0</d3p1:CloseAtHour>
<d3p1:CloseAtMinute>0</d3p1:CloseAtMinute>
<d3p1:OpenAtHour>0</d3p1:OpenAtHour>
<d3p1:OpenAtMinute>0</d3p1:OpenAtMinute>
</d3p1:Wednesday>
</d3p1: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: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>
</PlaceBasicDto>
</Places>
<PriceMainDish xmlns:d3p1="http://schemas.datacontract.org/2004/07/Entities.Common">
<d3p1:Slug>Value</d3p1:Slug>
<d3p1:Title>String</d3p1: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:d3p1="http://schemas.datacontract.org/2004/07/Entities.Common">
<d3p1:BaseUtcOffset>PT0S</d3p1:BaseUtcOffset>
<d3p1:DaylightName>String</d3p1:DaylightName>
<d3p1:DisplayName>String</d3p1:DisplayName>
<d3p1:Id>String</d3p1:Id>
<d3p1:StandardName>String</d3p1:StandardName>
<d3p1:SupportsDaylightSavingTime>false</d3p1:SupportsDaylightSavingTime>
</TimeZoneDto>
<WearPriceProfiles>
<BusinessWearPriceProfileDto>
<Id>0</Id>
<Label>String</Label>
<Slug>String</Slug>
</BusinessWearPriceProfileDto>
</WearPriceProfiles>
<WheelChairAccessible>false</WheelChairAccessible>
<Wifi>false</Wifi>
</Place>
</GetPlaceResponse>