ConsumerApi

<back to all web services

GetPlaceRequest

Consumer
Requires Authentication
Required role:Consumer
The following routes are available for this service:
GET/place/GetPlace
namespace ConsumerApi

open System
open System.IO
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations

    [<AllowNullLiteral>]
    type OpeningHour() = 
        member val OpenAtHour:Int32 = new Int32() with get,set
        member val OpenAtMinute:Int32 = new Int32() with get,set
        member val CloseAtHour:Int32 = new Int32() with get,set
        member val CloseAtMinute:Int32 = new Int32() with get,set

    [<AllowNullLiteral>]
    type WeeklyOpeningHours() = 
        member val Monday:OpeningHour = null with get,set
        member val Tuesday:OpeningHour = null with get,set
        member val Wednesday:OpeningHour = null with get,set
        member val Thursday:OpeningHour = null with get,set
        member val Friday:OpeningHour = null with get,set
        member val Saturday:OpeningHour = null with get,set
        member val Sunday:OpeningHour = null with get,set

    [<AllowNullLiteral>]
    type OpeningHours() = 
        member val Weekly:WeeklyOpeningHours = null with get,set

    [<AllowNullLiteral>]
    type CategoryTreeApiDto() = 
        member val Name:String = null with get,set
        member val Slug:String = null with get,set
        member val AbsoluteSlug:String = null with get,set
        member val ImageUrl:String = null with get,set
        member val AllImageUrl:String = null with get,set
        member val IconImageUrl:String = null with get,set
        member val Position:Int32 = new Int32() with get,set
        member val Children:ResizeArray<CategoryTreeApiDto> = new ResizeArray<CategoryTreeApiDto>() with get,set

    type FeatureType =
        | BarSpeciality = 0
        | BarType = 1
        | Cuisine = 2
        | SaveFoodAndMoney = 3
        | MealType = 4
        | Menu = 5
        | OutdoorSeating = 6
        | Parking = 7
        | PaymentOptions = 8
        | PriceMainDish = 9
        | SubCategories = 10
        | SubCategoriesAndBrands = 11
        | EatingSuitabilities = 12
        | TakeAway = 13
        | WearPriceProfile = 14
        | WheelChairAccessible = 15
        | Wifi = 16
        | WebShop = 17
        | Filtering = 18

    [<AllowNullLiteral>]
    type IndividualFeatureDataApiDto() = 
        member val Slug:FeatureType = new FeatureType() with get,set
        member val Label:String = null with get,set

    [<AllowNullLiteral>]
    type BarSpecialityEsDto() = 
        member val Slug:String = null with get,set
        member val Title:String = null with get,set

    [<AllowNullLiteral>]
    type BarTypeEsDto() = 
        member val Slug:String = null with get,set
        member val Title:String = null with get,set

    [<AllowNullLiteral>]
    type BrandApiDto() = 
        member val Name:String = null with get,set

    [<AllowNullLiteral>]
    type PlaceCustomBrandApiDto() = 
        member val Name:String = null with get,set

    [<AllowNullLiteral>]
    type PlaceSelectedBrandApiDto() = 
        member val Brand:BrandApiDto = null with get,set
        member val CategoryAbsoluteSlugs:String[] = [||] with get,set
        member val PlaceCustomBrand:PlaceCustomBrandApiDto = null with get,set

    [<AllowNullLiteral>]
    type CuisineEsDto() = 
        member val Label:String = null with get,set
        member val Slug:String = null with get,set

    [<AllowNullLiteral>]
    type MealTypeApiDto() = 
        member val Label:String = null with get,set
        member val Slug:String = null with get,set

    type Parking =
        | StreetParking = 0
        | ParkingGarageNearby = 1

    [<AllowNullLiteral>]
    type ParkingApiDto() = 
        member val Label:String = null with get,set
        member val Slug:Parking = new Parking() with get,set

    type PaymentOption =
        | Visa = 0
        | MasterCard = 1
        | AmericanExpress = 2
        | Diners = 3
        | Vipps = 4

    [<AllowNullLiteral>]
    type PaymentOptionApiDto() = 
        member val Label:String = null with get,set
        member val Slug:PaymentOption = new PaymentOption() with get,set

    [<AllowNullLiteral>]
    type EatingSuitabilityApiDto() = 
        member val Label:String = null with get,set
        member val Slug:String = null with get,set

    [<AllowNullLiteral>]
    type TakeAwayApiDto() = 
        member val Label:String = null with get,set
        member val Slug:String = null with get,set

    [<AllowNullLiteral>]
    type WearPriceProfileEsDto() = 
        member val Slug:String = null with get,set
        member val Label:String = null with get,set

    [<AllowNullLiteral>]
    type MenuEsDto() = 
        member val Name:String = null with get,set
        member val Url:String = null with get,set
        member val Position:Int32 = new Int32() with get,set

    [<AllowNullLiteral>]
    type ImageUrls() = 
        member val Preview:String = null with get,set
        member val Small:String = null with get,set
        member val Medium:String = null with get,set
        member val Large:String = null with get,set

    type PlaceType =
        | Mall = 0
        | Regular = 1

    type PriceMainDish =
        | Value = 0
        | Medium = 1
        | High = 2
        | FineDining = 3

    [<AllowNullLiteral>]
    type PriceMainDishApiDto() = 
        member val Title:String = null with get,set
        member val Slug:PriceMainDish = new PriceMainDish() with get,set

    [<AllowNullLiteral>]
    type TimeZoneDto() = 
        member val BaseUtcOffset:TimeSpan = new TimeSpan() with get,set
        member val DaylightName:String = null with get,set
        member val DisplayName:String = null with get,set
        member val Id:String = null with get,set
        member val StandardName:String = null with get,set
        member val SupportsDaylightSavingTime:Boolean = new Boolean() with get,set

    [<AllowNullLiteral>]
    type PlaceContact() = 
        member val Phone:String = null with get,set
        member val Email:String = null with get,set
        member val Website:String = null with get,set
        member val WebShop:String = null with get,set

    [<AllowNullLiteral>]
    type PlaceAddress() = 
        member val Street:String = null with get,set
        member val PostalCode:String = null with get,set
        member val Region:String = null with get,set
        member val CountryCode:String = null with get,set

    [<AllowNullLiteral>]
    type PlaceBasicApiDto() = 
        member val Id:Int64 = new Int64() with get,set
        member val Guid:Guid = new Guid() with get,set
        member val Overview:String = null with get,set
        member val Name:String = null with get,set
        member val Longitude:Single = new Single() with get,set
        member val Latitude:Single = new Single() with get,set
        member val Claimed:Boolean = new Boolean() with get,set
        member val OrganizationNumber:String = null with get,set
        member val CountryCode:String = null with get,set
        member val OpeningHours:OpeningHours = null with get,set
        member val WheelchairAccessible:Nullable<Boolean> = new Nullable<Boolean>() with get,set
        member val Wifi:Nullable<Boolean> = new Nullable<Boolean>() with get,set
        member val OutdoorSeating:Nullable<Boolean> = new Nullable<Boolean>() with get,set
        member val SaveFoodAndMoney:Nullable<Boolean> = new Nullable<Boolean>() with get,set
        member val PlaceType:PlaceType = new PlaceType() with get,set
        member val PriceMainDish:PriceMainDishApiDto = null with get,set
        member val TimeZoneDto:TimeZoneDto = null with get,set
        member val BusinessId:Nullable<Int64> = new Nullable<Int64>() with get,set
        member val Contact:PlaceContact = null with get,set
        member val Address:PlaceAddress = null with get,set
        member val Categories:ResizeArray<CategoryTreeApiDto> = new ResizeArray<CategoryTreeApiDto>() with get,set
        member val LogoUrl:ImageUrls = null with get,set
        member val ImageUrl:ImageUrls = null with get,set
        member val WearPriceProfiles:ResizeArray<WearPriceProfileEsDto> = new ResizeArray<WearPriceProfileEsDto>() with get,set
        member val Brands:ResizeArray<PlaceSelectedBrandApiDto> = new ResizeArray<PlaceSelectedBrandApiDto>() with get,set
        member val Floor:String = null with get,set

    [<AllowNullLiteral>]
    type MallOtherServiceApiDto() = 
        member val ServiceName:String = null with get,set
        member val Floor:String = null with get,set

    [<AllowNullLiteral>]
    type PlaceApiDto() = 
        member val Id:Int64 = new Int64() with get,set
        member val Guid:Guid = new Guid() with get,set
        member val Overview:String = null with get,set
        member val Name:String = null with get,set
        member val Longitude:Single = new Single() with get,set
        member val Latitude:Single = new Single() with get,set
        member val Claimed:Boolean = new Boolean() with get,set
        member val OrganizationNumber:String = null with get,set
        member val CountryCode:String = null with get,set
        member val PlaceState:String = null with get,set
        member val FollowersCount:Int64 = new Int64() with get,set
        member val OpeningHours:OpeningHours = null with get,set
        member val Categories:ResizeArray<CategoryTreeApiDto> = new ResizeArray<CategoryTreeApiDto>() with get,set
        member val FeatureData:ResizeArray<IndividualFeatureDataApiDto> = new ResizeArray<IndividualFeatureDataApiDto>() with get,set
        member val BarSpecialities:ResizeArray<BarSpecialityEsDto> = new ResizeArray<BarSpecialityEsDto>() with get,set
        member val BarTypes:ResizeArray<BarTypeEsDto> = new ResizeArray<BarTypeEsDto>() with get,set
        member val Brands:ResizeArray<PlaceSelectedBrandApiDto> = new ResizeArray<PlaceSelectedBrandApiDto>() with get,set
        member val Cuisines:ResizeArray<CuisineEsDto> = new ResizeArray<CuisineEsDto>() with get,set
        member val MealTypes:ResizeArray<MealTypeApiDto> = new ResizeArray<MealTypeApiDto>() with get,set
        member val Parking:ResizeArray<ParkingApiDto> = new ResizeArray<ParkingApiDto>() with get,set
        member val PaymentOptions:ResizeArray<PaymentOptionApiDto> = new ResizeArray<PaymentOptionApiDto>() with get,set
        member val EatingSuitabilities:ResizeArray<EatingSuitabilityApiDto> = new ResizeArray<EatingSuitabilityApiDto>() with get,set
        member val TakeAways:ResizeArray<TakeAwayApiDto> = new ResizeArray<TakeAwayApiDto>() with get,set
        member val WearPriceProfiles:ResizeArray<WearPriceProfileEsDto> = new ResizeArray<WearPriceProfileEsDto>() with get,set
        member val Menus:ResizeArray<MenuEsDto> = new ResizeArray<MenuEsDto>() with get,set
        member val LogoUrl:ImageUrls = null with get,set
        member val ImageUrl:ImageUrls = null with get,set
        member val WheelchairAccessible:Nullable<Boolean> = new Nullable<Boolean>() with get,set
        member val Wifi:Nullable<Boolean> = new Nullable<Boolean>() with get,set
        member val OutdoorSeating:Nullable<Boolean> = new Nullable<Boolean>() with get,set
        member val SaveFoodAndMoney:Nullable<Boolean> = new Nullable<Boolean>() with get,set
        member val PlaceType:PlaceType = new PlaceType() with get,set
        member val Mall:PlaceBasicApiDto = null with get,set
        member val PriceMainDish:PriceMainDishApiDto = null with get,set
        member val Places:ResizeArray<PlaceBasicApiDto> = new ResizeArray<PlaceBasicApiDto>() with get,set
        member val OtherServices:ResizeArray<MallOtherServiceApiDto> = new ResizeArray<MallOtherServiceApiDto>() with get,set
        member val Floor:String = null with get,set
        member val TimeZoneDto:TimeZoneDto = null with get,set
        member val BusinessId:Nullable<Int64> = new Nullable<Int64>() with get,set
        member val Contact:PlaceContact = null with get,set
        member val Address:PlaceAddress = null with get,set

    [<AllowNullLiteral>]
    type AdMessageDetailsBase() = 
        member val Description:String = null with get,set
        member val MoreInformation:ResizeArray<String> = new ResizeArray<String>() with get,set

    [<AllowNullLiteral>]
    type AdMessageDetailsPercentageDiscountOnAllMerchandise() = 
        inherit AdMessageDetailsBase()
        member val Value:Double = new Double() with get,set

    [<AllowNullLiteral>]
    type AdMessageDetailsPercentageDiscountRangeOnAllMerchandise() = 
        inherit AdMessageDetailsBase()
        member val Start:Double = new Double() with get,set
        member val Stop:Double = new Double() with get,set

    [<AllowNullLiteral>]
    type AdMessageDetailsPercentageDiscountOnSelectedMerchandise() = 
        inherit AdMessageDetailsBase()
        member val Value:Double = new Double() with get,set

    [<AllowNullLiteral>]
    type AdMessageDetailsAbsoluteDiscountOnSelectedMerchandise() = 
        inherit AdMessageDetailsBase()
        member val Value:Double = new Double() with get,set

    [<AllowNullLiteral>]
    type AdMessageDetailsAbsoluteDiscountRangeOnAllMerchandise() = 
        inherit AdMessageDetailsBase()
        member val Start:Double = new Double() with get,set
        member val Stop:Double = new Double() with get,set

    [<AllowNullLiteral>]
    type AdMessageDetailsTotalAmountOverXgivesYdiscount() = 
        inherit AdMessageDetailsBase()
        member val IfTotalAmountMoreThanX:Double = new Double() with get,set
        member val ThenYouGetDiscountPercentageY:Double = new Double() with get,set

    [<AllowNullLiteral>]
    type AdMessageDetailsXforYdiscount() = 
        inherit AdMessageDetailsBase()
        member val IfYouBuyX:Int32 = new Int32() with get,set
        member val ThenYouGetY:Int32 = new Int32() with get,set

    [<AllowNullLiteral>]
    type AdMessageDetailsNewArrivals() = 
        inherit AdMessageDetailsBase()

    [<AllowNullLiteral>]
    type AdMessageDetailsFreetext() = 
        inherit AdMessageDetailsBase()
        member val Title:String = null with get,set

    [<AllowNullLiteral>]
    type AdMessageDetailsTodaysBreakFastOffer() = 
        inherit AdMessageDetailsBase()
        member val Value:Double = new Double() with get,set

    [<AllowNullLiteral>]
    type AdMessageDetailsTodaysLunchOffer() = 
        inherit AdMessageDetailsBase()
        member val Value:Double = new Double() with get,set

    [<AllowNullLiteral>]
    type AdMessageDetailsTodaysDinnerOffer() = 
        inherit AdMessageDetailsBase()
        member val Value:Double = new Double() with get,set

    [<AllowNullLiteral>]
    type AdMessageDetailsSaveFoodAndMoney() = 
        inherit AdMessageDetailsBase()
        member val Value:Double = new Double() with get,set

    [<AllowNullLiteral>]
    type AdMessageDetailsPercentageOffYourFoodBill() = 
        inherit AdMessageDetailsBase()
        member val Percentage:Double = new Double() with get,set

    [<AllowNullLiteral>]
    type AdMessageDetailsHappyHour() = 
        inherit AdMessageDetailsBase()

    [<AllowNullLiteral>]
    type AdMessageDetailsSomeFreeTablesLeftToday() = 
        inherit AdMessageDetailsBase()

    [<AllowNullLiteral>]
    type AdMessageDetailsTwoDishesForThePriceOfOne() = 
        inherit AdMessageDetailsBase()

    [<AllowNullLiteral>]
    type AdMessageDetailsUnion() = 
        member val PercentageOnAllMerchandise:AdMessageDetailsPercentageDiscountOnAllMerchandise = null with get,set
        member val PercentageRangeOnAllMerchandise:AdMessageDetailsPercentageDiscountRangeOnAllMerchandise = null with get,set
        member val PercentageOnSelectedMerchandise:AdMessageDetailsPercentageDiscountOnSelectedMerchandise = null with get,set
        member val AbsoluteOnSelectedMerchandise:AdMessageDetailsAbsoluteDiscountOnSelectedMerchandise = null with get,set
        member val AbsoluteRangeOnAllMerchandise:AdMessageDetailsAbsoluteDiscountRangeOnAllMerchandise = null with get,set
        member val TotalAmountOverXgivesYdiscount:AdMessageDetailsTotalAmountOverXgivesYdiscount = null with get,set
        member val XforY:AdMessageDetailsXforYdiscount = null with get,set
        member val NewArrivals:AdMessageDetailsNewArrivals = null with get,set
        member val Freetext:AdMessageDetailsFreetext = null with get,set
        member val TodaysBreakFastOffer:AdMessageDetailsTodaysBreakFastOffer = null with get,set
        member val TodaysLunchOffer:AdMessageDetailsTodaysLunchOffer = null with get,set
        member val TodaysDinnerOffer:AdMessageDetailsTodaysDinnerOffer = null with get,set
        member val SaveFoodAndMoney:AdMessageDetailsSaveFoodAndMoney = null with get,set
        member val PercentageOfYourFoodBill:AdMessageDetailsPercentageOffYourFoodBill = null with get,set
        member val HappyHour:AdMessageDetailsHappyHour = null with get,set
        member val SomeFreeTablesLeftToday:AdMessageDetailsSomeFreeTablesLeftToday = null with get,set
        member val TwoDishesForThePriceOfOne:AdMessageDetailsTwoDishesForThePriceOfOne = null with get,set

    [<AllowNullLiteral>]
    type AdMessageDto() = 
        member val Id:Int64 = new Int64() with get,set
        member val Guid:Guid = new Guid() with get,set
        member val Title:String = null with get,set
        member val StartAt:DateTimeOffset = new DateTimeOffset() with get,set
        member val StopAt:DateTimeOffset = new DateTimeOffset() with get,set
        member val PublishAt:DateTimeOffset = new DateTimeOffset() with get,set
        member val ImageUrls:ResizeArray<ImageUrls> = new ResizeArray<ImageUrls>() with get,set
        member val Place:PlaceBasicApiDto = null with get,set
        member val DetailsUnion:AdMessageDetailsUnion = null with get,set
        member val StarredCount:Int64 = new Int64() with get,set

F# GetPlaceRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /place/GetPlace HTTP/1.1 
Host: unstable-consumer-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/ConsumerApi.Dto">
  <AdMessages xmlns:d2p1="http://schemas.datacontract.org/2004/07/Api.Dto">
    <d2p1:AdMessageDto>
      <d2p1:DetailsUnion xmlns:d4p1="http://schemas.datacontract.org/2004/07/Entities.Common">
        <d4p1:AbsoluteOnSelectedMerchandise>
          <d4p1:Description>String</d4p1:Description>
          <d4p1:MoreInformation xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <d6p1:string>String</d6p1:string>
          </d4p1:MoreInformation>
          <d4p1:Value>0</d4p1:Value>
        </d4p1:AbsoluteOnSelectedMerchandise>
        <d4p1:AbsoluteRangeOnAllMerchandise>
          <d4p1:Description>String</d4p1:Description>
          <d4p1:MoreInformation xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <d6p1:string>String</d6p1:string>
          </d4p1:MoreInformation>
          <d4p1:Start>0</d4p1:Start>
          <d4p1:Stop>0</d4p1:Stop>
        </d4p1:AbsoluteRangeOnAllMerchandise>
        <d4p1:Freetext>
          <d4p1:Description>String</d4p1:Description>
          <d4p1:MoreInformation xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <d6p1:string>String</d6p1:string>
          </d4p1:MoreInformation>
          <d4p1:Title>String</d4p1:Title>
        </d4p1:Freetext>
        <d4p1:HappyHour>
          <d4p1:Description>String</d4p1:Description>
          <d4p1:MoreInformation xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <d6p1:string>String</d6p1:string>
          </d4p1:MoreInformation>
        </d4p1:HappyHour>
        <d4p1:NewArrivals>
          <d4p1:Description>String</d4p1:Description>
          <d4p1:MoreInformation xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <d6p1:string>String</d6p1:string>
          </d4p1:MoreInformation>
        </d4p1:NewArrivals>
        <d4p1:PercentageOfYourFoodBill>
          <d4p1:Description>String</d4p1:Description>
          <d4p1:MoreInformation xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <d6p1:string>String</d6p1:string>
          </d4p1:MoreInformation>
          <d4p1:Percentage>0</d4p1:Percentage>
        </d4p1:PercentageOfYourFoodBill>
        <d4p1:PercentageOnAllMerchandise>
          <d4p1:Description>String</d4p1:Description>
          <d4p1:MoreInformation xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <d6p1:string>String</d6p1:string>
          </d4p1:MoreInformation>
          <d4p1:Value>0</d4p1:Value>
        </d4p1:PercentageOnAllMerchandise>
        <d4p1:PercentageOnSelectedMerchandise>
          <d4p1:Description>String</d4p1:Description>
          <d4p1:MoreInformation xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <d6p1:string>String</d6p1:string>
          </d4p1:MoreInformation>
          <d4p1:Value>0</d4p1:Value>
        </d4p1:PercentageOnSelectedMerchandise>
        <d4p1:PercentageRangeOnAllMerchandise>
          <d4p1:Description>String</d4p1:Description>
          <d4p1:MoreInformation xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <d6p1:string>String</d6p1:string>
          </d4p1:MoreInformation>
          <d4p1:Start>0</d4p1:Start>
          <d4p1:Stop>0</d4p1:Stop>
        </d4p1:PercentageRangeOnAllMerchandise>
        <d4p1:SaveFoodAndMoney>
          <d4p1:Description>String</d4p1:Description>
          <d4p1:MoreInformation xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <d6p1:string>String</d6p1:string>
          </d4p1:MoreInformation>
          <d4p1:Value>0</d4p1:Value>
        </d4p1:SaveFoodAndMoney>
        <d4p1:SomeFreeTablesLeftToday>
          <d4p1:Description>String</d4p1:Description>
          <d4p1:MoreInformation xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <d6p1:string>String</d6p1:string>
          </d4p1:MoreInformation>
        </d4p1:SomeFreeTablesLeftToday>
        <d4p1:TodaysBreakFastOffer>
          <d4p1:Description>String</d4p1:Description>
          <d4p1:MoreInformation xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <d6p1:string>String</d6p1:string>
          </d4p1:MoreInformation>
          <d4p1:Value>0</d4p1:Value>
        </d4p1:TodaysBreakFastOffer>
        <d4p1:TodaysDinnerOffer>
          <d4p1:Description>String</d4p1:Description>
          <d4p1:MoreInformation xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <d6p1:string>String</d6p1:string>
          </d4p1:MoreInformation>
          <d4p1:Value>0</d4p1:Value>
        </d4p1:TodaysDinnerOffer>
        <d4p1:TodaysLunchOffer>
          <d4p1:Description>String</d4p1:Description>
          <d4p1:MoreInformation xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <d6p1:string>String</d6p1:string>
          </d4p1:MoreInformation>
          <d4p1:Value>0</d4p1:Value>
        </d4p1:TodaysLunchOffer>
        <d4p1:TotalAmountOverXgivesYdiscount>
          <d4p1:Description>String</d4p1:Description>
          <d4p1:MoreInformation xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <d6p1:string>String</d6p1:string>
          </d4p1:MoreInformation>
          <d4p1:IfTotalAmountMoreThanX>0</d4p1:IfTotalAmountMoreThanX>
          <d4p1:ThenYouGetDiscountPercentageY>0</d4p1:ThenYouGetDiscountPercentageY>
        </d4p1:TotalAmountOverXgivesYdiscount>
        <d4p1:TwoDishesForThePriceOfOne>
          <d4p1:Description>String</d4p1:Description>
          <d4p1:MoreInformation xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <d6p1:string>String</d6p1:string>
          </d4p1:MoreInformation>
        </d4p1:TwoDishesForThePriceOfOne>
        <d4p1:XforY>
          <d4p1:Description>String</d4p1:Description>
          <d4p1:MoreInformation xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <d6p1:string>String</d6p1:string>
          </d4p1:MoreInformation>
          <d4p1:IfYouBuyX>0</d4p1:IfYouBuyX>
          <d4p1:ThenYouGetY>0</d4p1:ThenYouGetY>
        </d4p1:XforY>
      </d2p1:DetailsUnion>
      <d2p1:Guid>00000000-0000-0000-0000-000000000000</d2p1:Guid>
      <d2p1:Id>0</d2p1:Id>
      <d2p1:ImageUrls xmlns:d4p1="http://schemas.datacontract.org/2004/07/Entities.Common">
        <d4p1:ImageUrls>
          <d4p1:Large>String</d4p1:Large>
          <d4p1:Medium>String</d4p1:Medium>
          <d4p1:Preview>String</d4p1:Preview>
          <d4p1:Small>String</d4p1:Small>
        </d4p1:ImageUrls>
      </d2p1:ImageUrls>
      <d2p1:Place>
        <d2p1: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>
        </d2p1:Address>
        <d2p1:Brands>
          <d2p1:PlaceSelectedBrandApiDto>
            <d2p1:Brand>
              <d2p1:Name>String</d2p1:Name>
            </d2p1:Brand>
            <d2p1:CategoryAbsoluteSlugs xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
              <d7p1:string>String</d7p1:string>
            </d2p1:CategoryAbsoluteSlugs>
            <d2p1:PlaceCustomBrand>
              <d2p1:Name>String</d2p1:Name>
            </d2p1:PlaceCustomBrand>
          </d2p1:PlaceSelectedBrandApiDto>
        </d2p1:Brands>
        <d2p1:BusinessId>0</d2p1:BusinessId>
        <d2p1:Categories>
          <d2p1:CategoryTreeApiDto>
            <d2p1:AbsoluteSlug>String</d2p1:AbsoluteSlug>
            <d2p1:AllImageUrl>String</d2p1:AllImageUrl>
            <d2p1:Children>
              <d2p1:CategoryTreeApiDto>
                <d2p1:AbsoluteSlug>String</d2p1:AbsoluteSlug>
                <d2p1:AllImageUrl>String</d2p1:AllImageUrl>
                <d2p1:Children>
                  <d2p1:CategoryTreeApiDto>
                    <d2p1:AbsoluteSlug>String</d2p1:AbsoluteSlug>
                    <d2p1:AllImageUrl>String</d2p1:AllImageUrl>
                    <d2p1:Children i:nil="true" />
                    <d2p1:IconImageUrl>String</d2p1:IconImageUrl>
                    <d2p1:ImageUrl>String</d2p1:ImageUrl>
                    <d2p1:Name>String</d2p1:Name>
                    <d2p1:Position>0</d2p1:Position>
                    <d2p1:Slug>String</d2p1:Slug>
                  </d2p1:CategoryTreeApiDto>
                </d2p1:Children>
                <d2p1:IconImageUrl>String</d2p1:IconImageUrl>
                <d2p1:ImageUrl>String</d2p1:ImageUrl>
                <d2p1:Name>String</d2p1:Name>
                <d2p1:Position>0</d2p1:Position>
                <d2p1:Slug>String</d2p1:Slug>
              </d2p1:CategoryTreeApiDto>
            </d2p1:Children>
            <d2p1:IconImageUrl>String</d2p1:IconImageUrl>
            <d2p1:ImageUrl>String</d2p1:ImageUrl>
            <d2p1:Name>String</d2p1:Name>
            <d2p1:Position>0</d2p1:Position>
            <d2p1:Slug>String</d2p1:Slug>
          </d2p1:CategoryTreeApiDto>
        </d2p1:Categories>
        <d2p1:Claimed>false</d2p1:Claimed>
        <d2p1: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>
        </d2p1:Contact>
        <d2p1:CountryCode>String</d2p1:CountryCode>
        <d2p1:Floor>String</d2p1:Floor>
        <d2p1:Guid>00000000-0000-0000-0000-000000000000</d2p1:Guid>
        <d2p1:Id>0</d2p1:Id>
        <d2p1: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>
        </d2p1:ImageUrl>
        <d2p1:Latitude>0</d2p1:Latitude>
        <d2p1: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>
        </d2p1:LogoUrl>
        <d2p1:Longitude>0</d2p1:Longitude>
        <d2p1:Name>String</d2p1:Name>
        <d2p1: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>
        </d2p1:OpeningHours>
        <d2p1:OrganizationNumber>String</d2p1:OrganizationNumber>
        <d2p1:OutdoorSeating>false</d2p1:OutdoorSeating>
        <d2p1:Overview>String</d2p1:Overview>
        <d2p1:PlaceType>Mall</d2p1:PlaceType>
        <d2p1:PriceMainDish>
          <d2p1:Slug>Value</d2p1:Slug>
          <d2p1:Title>String</d2p1:Title>
        </d2p1:PriceMainDish>
        <d2p1:SaveFoodAndMoney>false</d2p1:SaveFoodAndMoney>
        <d2p1: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>
        </d2p1:TimeZoneDto>
        <d2p1:WearPriceProfiles>
          <d2p1:WearPriceProfileEsDto>
            <d2p1:Label>String</d2p1:Label>
            <d2p1:Slug>String</d2p1:Slug>
          </d2p1:WearPriceProfileEsDto>
        </d2p1:WearPriceProfiles>
        <d2p1:WheelchairAccessible>false</d2p1:WheelchairAccessible>
        <d2p1:Wifi>false</d2p1:Wifi>
      </d2p1:Place>
      <d2p1:PublishAt xmlns:d4p1="http://schemas.datacontract.org/2004/07/System">
        <d4p1:DateTime>0001-01-01T00:00:00Z</d4p1:DateTime>
        <d4p1:OffsetMinutes>0</d4p1:OffsetMinutes>
      </d2p1:PublishAt>
      <d2p1:StarredCount>0</d2p1:StarredCount>
      <d2p1:StartAt xmlns:d4p1="http://schemas.datacontract.org/2004/07/System">
        <d4p1:DateTime>0001-01-01T00:00:00Z</d4p1:DateTime>
        <d4p1:OffsetMinutes>0</d4p1:OffsetMinutes>
      </d2p1:StartAt>
      <d2p1:StopAt xmlns:d4p1="http://schemas.datacontract.org/2004/07/System">
        <d4p1:DateTime>0001-01-01T00:00:00Z</d4p1:DateTime>
        <d4p1:OffsetMinutes>0</d4p1:OffsetMinutes>
      </d2p1:StopAt>
      <d2p1:Title>String</d2p1:Title>
    </d2p1:AdMessageDto>
  </AdMessages>
  <PlaceDto xmlns:d2p1="http://schemas.datacontract.org/2004/07/Api.Dto">
    <d2p1: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>
    </d2p1:Address>
    <d2p1:BarSpecialities>
      <d2p1:BarSpecialityEsDto>
        <d2p1:Slug>String</d2p1:Slug>
        <d2p1:Title>String</d2p1:Title>
      </d2p1:BarSpecialityEsDto>
    </d2p1:BarSpecialities>
    <d2p1:BarTypes>
      <d2p1:BarTypeEsDto>
        <d2p1:Slug>String</d2p1:Slug>
        <d2p1:Title>String</d2p1:Title>
      </d2p1:BarTypeEsDto>
    </d2p1:BarTypes>
    <d2p1:Brands>
      <d2p1:PlaceSelectedBrandApiDto>
        <d2p1:Brand>
          <d2p1:Name>String</d2p1:Name>
        </d2p1:Brand>
        <d2p1:CategoryAbsoluteSlugs xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
          <d5p1:string>String</d5p1:string>
        </d2p1:CategoryAbsoluteSlugs>
        <d2p1:PlaceCustomBrand>
          <d2p1:Name>String</d2p1:Name>
        </d2p1:PlaceCustomBrand>
      </d2p1:PlaceSelectedBrandApiDto>
    </d2p1:Brands>
    <d2p1:BusinessId>0</d2p1:BusinessId>
    <d2p1:Categories>
      <d2p1:CategoryTreeApiDto>
        <d2p1:AbsoluteSlug>String</d2p1:AbsoluteSlug>
        <d2p1:AllImageUrl>String</d2p1:AllImageUrl>
        <d2p1:Children>
          <d2p1:CategoryTreeApiDto>
            <d2p1:AbsoluteSlug>String</d2p1:AbsoluteSlug>
            <d2p1:AllImageUrl>String</d2p1:AllImageUrl>
            <d2p1:Children>
              <d2p1:CategoryTreeApiDto>
                <d2p1:AbsoluteSlug>String</d2p1:AbsoluteSlug>
                <d2p1:AllImageUrl>String</d2p1:AllImageUrl>
                <d2p1:Children i:nil="true" />
                <d2p1:IconImageUrl>String</d2p1:IconImageUrl>
                <d2p1:ImageUrl>String</d2p1:ImageUrl>
                <d2p1:Name>String</d2p1:Name>
                <d2p1:Position>0</d2p1:Position>
                <d2p1:Slug>String</d2p1:Slug>
              </d2p1:CategoryTreeApiDto>
            </d2p1:Children>
            <d2p1:IconImageUrl>String</d2p1:IconImageUrl>
            <d2p1:ImageUrl>String</d2p1:ImageUrl>
            <d2p1:Name>String</d2p1:Name>
            <d2p1:Position>0</d2p1:Position>
            <d2p1:Slug>String</d2p1:Slug>
          </d2p1:CategoryTreeApiDto>
        </d2p1:Children>
        <d2p1:IconImageUrl>String</d2p1:IconImageUrl>
        <d2p1:ImageUrl>String</d2p1:ImageUrl>
        <d2p1:Name>String</d2p1:Name>
        <d2p1:Position>0</d2p1:Position>
        <d2p1:Slug>String</d2p1:Slug>
      </d2p1:CategoryTreeApiDto>
    </d2p1:Categories>
    <d2p1:Claimed>false</d2p1:Claimed>
    <d2p1: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>
    </d2p1:Contact>
    <d2p1:CountryCode>String</d2p1:CountryCode>
    <d2p1:Cuisines>
      <d2p1:CuisineEsDto>
        <d2p1:Label>String</d2p1:Label>
        <d2p1:Slug>String</d2p1:Slug>
      </d2p1:CuisineEsDto>
    </d2p1:Cuisines>
    <d2p1:EatingSuitabilities>
      <d2p1:EatingSuitabilityApiDto>
        <d2p1:Label>String</d2p1:Label>
        <d2p1:Slug>String</d2p1:Slug>
      </d2p1:EatingSuitabilityApiDto>
    </d2p1:EatingSuitabilities>
    <d2p1:FeatureData>
      <d2p1:IndividualFeatureDataApiDto>
        <d2p1:Label>String</d2p1:Label>
        <d2p1:Slug>BarSpeciality</d2p1:Slug>
      </d2p1:IndividualFeatureDataApiDto>
    </d2p1:FeatureData>
    <d2p1:Floor>String</d2p1:Floor>
    <d2p1:FollowersCount>0</d2p1:FollowersCount>
    <d2p1:Guid>00000000-0000-0000-0000-000000000000</d2p1:Guid>
    <d2p1:Id>0</d2p1:Id>
    <d2p1:ImageUrl xmlns:d3p1="http://schemas.datacontract.org/2004/07/Entities.Common">
      <d3p1:Large>String</d3p1:Large>
      <d3p1:Medium>String</d3p1:Medium>
      <d3p1:Preview>String</d3p1:Preview>
      <d3p1:Small>String</d3p1:Small>
    </d2p1:ImageUrl>
    <d2p1:Latitude>0</d2p1:Latitude>
    <d2p1:LogoUrl xmlns:d3p1="http://schemas.datacontract.org/2004/07/Entities.Common">
      <d3p1:Large>String</d3p1:Large>
      <d3p1:Medium>String</d3p1:Medium>
      <d3p1:Preview>String</d3p1:Preview>
      <d3p1:Small>String</d3p1:Small>
    </d2p1:LogoUrl>
    <d2p1:Longitude>0</d2p1:Longitude>
    <d2p1:Mall>
      <d2p1: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>
      </d2p1:Address>
      <d2p1:Brands>
        <d2p1:PlaceSelectedBrandApiDto>
          <d2p1:Brand>
            <d2p1:Name>String</d2p1:Name>
          </d2p1:Brand>
          <d2p1:CategoryAbsoluteSlugs xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <d6p1:string>String</d6p1:string>
          </d2p1:CategoryAbsoluteSlugs>
          <d2p1:PlaceCustomBrand>
            <d2p1:Name>String</d2p1:Name>
          </d2p1:PlaceCustomBrand>
        </d2p1:PlaceSelectedBrandApiDto>
      </d2p1:Brands>
      <d2p1:BusinessId>0</d2p1:BusinessId>
      <d2p1:Categories>
        <d2p1:CategoryTreeApiDto>
          <d2p1:AbsoluteSlug>String</d2p1:AbsoluteSlug>
          <d2p1:AllImageUrl>String</d2p1:AllImageUrl>
          <d2p1:Children>
            <d2p1:CategoryTreeApiDto>
              <d2p1:AbsoluteSlug>String</d2p1:AbsoluteSlug>
              <d2p1:AllImageUrl>String</d2p1:AllImageUrl>
              <d2p1:Children>
                <d2p1:CategoryTreeApiDto>
                  <d2p1:AbsoluteSlug>String</d2p1:AbsoluteSlug>
                  <d2p1:AllImageUrl>String</d2p1:AllImageUrl>
                  <d2p1:Children i:nil="true" />
                  <d2p1:IconImageUrl>String</d2p1:IconImageUrl>
                  <d2p1:ImageUrl>String</d2p1:ImageUrl>
                  <d2p1:Name>String</d2p1:Name>
                  <d2p1:Position>0</d2p1:Position>
                  <d2p1:Slug>String</d2p1:Slug>
                </d2p1:CategoryTreeApiDto>
              </d2p1:Children>
              <d2p1:IconImageUrl>String</d2p1:IconImageUrl>
              <d2p1:ImageUrl>String</d2p1:ImageUrl>
              <d2p1:Name>String</d2p1:Name>
              <d2p1:Position>0</d2p1:Position>
              <d2p1:Slug>String</d2p1:Slug>
            </d2p1:CategoryTreeApiDto>
          </d2p1:Children>
          <d2p1:IconImageUrl>String</d2p1:IconImageUrl>
          <d2p1:ImageUrl>String</d2p1:ImageUrl>
          <d2p1:Name>String</d2p1:Name>
          <d2p1:Position>0</d2p1:Position>
          <d2p1:Slug>String</d2p1:Slug>
        </d2p1:CategoryTreeApiDto>
      </d2p1:Categories>
      <d2p1:Claimed>false</d2p1:Claimed>
      <d2p1: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>
      </d2p1:Contact>
      <d2p1:CountryCode>String</d2p1:CountryCode>
      <d2p1:Floor>String</d2p1:Floor>
      <d2p1:Guid>00000000-0000-0000-0000-000000000000</d2p1:Guid>
      <d2p1:Id>0</d2p1:Id>
      <d2p1:ImageUrl xmlns:d4p1="http://schemas.datacontract.org/2004/07/Entities.Common">
        <d4p1:Large>String</d4p1:Large>
        <d4p1:Medium>String</d4p1:Medium>
        <d4p1:Preview>String</d4p1:Preview>
        <d4p1:Small>String</d4p1:Small>
      </d2p1:ImageUrl>
      <d2p1:Latitude>0</d2p1:Latitude>
      <d2p1:LogoUrl xmlns:d4p1="http://schemas.datacontract.org/2004/07/Entities.Common">
        <d4p1:Large>String</d4p1:Large>
        <d4p1:Medium>String</d4p1:Medium>
        <d4p1:Preview>String</d4p1:Preview>
        <d4p1:Small>String</d4p1:Small>
      </d2p1:LogoUrl>
      <d2p1:Longitude>0</d2p1:Longitude>
      <d2p1:Name>String</d2p1:Name>
      <d2p1: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>
      </d2p1:OpeningHours>
      <d2p1:OrganizationNumber>String</d2p1:OrganizationNumber>
      <d2p1:OutdoorSeating>false</d2p1:OutdoorSeating>
      <d2p1:Overview>String</d2p1:Overview>
      <d2p1:PlaceType>Mall</d2p1:PlaceType>
      <d2p1:PriceMainDish>
        <d2p1:Slug>Value</d2p1:Slug>
        <d2p1:Title>String</d2p1:Title>
      </d2p1:PriceMainDish>
      <d2p1:SaveFoodAndMoney>false</d2p1:SaveFoodAndMoney>
      <d2p1: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>
      </d2p1:TimeZoneDto>
      <d2p1:WearPriceProfiles>
        <d2p1:WearPriceProfileEsDto>
          <d2p1:Label>String</d2p1:Label>
          <d2p1:Slug>String</d2p1:Slug>
        </d2p1:WearPriceProfileEsDto>
      </d2p1:WearPriceProfiles>
      <d2p1:WheelchairAccessible>false</d2p1:WheelchairAccessible>
      <d2p1:Wifi>false</d2p1:Wifi>
    </d2p1:Mall>
    <d2p1:MealTypes>
      <d2p1:MealTypeApiDto>
        <d2p1:Label>String</d2p1:Label>
        <d2p1:Slug>String</d2p1:Slug>
      </d2p1:MealTypeApiDto>
    </d2p1:MealTypes>
    <d2p1:Menus>
      <d2p1:MenuEsDto>
        <d2p1:Name>String</d2p1:Name>
        <d2p1:Position>0</d2p1:Position>
        <d2p1:Url>String</d2p1:Url>
      </d2p1:MenuEsDto>
    </d2p1:Menus>
    <d2p1:Name>String</d2p1:Name>
    <d2p1: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>
    </d2p1:OpeningHours>
    <d2p1:OrganizationNumber>String</d2p1:OrganizationNumber>
    <d2p1:OtherServices>
      <d2p1:MallOtherServiceApiDto>
        <d2p1:Floor>String</d2p1:Floor>
        <d2p1:ServiceName>String</d2p1:ServiceName>
      </d2p1:MallOtherServiceApiDto>
    </d2p1:OtherServices>
    <d2p1:OutdoorSeating>false</d2p1:OutdoorSeating>
    <d2p1:Overview>String</d2p1:Overview>
    <d2p1:Parking>
      <d2p1:ParkingApiDto>
        <d2p1:Label>String</d2p1:Label>
        <d2p1:Slug>StreetParking</d2p1:Slug>
      </d2p1:ParkingApiDto>
    </d2p1:Parking>
    <d2p1:PaymentOptions>
      <d2p1:PaymentOptionApiDto>
        <d2p1:Label>String</d2p1:Label>
        <d2p1:Slug>Visa</d2p1:Slug>
      </d2p1:PaymentOptionApiDto>
    </d2p1:PaymentOptions>
    <d2p1:PlaceState>String</d2p1:PlaceState>
    <d2p1:PlaceType>Mall</d2p1:PlaceType>
    <d2p1:Places>
      <d2p1:PlaceBasicApiDto>
        <d2p1: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>
        </d2p1:Address>
        <d2p1:Brands>
          <d2p1:PlaceSelectedBrandApiDto>
            <d2p1:Brand>
              <d2p1:Name>String</d2p1:Name>
            </d2p1:Brand>
            <d2p1:CategoryAbsoluteSlugs xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
              <d7p1:string>String</d7p1:string>
            </d2p1:CategoryAbsoluteSlugs>
            <d2p1:PlaceCustomBrand>
              <d2p1:Name>String</d2p1:Name>
            </d2p1:PlaceCustomBrand>
          </d2p1:PlaceSelectedBrandApiDto>
        </d2p1:Brands>
        <d2p1:BusinessId>0</d2p1:BusinessId>
        <d2p1:Categories>
          <d2p1:CategoryTreeApiDto>
            <d2p1:AbsoluteSlug>String</d2p1:AbsoluteSlug>
            <d2p1:AllImageUrl>String</d2p1:AllImageUrl>
            <d2p1:Children>
              <d2p1:CategoryTreeApiDto>
                <d2p1:AbsoluteSlug>String</d2p1:AbsoluteSlug>
                <d2p1:AllImageUrl>String</d2p1:AllImageUrl>
                <d2p1:Children>
                  <d2p1:CategoryTreeApiDto>
                    <d2p1:AbsoluteSlug>String</d2p1:AbsoluteSlug>
                    <d2p1:AllImageUrl>String</d2p1:AllImageUrl>
                    <d2p1:Children i:nil="true" />
                    <d2p1:IconImageUrl>String</d2p1:IconImageUrl>
                    <d2p1:ImageUrl>String</d2p1:ImageUrl>
                    <d2p1:Name>String</d2p1:Name>
                    <d2p1:Position>0</d2p1:Position>
                    <d2p1:Slug>String</d2p1:Slug>
                  </d2p1:CategoryTreeApiDto>
                </d2p1:Children>
                <d2p1:IconImageUrl>String</d2p1:IconImageUrl>
                <d2p1:ImageUrl>String</d2p1:ImageUrl>
                <d2p1:Name>String</d2p1:Name>
                <d2p1:Position>0</d2p1:Position>
                <d2p1:Slug>String</d2p1:Slug>
              </d2p1:CategoryTreeApiDto>
            </d2p1:Children>
            <d2p1:IconImageUrl>String</d2p1:IconImageUrl>
            <d2p1:ImageUrl>String</d2p1:ImageUrl>
            <d2p1:Name>String</d2p1:Name>
            <d2p1:Position>0</d2p1:Position>
            <d2p1:Slug>String</d2p1:Slug>
          </d2p1:CategoryTreeApiDto>
        </d2p1:Categories>
        <d2p1:Claimed>false</d2p1:Claimed>
        <d2p1: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>
        </d2p1:Contact>
        <d2p1:CountryCode>String</d2p1:CountryCode>
        <d2p1:Floor>String</d2p1:Floor>
        <d2p1:Guid>00000000-0000-0000-0000-000000000000</d2p1:Guid>
        <d2p1:Id>0</d2p1:Id>
        <d2p1: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>
        </d2p1:ImageUrl>
        <d2p1:Latitude>0</d2p1:Latitude>
        <d2p1: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>
        </d2p1:LogoUrl>
        <d2p1:Longitude>0</d2p1:Longitude>
        <d2p1:Name>String</d2p1:Name>
        <d2p1: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>
        </d2p1:OpeningHours>
        <d2p1:OrganizationNumber>String</d2p1:OrganizationNumber>
        <d2p1:OutdoorSeating>false</d2p1:OutdoorSeating>
        <d2p1:Overview>String</d2p1:Overview>
        <d2p1:PlaceType>Mall</d2p1:PlaceType>
        <d2p1:PriceMainDish>
          <d2p1:Slug>Value</d2p1:Slug>
          <d2p1:Title>String</d2p1:Title>
        </d2p1:PriceMainDish>
        <d2p1:SaveFoodAndMoney>false</d2p1:SaveFoodAndMoney>
        <d2p1: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>
        </d2p1:TimeZoneDto>
        <d2p1:WearPriceProfiles>
          <d2p1:WearPriceProfileEsDto>
            <d2p1:Label>String</d2p1:Label>
            <d2p1:Slug>String</d2p1:Slug>
          </d2p1:WearPriceProfileEsDto>
        </d2p1:WearPriceProfiles>
        <d2p1:WheelchairAccessible>false</d2p1:WheelchairAccessible>
        <d2p1:Wifi>false</d2p1:Wifi>
      </d2p1:PlaceBasicApiDto>
    </d2p1:Places>
    <d2p1:PriceMainDish>
      <d2p1:Slug>Value</d2p1:Slug>
      <d2p1:Title>String</d2p1:Title>
    </d2p1:PriceMainDish>
    <d2p1:SaveFoodAndMoney>false</d2p1:SaveFoodAndMoney>
    <d2p1:TakeAways>
      <d2p1:TakeAwayApiDto>
        <d2p1:Label>String</d2p1:Label>
        <d2p1:Slug>String</d2p1:Slug>
      </d2p1:TakeAwayApiDto>
    </d2p1:TakeAways>
    <d2p1: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>
    </d2p1:TimeZoneDto>
    <d2p1:WearPriceProfiles>
      <d2p1:WearPriceProfileEsDto>
        <d2p1:Label>String</d2p1:Label>
        <d2p1:Slug>String</d2p1:Slug>
      </d2p1:WearPriceProfileEsDto>
    </d2p1:WearPriceProfiles>
    <d2p1:WheelchairAccessible>false</d2p1:WheelchairAccessible>
    <d2p1:Wifi>false</d2p1:Wifi>
  </PlaceDto>
  <TopCategoriesSlug xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>String</d2p1:string>
  </TopCategoriesSlug>
</GetPlaceResponse>