From 676b763e67e4eebf116f841569d6f1f4cfab972d Mon Sep 17 00:00:00 2001 From: Erik Tiekstra Date: Thu, 3 Oct 2024 15:34:20 +0200 Subject: [PATCH 01/30] fix(SW-272): now closing on click outside and also closing the mobile menu when changing to screensizes larger than mobile --- .../Header/MainMenu/MobileMenu/index.tsx | 8 +++ .../MainMenu/MobileMenu/mobileMenu.module.css | 3 +- .../Header/MainMenu/MyPagesMenu/index.tsx | 9 +++- .../MainMenu/MyPagesMobileMenu/index.tsx | 8 +++ .../NavigationMenuItem/index.tsx | 14 ++++- components/LanguageSwitcher/index.tsx | 52 +++++-------------- hooks/useClickOutside.ts | 24 +++++++++ hooks/useMediaQuery.ts | 21 ++++++++ 8 files changed, 96 insertions(+), 43 deletions(-) create mode 100644 hooks/useClickOutside.ts create mode 100644 hooks/useMediaQuery.ts diff --git a/components/Header/MainMenu/MobileMenu/index.tsx b/components/Header/MainMenu/MobileMenu/index.tsx index 08c7a2d11..1f2660770 100644 --- a/components/Header/MainMenu/MobileMenu/index.tsx +++ b/components/Header/MainMenu/MobileMenu/index.tsx @@ -9,6 +9,7 @@ import useDropdownStore from "@/stores/main-menu" import { GiftIcon, SearchIcon, ServiceIcon } from "@/components/Icons" import LanguageSwitcher from "@/components/LanguageSwitcher" import { useHandleKeyUp } from "@/hooks/useHandleKeyUp" +import useMediaQuery from "@/hooks/useMediaQuery" import HeaderLink from "../../HeaderLink" @@ -37,6 +38,13 @@ export default function MobileMenu({ isHeaderLanguageSwitcherMobileOpen || isFooterLanguageSwitcherOpen + const isAboveMobile = useMediaQuery("(min-width: 768px)") + useEffect(() => { + if (isAboveMobile && isHamburgerMenuOpen) { + toggleDropdown(DropdownTypeEnum.HamburgerMenu) + } + }, [isAboveMobile, isHamburgerMenuOpen, toggleDropdown]) + useHandleKeyUp((event: KeyboardEvent) => { if (event.key === "Escape" && isHamburgerMenuOpen) { toggleDropdown(DropdownTypeEnum.HamburgerMenu) diff --git a/components/Header/MainMenu/MobileMenu/mobileMenu.module.css b/components/Header/MainMenu/MobileMenu/mobileMenu.module.css index 797b3b427..0d4be7cbc 100644 --- a/components/Header/MainMenu/MobileMenu/mobileMenu.module.css +++ b/components/Header/MainMenu/MobileMenu/mobileMenu.module.css @@ -97,7 +97,8 @@ } @media screen and (min-width: 768px) { - .hamburger { + .hamburger, + .modal { display: none; } } diff --git a/components/Header/MainMenu/MyPagesMenu/index.tsx b/components/Header/MainMenu/MyPagesMenu/index.tsx index 6f01ae2ff..a99f95a89 100644 --- a/components/Header/MainMenu/MyPagesMenu/index.tsx +++ b/components/Header/MainMenu/MyPagesMenu/index.tsx @@ -1,11 +1,13 @@ "use client" +import { useRef } from "react" import { useIntl } from "react-intl" import useDropdownStore from "@/stores/main-menu" import { ChevronDownIcon } from "@/components/Icons" import Subtitle from "@/components/TempDesignSystem/Text/Subtitle" +import useClickOutside from "@/hooks/useClickOutside" import { useHandleKeyUp } from "@/hooks/useHandleKeyUp" import { getInitials } from "@/utils/user" @@ -24,6 +26,7 @@ export default function MyPagesMenu({ user, }: MyPagesMenuProps) { const intl = useIntl() + const myPagesMenuRef = useRef(null) const { toggleDropdown, isMyPagesMenuOpen } = useDropdownStore() @@ -33,8 +36,12 @@ export default function MyPagesMenu({ } }) + useClickOutside(myPagesMenuRef, isMyPagesMenuOpen, () => { + toggleDropdown(DropdownTypeEnum.MyPagesMenu) + }) + return ( -
+
toggleDropdown(DropdownTypeEnum.MyPagesMenu)} > diff --git a/components/Header/MainMenu/MyPagesMobileMenu/index.tsx b/components/Header/MainMenu/MyPagesMobileMenu/index.tsx index 2daee99e2..04dc1aa4e 100644 --- a/components/Header/MainMenu/MyPagesMobileMenu/index.tsx +++ b/components/Header/MainMenu/MyPagesMobileMenu/index.tsx @@ -7,6 +7,7 @@ import { useIntl } from "react-intl" import useDropdownStore from "@/stores/main-menu" import { useHandleKeyUp } from "@/hooks/useHandleKeyUp" +import useMediaQuery from "@/hooks/useMediaQuery" import { getInitials } from "@/utils/user" import Avatar from "../Avatar" @@ -32,6 +33,13 @@ export default function MyPagesMobileMenu({ } }) + const isAboveMobile = useMediaQuery("(min-width: 768px)") + useEffect(() => { + if (isAboveMobile && isMyPagesMobileMenuOpen) { + toggleDropdown(DropdownTypeEnum.MyPagesMobileMenu) + } + }, [isAboveMobile, isMyPagesMobileMenuOpen, toggleDropdown]) + // Making sure the menu is always opened at the top of the page, just below the header. useEffect(() => { if (isMyPagesMobileMenuOpen) { diff --git a/components/Header/MainMenu/NavigationMenu/NavigationMenuItem/index.tsx b/components/Header/MainMenu/NavigationMenu/NavigationMenuItem/index.tsx index 222eb21e9..c57064b2a 100644 --- a/components/Header/MainMenu/NavigationMenu/NavigationMenuItem/index.tsx +++ b/components/Header/MainMenu/NavigationMenu/NavigationMenuItem/index.tsx @@ -1,9 +1,12 @@ "use client" +import { useRef } from "react" + import useDropdownStore from "@/stores/main-menu" import { ChevronDownIcon, ChevronRightIcon } from "@/components/Icons" import Link from "@/components/TempDesignSystem/Link" +import useClickOutside from "@/hooks/useClickOutside" import { useHandleKeyUp } from "@/hooks/useHandleKeyUp" import MainMenuButton from "../../MainMenuButton" @@ -15,8 +18,10 @@ import type { NavigationMenuItemProps } from "@/types/components/header/navigati export default function MenuItem({ item, isMobile }: NavigationMenuItemProps) { const { openMegaMenu, toggleMegaMenu } = useDropdownStore() + const megaMenuRef = useRef(null) const { submenu, title, link, seeAllLink, card } = item - const isMegaMenuOpen = openMegaMenu === title + const megaMenuTitle = `${title}-${isMobile ? "mobile" : "desktop"}` + const isMegaMenuOpen = openMegaMenu === megaMenuTitle useHandleKeyUp((event: KeyboardEvent) => { if (event.key === "Escape" && isMegaMenuOpen) { @@ -24,10 +29,14 @@ export default function MenuItem({ item, isMobile }: NavigationMenuItemProps) { } }) + useClickOutside(megaMenuRef, isMegaMenuOpen && !isMobile, () => { + toggleMegaMenu(false) + }) + return submenu.length ? ( <> toggleMegaMenu(title)} + onClick={() => toggleMegaMenu(megaMenuTitle)} className={`${styles.navigationMenuItem} ${isMobile ? styles.mobile : styles.desktop}`} > {title} @@ -41,6 +50,7 @@ export default function MenuItem({ item, isMobile }: NavigationMenuItemProps) { )}
{isMegaMenuOpen ? ( diff --git a/components/LanguageSwitcher/index.tsx b/components/LanguageSwitcher/index.tsx index b5cb2f25e..7ed5b4d75 100644 --- a/components/LanguageSwitcher/index.tsx +++ b/components/LanguageSwitcher/index.tsx @@ -1,12 +1,13 @@ "use client" -import { useEffect, useRef } from "react" +import { useRef } from "react" import { useIntl } from "react-intl" import { languages } from "@/constants/languages" import useDropdownStore from "@/stores/main-menu" import { ChevronDownIcon, GlobeIcon } from "@/components/Icons" +import useClickOutside from "@/hooks/useClickOutside" import { useHandleKeyUp } from "@/hooks/useHandleKeyUp" import useLang from "@/hooks/useLang" @@ -28,18 +29,13 @@ export default function LanguageSwitcher({ }: LanguageSwitcherProps) { const intl = useIntl() const currentLanguage = useLang() - const toggleDropdown = useDropdownStore((state) => state.toggleDropdown) + const { + toggleDropdown, + isFooterLanguageSwitcherOpen, + isHeaderLanguageSwitcherMobileOpen, + isHeaderLanguageSwitcherOpen, + } = useDropdownStore() const languageSwitcherRef = useRef(null) - const isFooterLanguageSwitcherOpen = useDropdownStore( - (state) => state.isFooterLanguageSwitcherOpen - ) - const isHeaderLanguageSwitcherOpen = useDropdownStore( - (state) => state.isHeaderLanguageSwitcherOpen - ) - const isHeaderLanguageSwitcherMobileOpen = useDropdownStore( - (state) => state.isHeaderLanguageSwitcherMobileOpen - ) - const isFooter = type === LanguageSwitcherTypesEnum.Footer const isHeader = !isFooter @@ -71,33 +67,11 @@ export default function LanguageSwitcher({ window.scrollTo(0, scrollPosition) }) } - - useEffect(() => { - function handleClickOutside(evt: Event) { - const target = evt.target as HTMLElement - if ( - languageSwitcherRef.current && - target && - !languageSwitcherRef.current.contains(target) && - isLanguageSwitcherOpen && - !isHeaderLanguageSwitcherMobileOpen - ) { - toggleDropdown(dropdownType) - } - } - - if (languageSwitcherRef.current) { - document.addEventListener("click", handleClickOutside) - } - return () => { - document.removeEventListener("click", handleClickOutside) - } - }, [ - dropdownType, - toggleDropdown, - isLanguageSwitcherOpen, - isHeaderLanguageSwitcherMobileOpen, - ]) + useClickOutside( + languageSwitcherRef, + isLanguageSwitcherOpen && !isHeaderLanguageSwitcherMobileOpen, + () => toggleDropdown(dropdownType) + ) const classNames = languageSwitcherVariants({ color, position }) diff --git a/hooks/useClickOutside.ts b/hooks/useClickOutside.ts new file mode 100644 index 000000000..b9862c059 --- /dev/null +++ b/hooks/useClickOutside.ts @@ -0,0 +1,24 @@ +import { useEffect } from "react" + +export default function useClickOutside( + ref: React.RefObject, + isOpen: boolean, + callback: () => void +) { + useEffect(() => { + function handleClickOutside(evt: Event) { + const target = evt.target as HTMLElement + if (ref.current && target && !ref.current.contains(target) && isOpen) { + callback() + } + } + + if (isOpen) { + document.addEventListener("click", handleClickOutside) + } + + return () => { + document.removeEventListener("click", handleClickOutside) + } + }, [ref, isOpen, callback]) +} diff --git a/hooks/useMediaQuery.ts b/hooks/useMediaQuery.ts new file mode 100644 index 000000000..bbb9eabac --- /dev/null +++ b/hooks/useMediaQuery.ts @@ -0,0 +1,21 @@ +import { useEffect, useState } from "react" + +function useMediaQuery(query: string) { + const [isMatch, setIsMatch] = useState(false) + + useEffect(() => { + const media = window.matchMedia(query) + if (media.matches !== isMatch) { + setIsMatch(media.matches) + } + + const listener = () => setIsMatch(media.matches) + media.addEventListener("change", listener) + + return () => media.removeEventListener("change", listener) + }, [isMatch, query]) + + return isMatch +} + +export default useMediaQuery From 2886084a825442a55d8d3ce1346662100c3d2634 Mon Sep 17 00:00:00 2001 From: Christel Westerberg Date: Thu, 19 Sep 2024 14:07:45 +0200 Subject: [PATCH 02/30] feat: add communication preferences feat: add generatePreferencesLink feat: add subscriberId endpoint --- .env.local.example | 2 + .../my-pages/profile/@communication/page.tsx | 8 +- .../my-pages/profile/@creditCards/page.tsx | 3 - .../(protected)/my-pages/profile/layout.tsx | 3 +- .../Profile/ManagePreferencesButton/index.tsx | 51 ++++++++++++ .../managePreferencesButton.module.css | 3 + env/server.ts | 2 + i18n/dictionaries/da.json | 2 + i18n/dictionaries/de.json | 2 + i18n/dictionaries/en.json | 2 + i18n/dictionaries/fi.json | 2 + i18n/dictionaries/no.json | 2 + i18n/dictionaries/sv.json | 3 + lib/api/endpoints.ts | 3 + next-env.d.ts | 2 +- server/routers/user/mutation.ts | 77 ++++++++++++++++++- server/routers/user/output.ts | 4 + 17 files changed, 158 insertions(+), 13 deletions(-) create mode 100644 components/Profile/ManagePreferencesButton/index.tsx create mode 100644 components/Profile/ManagePreferencesButton/managePreferencesButton.module.css diff --git a/.env.local.example b/.env.local.example index 6d842230e..16e56afa3 100644 --- a/.env.local.example +++ b/.env.local.example @@ -19,6 +19,8 @@ DESIGN_SYSTEM_ACCESS_TOKEN="" NEXTAUTH_REDIRECT_PROXY_URL="http://localhost:3000/api/web/auth" NEXTAUTH_SECRET="" REVALIDATE_SECRET="" +SALESFORCE_PREFRENCE_BASE_URL="https://mc31njyvc80x-2b9wg-24jxcj5yq.pub.sfmc-content.com/disfelgm4fv" + SEAMLESS_LOGIN_DA="http://www.example.dk/updatelogin" SEAMLESS_LOGIN_DE="http://www.example.de/updatelogin" SEAMLESS_LOGIN_EN="http://www.example.com/updatelogin" diff --git a/app/[lang]/(live)/(protected)/my-pages/profile/@communication/page.tsx b/app/[lang]/(live)/(protected)/my-pages/profile/@communication/page.tsx index fb15f24cc..1cc5c648f 100644 --- a/app/[lang]/(live)/(protected)/my-pages/profile/@communication/page.tsx +++ b/app/[lang]/(live)/(protected)/my-pages/profile/@communication/page.tsx @@ -1,4 +1,5 @@ import { ArrowRightIcon } from "@/components/Icons" +import ManagePreferencesButton from "@/components/Profile/ManagePreferencesButton" import Link from "@/components/TempDesignSystem/Link" import Body from "@/components/TempDesignSystem/Text/Body" import Subtitle from "@/components/TempDesignSystem/Text/Subtitle" @@ -27,12 +28,7 @@ export default async function CommunicationSlot({ })} - - - - {formatMessage({ id: "Manage preferences" })} - - + ) } diff --git a/app/[lang]/(live)/(protected)/my-pages/profile/@creditCards/page.tsx b/app/[lang]/(live)/(protected)/my-pages/profile/@creditCards/page.tsx index a37b0047b..4dbfc1ab4 100644 --- a/app/[lang]/(live)/(protected)/my-pages/profile/@creditCards/page.tsx +++ b/app/[lang]/(live)/(protected)/my-pages/profile/@creditCards/page.tsx @@ -1,4 +1,3 @@ -import { env } from "@/env/server" import { serverClient } from "@/lib/trpc/server" import AddCreditCardButton from "@/components/Profile/AddCreditCardButton" @@ -17,8 +16,6 @@ export default async function CreditCardSlot({ params }: PageArgs) { const { formatMessage } = await getIntl() const creditCards = await serverClient().user.creditCards() - const { lang } = params - return (
diff --git a/app/[lang]/(live)/(protected)/my-pages/profile/layout.tsx b/app/[lang]/(live)/(protected)/my-pages/profile/layout.tsx index cdf46a35d..73496fe4e 100644 --- a/app/[lang]/(live)/(protected)/my-pages/profile/layout.tsx +++ b/app/[lang]/(live)/(protected)/my-pages/profile/layout.tsx @@ -15,8 +15,7 @@ export default function ProfileLayout({ {profile} {creditCards} - {/* TODO: Implement communication preferences flow. Hidden until decided on where to send user. */} - {/* {communication} */} + {communication}
) diff --git a/components/Profile/ManagePreferencesButton/index.tsx b/components/Profile/ManagePreferencesButton/index.tsx new file mode 100644 index 000000000..8741888d0 --- /dev/null +++ b/components/Profile/ManagePreferencesButton/index.tsx @@ -0,0 +1,51 @@ +"use client" + +import { useIntl } from "react-intl" + +import { trpc } from "@/lib/trpc/client" + +import ArrowRight from "@/components/Icons/ArrowRight" +import Button from "@/components/TempDesignSystem/Button" +import { toast } from "@/components/TempDesignSystem/Toasts" + +import styles from "./managePreferencesButton.module.css" + +export default function ManagePreferencesButton() { + const intl = useIntl() + const generatePreferencesLink = trpc.user.generatePreferencesLink.useMutation( + { + onSuccess: (preferencesLink) => { + if (preferencesLink) { + window.open(preferencesLink, "_blank") + } else { + toast.error( + intl.formatMessage({ + id: "It is not posible to manage your communication preferences right now, please try again later or contact support if the problem persists.", + }) + ) + } + }, + onError: (e) => { + toast.error( + intl.formatMessage({ + id: "An error occurred trying to manage your preferences, please try again later.", + }) + ) + }, + } + ) + + return ( + + ) +} diff --git a/components/Profile/ManagePreferencesButton/managePreferencesButton.module.css b/components/Profile/ManagePreferencesButton/managePreferencesButton.module.css new file mode 100644 index 000000000..f786a669f --- /dev/null +++ b/components/Profile/ManagePreferencesButton/managePreferencesButton.module.css @@ -0,0 +1,3 @@ +.managePreferencesButton { + justify-self: flex-start; +} diff --git a/env/server.ts b/env/server.ts index 751143e62..623c02e3a 100644 --- a/env/server.ts +++ b/env/server.ts @@ -47,6 +47,7 @@ export const env = createEnv({ .default("false"), PUBLIC_URL: z.string().optional(), REVALIDATE_SECRET: z.string(), + SALESFORCE_PREFRENCE_BASE_URL: z.string(), SEAMLESS_LOGIN_DA: z.string(), SEAMLESS_LOGIN_DE: z.string(), SEAMLESS_LOGIN_EN: z.string(), @@ -104,6 +105,7 @@ export const env = createEnv({ PRINT_QUERY: process.env.PRINT_QUERY, PUBLIC_URL: process.env.PUBLIC_URL, REVALIDATE_SECRET: process.env.REVALIDATE_SECRET, + SALESFORCE_PREFRENCE_BASE_URL: process.env.SALESFORCE_PREFRENCE_BASE_URL, SEAMLESS_LOGIN_DA: process.env.SEAMLESS_LOGIN_DA, SEAMLESS_LOGIN_DE: process.env.SEAMLESS_LOGIN_DE, SEAMLESS_LOGIN_EN: process.env.SEAMLESS_LOGIN_EN, diff --git a/i18n/dictionaries/da.json b/i18n/dictionaries/da.json index 03dc00da5..77e15f396 100644 --- a/i18n/dictionaries/da.json +++ b/i18n/dictionaries/da.json @@ -10,6 +10,7 @@ "Amenities": "Faciliteter", "Amusement park": "Forlystelsespark", "An error occurred when adding a credit card, please try again later.": "Der opstod en fejl under tilføjelse af et kreditkort. Prøv venligst igen senere.", + "An error occurred trying to manage your preferences, please try again later.": "Der opstod en fejl under forsøget på at administrere dine præferencer. Prøv venligst igen senere.", "An error occurred when trying to update profile.": "Der opstod en fejl under forsøg på at opdatere profilen.", "Any changes you've made will be lost.": "Alle ændringer, du har foretaget, går tabt.", "Are you sure you want to remove the card ending with {lastFourDigits} from your member profile?": "Er du sikker på, at du vil fjerne kortet, der slutter me {lastFourDigits} fra din medlemsprofil?", @@ -99,6 +100,7 @@ "How do you want to sleep?": "Hvordan vil du sove?", "How it works": "Hvordan det virker", "Image gallery": "Billedgalleri", + "It is not posible to manage your communication preferences right now, please try again later or contact support if the problem persists.": "Det er ikke muligt at administrere dine kommunikationspræferencer lige nu, prøv venligst igen senere eller kontakt support, hvis problemet fortsætter.", "Join Scandic Friends": "Tilmeld dig Scandic Friends", "Join at no cost": "Tilmeld dig uden omkostninger", "Language": "Sprog", diff --git a/i18n/dictionaries/de.json b/i18n/dictionaries/de.json index 5f79f7d9d..99dbc5dc0 100644 --- a/i18n/dictionaries/de.json +++ b/i18n/dictionaries/de.json @@ -10,6 +10,7 @@ "Amenities": "Annehmlichkeiten", "Amusement park": "Vergnügungspark", "An error occurred when adding a credit card, please try again later.": "Beim Hinzufügen einer Kreditkarte ist ein Fehler aufgetreten. Bitte versuchen Sie es später erneut.", + "An error occurred trying to manage your preferences, please try again later.": "Beim Versuch, Ihre Einstellungen zu verwalten, ist ein Fehler aufgetreten. Bitte versuchen Sie es später erneut.", "An error occurred when trying to update profile.": "Beim Versuch, das Profil zu aktualisieren, ist ein Fehler aufgetreten.", "Any changes you've made will be lost.": "Alle Änderungen, die Sie vorgenommen haben, gehen verloren.", "Are you sure you want to remove the card ending with {lastFourDigits} from your member profile?": "Möchten Sie die Karte mit der Endung {lastFourDigits} wirklich aus Ihrem Mitgliedsprofil entfernen?", @@ -104,6 +105,7 @@ "How do you want to sleep?": "Wie möchtest du schlafen?", "How it works": "Wie es funktioniert", "Image gallery": "Bildergalerie", + "It is not posible to manage your communication preferences right now, please try again later or contact support if the problem persists.": "Es ist derzeit nicht möglich, Ihre Kommunikationseinstellungen zu verwalten. Bitte versuchen Sie es später erneut oder wenden Sie sich an den Support, wenn das Problem weiterhin besteht.", "Join Scandic Friends": "Treten Sie Scandic Friends bei", "km to city center": "km bis zum Stadtzentrum", "Language": "Sprache", diff --git a/i18n/dictionaries/en.json b/i18n/dictionaries/en.json index fe95c44b6..64ff97c27 100644 --- a/i18n/dictionaries/en.json +++ b/i18n/dictionaries/en.json @@ -10,6 +10,7 @@ "Amenities": "Amenities", "Amusement park": "Amusement park", "An error occurred when adding a credit card, please try again later.": "An error occurred when adding a credit card, please try again later.", + "An error occurred trying to manage your preferences, please try again later.": "An error occurred trying to manage your preferences, please try again later.", "An error occurred when trying to update profile.": "An error occurred when trying to update profile.", "Any changes you've made will be lost.": "Any changes you've made will be lost.", "Are you sure you want to remove the card ending with {lastFourDigits} from your member profile?": "Are you sure you want to remove the card ending with {lastFourDigits} from your member profile?", @@ -103,6 +104,7 @@ "How do you want to sleep?": "How do you want to sleep?", "How it works": "How it works", "Image gallery": "Image gallery", + "It is not posible to manage your communication preferences right now, please try again later or contact support if the problem persists.": "It is not posible to manage your communication preferences right now, please try again later or contact support if the problem persists.", "Join Scandic Friends": "Join Scandic Friends", "Join at no cost": "Join at no cost", "Language": "Language", diff --git a/i18n/dictionaries/fi.json b/i18n/dictionaries/fi.json index 5485d1871..870acb18e 100644 --- a/i18n/dictionaries/fi.json +++ b/i18n/dictionaries/fi.json @@ -10,6 +10,7 @@ "Amenities": "Mukavuudet", "Amusement park": "Huvipuisto", "An error occurred when adding a credit card, please try again later.": "Luottokorttia lisättäessä tapahtui virhe. Yritä myöhemmin uudelleen.", + "An error occurred trying to manage your preferences, please try again later.": "Asetusten hallinnassa tapahtui virhe. Yritä myöhemmin uudelleen.", "An error occurred when trying to update profile.": "Profiilia päivitettäessä tapahtui virhe.", "Any changes you've made will be lost.": "Kaikki tekemäsi muutokset menetetään.", "Are you sure you want to remove the card ending with {lastFourDigits} from your member profile?": "Haluatko varmasti poistaa kortin, joka päättyy numeroon {lastFourDigits} jäsenprofiilistasi?", @@ -99,6 +100,7 @@ "How do you want to sleep?": "Kuinka haluat nukkua?", "How it works": "Kuinka se toimii", "Image gallery": "Kuvagalleria", + "It is not posible to manage your communication preferences right now, please try again later or contact support if the problem persists.": "Viestintäasetuksiasi ei voi hallita juuri nyt. Yritä myöhemmin uudelleen tai ota yhteyttä tukeen, jos ongelma jatkuu.", "Join Scandic Friends": "Liity jäseneksi", "Join at no cost": "Liity maksutta", "Language": "Kieli", diff --git a/i18n/dictionaries/no.json b/i18n/dictionaries/no.json index 395143f40..65fa174b5 100644 --- a/i18n/dictionaries/no.json +++ b/i18n/dictionaries/no.json @@ -10,6 +10,7 @@ "Amenities": "Fasiliteter", "Amusement park": "Tivoli", "An error occurred when adding a credit card, please try again later.": "Det oppstod en feil ved å legge til et kredittkort. Prøv igjen senere.", + "An error occurred trying to manage your preferences, please try again later.": "Det oppstod en feil under forsøket på å administrere innstillingene dine. Prøv igjen senere.", "An error occurred when trying to update profile.": "Det oppstod en feil under forsøk på å oppdatere profilen.", "Any changes you've made will be lost.": "Eventuelle endringer du har gjort, går tapt.", "Are you sure you want to remove the card ending with {lastFourDigits} from your member profile?": "Er du sikker på at du vil fjerne kortet som slutter på {lastFourDigits} fra medlemsprofilen din?", @@ -99,6 +100,7 @@ "How do you want to sleep?": "Hvordan vil du sove?", "How it works": "Hvordan det fungerer", "Image gallery": "Bildegalleri", + "It is not posible to manage your communication preferences right now, please try again later or contact support if the problem persists.": "Det er ikke mulig å administrere kommunikasjonspreferansene dine akkurat nå, prøv igjen senere eller kontakt support hvis problemet vedvarer.", "Join Scandic Friends": "Bli med i Scandic Friends", "Join at no cost": "Bli med uten kostnad", "Language": "Språk", diff --git a/i18n/dictionaries/sv.json b/i18n/dictionaries/sv.json index 21bf5397e..56274dfad 100644 --- a/i18n/dictionaries/sv.json +++ b/i18n/dictionaries/sv.json @@ -10,6 +10,7 @@ "Amenities": "Bekvämligheter", "Amusement park": "Nöjespark", "An error occurred when adding a credit card, please try again later.": "Ett fel uppstod när ett kreditkort lades till, försök igen senare.", + "An error occurred trying to manage your preferences, please try again later.": "Ett fel uppstod när du försökte hantera dina inställningar, försök igen senare.", "An error occurred when trying to update profile.": "Ett fel uppstod när du försökte uppdatera profilen.", "Any changes you've made will be lost.": "Alla ändringar du har gjort kommer att gå förlorade.", "Are you sure you want to remove the card ending with {lastFourDigits} from your member profile?": "Är du säker på att du vill ta bort kortet som slutar med {lastFourDigits} från din medlemsprofil?", @@ -99,6 +100,8 @@ "How do you want to sleep?": "Hur vill du sova?", "How it works": "Hur det fungerar", "Image gallery": "Bildgalleri", + "It is not posible to manage your communication preferences right now, please try again later or contact support if the problem persists.": "Det gick inte att hantera dina kommunikationsinställningar just nu, försök igen senare eller kontakta supporten om problemet kvarstår.", + "Join Scandic Friends": "Gå med i Scandic Friends", "Join at no cost": "Gå med utan kostnad", "Language": "Språk", diff --git a/lib/api/endpoints.ts b/lib/api/endpoints.ts index 213e40b37..b31f32b5f 100644 --- a/lib/api/endpoints.ts +++ b/lib/api/endpoints.ts @@ -21,6 +21,9 @@ export namespace endpoints { upcomingStays = "booking/v1/Stays/future", rewards = `${profile}/reward`, tierRewards = `${profile}/TierRewards`, + intiateSaveCard = `${creditCards}/initiateSaveCard`, + deleteCreditCard = `${profile}/creditCards`, + subscriberId = `${profile}/SubscriberId`, } } diff --git a/next-env.d.ts b/next-env.d.ts index 4f11a03dc..40c3d6809 100644 --- a/next-env.d.ts +++ b/next-env.d.ts @@ -2,4 +2,4 @@ /// // NOTE: This file should not be edited -// see https://nextjs.org/docs/basic-features/typescript for more information. +// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information. diff --git a/server/routers/user/mutation.ts b/server/routers/user/mutation.ts index 38bb458e3..7e99c142f 100644 --- a/server/routers/user/mutation.ts +++ b/server/routers/user/mutation.ts @@ -1,5 +1,11 @@ +import { metrics } from "@opentelemetry/api" + +import { env } from "@/env/server" import * as api from "@/lib/api" -import { initiateSaveCardSchema } from "@/server/routers/user/output" +import { + initiateSaveCardSchema, + subscriberIdSchema, +} from "@/server/routers/user/output" import { protectedProcedure, router } from "@/server/trpc" import { @@ -8,6 +14,17 @@ import { saveCreditCardInput, } from "./input" +const meter = metrics.getMeter("trpc.user") +const generatePreferencesLinkCounter = meter.createCounter( + "trpc.user.generatePreferencesLink" +) +const generatePreferencesLinkSuccessCounter = meter.createCounter( + "trpc.user.generatePreferencesLink-success" +) +const generatePreferencesLinkFailCounter = meter.createCounter( + "trpc.user.generatePreferencesLink-fail" +) + export const userMutationRouter = router({ creditCard: router({ add: protectedProcedure.input(addCreditCardInput).mutation(async function ({ @@ -128,4 +145,62 @@ export const userMutationRouter = router({ return true }), }), + generatePreferencesLink: protectedProcedure.mutation(async function ({ + ctx, + }) { + generatePreferencesLinkCounter.add(1) + const apiResponse = await api.get(api.endpoints.v1.subscriberId, { + headers: { + Authorization: `Bearer ${ctx.session.token.access_token}`, + }, + }) + + if (!apiResponse.ok) { + const text = await apiResponse.text() + generatePreferencesLinkFailCounter.add(1, { + error_type: "http_error", + error: JSON.stringify({ + status: apiResponse.status, + statusText: apiResponse.statusText, + text, + }), + }) + console.error( + "api.user.subscriberId error ", + JSON.stringify({ + error: { + status: apiResponse.status, + statusText: apiResponse.statusText, + text, + }, + }) + ) + return null + } + + const data = await apiResponse.json() + + const validatedData = subscriberIdSchema.safeParse(data) + + if (!validatedData.success) { + generatePreferencesLinkSuccessCounter.add(1, { + error_type: "validation_error", + error: JSON.stringify(validatedData.error), + }) + console.error( + "api.user.generatePreferencesLink validation error", + JSON.stringify({ + error: validatedData.error, + }) + ) + console.error(validatedData.error.format()) + + return null + } + const preferencesLink = new URL(env.SALESFORCE_PREFRENCE_BASE_URL) + preferencesLink.searchParams.set("subKey", validatedData.data.subscriberId) + + generatePreferencesLinkSuccessCounter.add(1) + return preferencesLink.toString() + }), }) diff --git a/server/routers/user/output.ts b/server/routers/user/output.ts index 8ee482057..9c5e955ab 100644 --- a/server/routers/user/output.ts +++ b/server/routers/user/output.ts @@ -234,3 +234,7 @@ export const initiateSaveCardSchema = z.object({ type: z.string(), }), }) + +export const subscriberIdSchema = z.object({ + subscriberId: z.string(), +}) From 44747058d0154336727b58c9b4407cae02f02354 Mon Sep 17 00:00:00 2001 From: Christel Westerberg Date: Mon, 30 Sep 2024 09:52:33 +0200 Subject: [PATCH 03/30] fix: loyalty levels fetch in rsc for mobile menu fix: get loyalty level in rsc fix: typo --- .env.local.example | 2 +- .../Header/MainMenu/MyPagesMenu/index.tsx | 2 ++ .../MainMenu/MyPagesMenuContent/index.tsx | 10 +------- .../MainMenu/MyPagesMenuWrapper/index.tsx | 9 +++++++ .../MainMenu/MyPagesMobileMenu/index.tsx | 2 ++ env/server.ts | 4 +-- lib/api/endpoints.ts | 2 -- next-env.d.ts | 2 +- .../contentstack/loyaltyLevel/query.ts | 25 ++++++++++++++----- server/routers/user/mutation.ts | 2 +- types/components/header/myPagesMenu.ts | 2 ++ 11 files changed, 40 insertions(+), 22 deletions(-) diff --git a/.env.local.example b/.env.local.example index 16e56afa3..ab0b7ee72 100644 --- a/.env.local.example +++ b/.env.local.example @@ -19,7 +19,7 @@ DESIGN_SYSTEM_ACCESS_TOKEN="" NEXTAUTH_REDIRECT_PROXY_URL="http://localhost:3000/api/web/auth" NEXTAUTH_SECRET="" REVALIDATE_SECRET="" -SALESFORCE_PREFRENCE_BASE_URL="https://mc31njyvc80x-2b9wg-24jxcj5yq.pub.sfmc-content.com/disfelgm4fv" +SALESFORCE_PREFERENCE_BASE_URL="https://cloud.emails.scandichotels.com/preference-center" SEAMLESS_LOGIN_DA="http://www.example.dk/updatelogin" SEAMLESS_LOGIN_DE="http://www.example.de/updatelogin" diff --git a/components/Header/MainMenu/MyPagesMenu/index.tsx b/components/Header/MainMenu/MyPagesMenu/index.tsx index a99f95a89..fb739399c 100644 --- a/components/Header/MainMenu/MyPagesMenu/index.tsx +++ b/components/Header/MainMenu/MyPagesMenu/index.tsx @@ -24,6 +24,7 @@ export default function MyPagesMenu({ membership, navigation, user, + membershipLevel, }: MyPagesMenuProps) { const intl = useIntl() const myPagesMenuRef = useRef(null) @@ -57,6 +58,7 @@ export default function MyPagesMenu({ {isMyPagesMenuOpen ? (
{user ? ( <> // NOTE: This file should not be edited -// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information. +// see https://nextjs.org/docs/basic-features/typescript for more information. diff --git a/server/routers/contentstack/loyaltyLevel/query.ts b/server/routers/contentstack/loyaltyLevel/query.ts index 58882dde7..c531fbebb 100644 --- a/server/routers/contentstack/loyaltyLevel/query.ts +++ b/server/routers/contentstack/loyaltyLevel/query.ts @@ -31,6 +31,17 @@ const getAllLoyaltyLevelFailCounter = meter.createCounter( "trpc.contentstack.loyaltyLevel.all-fail" ) +const getByLevelLoyaltyLevelCounter = meter.createCounter( + "trpc.contentstack.loyaltyLevel.byLevel" +) + +const getByLevelLoyaltyLevelSuccessCounter = meter.createCounter( + "trpc.contentstack.loyaltyLevel.byLevel-success" +) +const getByLevelLoyaltyLevelFailCounter = meter.createCounter( + "trpc.contentstack.loyaltyLevel.byLevel-fail" +) + export async function getAllLoyaltyLevels(ctx: Context) { getAllLoyaltyLevelCounter.add(1) @@ -87,7 +98,9 @@ export async function getAllLoyaltyLevels(ctx: Context) { } export async function getLoyaltyLevel(ctx: Context, level_id: MembershipLevel) { - getAllLoyaltyLevelCounter.add(1) + getByLevelLoyaltyLevelCounter.add(1, { + query: JSON.stringify({ lang: ctx.lang, level_id }), + }) const loyaltyLevelsConfigResponse = await request( GetLoyaltyLevel, @@ -103,10 +116,10 @@ export async function getLoyaltyLevel(ctx: Context, level_id: MembershipLevel) { !loyaltyLevelsConfigResponse.data || !loyaltyLevelsConfigResponse.data.all_loyalty_level.items.length ) { - getAllLoyaltyLevelFailCounter.add(1) + getByLevelLoyaltyLevelFailCounter.add(1) const notFoundError = notFound(loyaltyLevelsConfigResponse) console.error( - "contentstack.loyaltyLevels not found error", + "contentstack.loyaltyLevel not found error", JSON.stringify({ query: { lang: ctx.lang, level_id }, error: { code: notFoundError.code }, @@ -119,10 +132,10 @@ export async function getLoyaltyLevel(ctx: Context, level_id: MembershipLevel) { loyaltyLevelsConfigResponse.data ) if (!validatedLoyaltyLevels.success) { - getAllLoyaltyLevelFailCounter.add(1) + getByLevelLoyaltyLevelFailCounter.add(1) console.error(validatedLoyaltyLevels.error) console.error( - "contentstack.rewards validation error", + "contentstack.loyaltyLevel validation error", JSON.stringify({ query: { lang: ctx.lang, level_id }, error: validatedLoyaltyLevels.error, @@ -131,7 +144,7 @@ export async function getLoyaltyLevel(ctx: Context, level_id: MembershipLevel) { return null } - getAllLoyaltyLevelSuccessCounter.add(1) + getByLevelLoyaltyLevelSuccessCounter.add(1) return validatedLoyaltyLevels.data[0] } diff --git a/server/routers/user/mutation.ts b/server/routers/user/mutation.ts index 7e99c142f..005941090 100644 --- a/server/routers/user/mutation.ts +++ b/server/routers/user/mutation.ts @@ -197,7 +197,7 @@ export const userMutationRouter = router({ return null } - const preferencesLink = new URL(env.SALESFORCE_PREFRENCE_BASE_URL) + const preferencesLink = new URL(env.SALESFORCE_PREFERENCE_BASE_URL) preferencesLink.searchParams.set("subKey", validatedData.data.subscriberId) generatePreferencesLinkSuccessCounter.add(1) diff --git a/types/components/header/myPagesMenu.ts b/types/components/header/myPagesMenu.ts index 22cab2ca7..054dc41df 100644 --- a/types/components/header/myPagesMenu.ts +++ b/types/components/header/myPagesMenu.ts @@ -3,6 +3,7 @@ import { navigationQueryRouter } from "@/server/routers/contentstack/myPages/nav import { FriendsMembership } from "@/utils/user" import type { User } from "@/types/user" +import type { LoyaltyLevel } from "@/server/routers/contentstack/loyaltyLevel/output" type MyPagesNavigation = Awaited< ReturnType<(typeof navigationQueryRouter)["get"]> @@ -12,6 +13,7 @@ export interface MyPagesMenuProps { navigation: MyPagesNavigation user: Pick membership?: FriendsMembership | null + membershipLevel: LoyaltyLevel | null } export interface MyPagesMenuContentProps extends MyPagesMenuProps { From 8d5ed30fc4b714b40d961d61c9ae6e51116df066 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matilda=20Landstr=C3=B6m?= Date: Thu, 5 Sep 2024 11:37:38 +0200 Subject: [PATCH 04/30] mock JSON file --- .../HotelPage/Facilities/mock.json | 16764 ++++++++++++++++ 1 file changed, 16764 insertions(+) create mode 100644 components/ContentType/HotelPage/Facilities/mock.json diff --git a/components/ContentType/HotelPage/Facilities/mock.json b/components/ContentType/HotelPage/Facilities/mock.json new file mode 100644 index 000000000..34f4217c8 --- /dev/null +++ b/components/ContentType/HotelPage/Facilities/mock.json @@ -0,0 +1,16764 @@ +{ + "data": { + "attributes": { + "name": "Scandic Aarhus City", + "operaId": "736", + "keywords": ["aarhus", "århus", "aarhus city"], + "isPublished": true, + "cityId": "504c2772-43b6-414a-913b-40c05eccaddd", + "cityName": "Aarhus", + "ratings": { + "tripAdvisor": { + "numberOfReviews": 1487, + "rating": 4, + "ratingImageUrl": "https://www.tripadvisor.com/img/cdsi/img2/ratings/traveler/4.0-15458-5.svg", + "webUrl": "https://www.tripadvisor.com/Hotel_Review-g189530-d2166717-Reviews-Scandic_Aarhus_City-Aarhus_East_Jutland_Jutland.html?m=15458", + "awards": [] + } + }, + "address": { + "streetAddress": "Østergade 10", + "city": "Aarhus", + "zipCode": "8000", + "country": "Denmark" + }, + "contactInformation": { + "phoneNumber": "+45 89318100", + "faxNumber": "+45 89318111", + "email": "aarhuscity@scandichotels.com", + "websiteUrl": "https://test3.scandichotels.com/hotels/denmark/aarhus/scandic-aarhus-city" + }, + "hotelFacts": { + "checkin": { + "checkInTime": "15:00", + "checkOutTime": "12:00", + "onlineCheckout": false + }, + "ecoLabels": { + "euEcoLabel": false, + "greenGlobeLabel": false, + "nordicEcoLabel": true, + "svanenEcoLabelCertificateNumber": "5055 0095" + }, + "hotelFacilityDetail": { + "breakfast": { + "heading": "Breakfast", + "description": "Breakfast buffet is always included. It’s a tasty mix with healthy and allergy friendly alternatives." + }, + "checkout": { + "heading": "Check out", + "description": "The room is yours until 12:00 on your day of departure. If you wish to check out later than 12:00, please contact the reception (dial 9). \\r\\n \\r\\nWant to avoid queuing at check-out? Look out for an email or text on how to check out easily online." + }, + "gym": { + "heading": "Gym", + "description": "Our beds are comfy, but a workout will cheer you up as well. Have a run on the treadmill or work out in our well-equipped gym – it’s free when staying with us." + }, + "internet": { + "heading": "Internet", + "description": "Free Wi-Fi: Scandic easy. Open your web browser and click to connect!" + }, + "laundry": { + "heading": "Laundry", + "description": "Got laundry that needs taking care of? Just dial 9 for the reception, and we’ll take care of it." + }, + "luggage": { + "heading": "Luggage", + "description": "Do you need to store any luggage after check out? Speak to the reception and we’ll store it for you." + }, + "shop": { + "heading": "Shop", + "description": "When the craving sets in, there’s freshly brewed coffee and lighter meals in our shop to bring up to your room. You can also find necessities such as a toothbrush. \\r\\n \\r\\nOur shop is open around the clock, you will find it next to the reception." + }, + "telephone": { + "heading": "Telephone", + "description": "In case of emergency dial 112 (police, ambulance, fire)." + } + }, + "hotelInformation": { + "accessibility": { + "heading": "Accessibility", + "description": "With the help of smart solutions, we design hotels where all of our guests can be happy. We prioritize accessibility in both our newly built and renovated hotels, constantly improving the standard of what we can offer. As well as technical solutions and practical matters, we believe in care and consideration.", + "link": "https://www.youtube.com/v/7CC38NXYgQk" + }, + "safety": { + "heading": "Safety Information", + "description": "


Once you have settled into your room – make sure you know where you are in the building!
• Study the evacuation plan on the back of the door.
• Check where your nearest emergency exit is
located, for example stairs leading outside.
• Count how many doors there are between your
room and the nearest emergency exit – so you
can find your way even in the dark.
• Check where the fire alarm button and fire
extinguishers are located.

If you discover a fire or smell burning
• If the corridor is full of smoke – stay in your room.
Alert reception or call the emergency number 112.
• Always take a room key with you when you leave
your room. You may come across smoke and need
to go back.
• If the fire is small and limited – use one of the fire
extinguishers located in the corridor.
• If you cannot put out the fire, close the door to the
room that is on fire.

If you hear the fire alarm
• Leave your room if the corridor is free from smoke.
• Take your room key with you and go to the
assembly point via the nearest emergency exit.
• Never use the elevator.

If you cannot leave your room
• Call reception or 112 and explain that you are
stuck in your room. Give them your room number.
• Seal ventilation openings and gaps around the
door with wet towels.
• Move all flammable material away from the
window.
• Go to the window and try to attract attention.
• If the room becomes smoky – open the window
to get some air in.
• Do not jump – wait for instructions from the
rescue services.
• You will see best and breathe most easily near
the floor in a smoke-filled room.

First aid
• A defibrillator (AED) and a first aid kit are available
in reception.

" + }, + "sustainability": { + "heading": "Sustainability Information", + "description": "In 1993, Scandic decided to become a leader in sustainability and drive the development of sustainability in the hotel sector. It was at Scandic that the idea to “hang up your towel if you want to use it again” was formed – an idea that is now the standard in the hotel industry around the world. Sustainability is a part of our values – an integral element of all of the operations that Scandic’s team members manifest in daily work.", + "link": "https://www.youtube.com/watch?v=0td9PfNfT1A" + } + }, + "interior": { + "numberOfBeds": 560, + "numberOfCribs": 15, + "numberOfFloors": 5, + "numberOfRooms": { + "connected": 20, + "forAllergics": 228, + "forDisabled": 25, + "nonSmoking": 228, + "pet": 0, + "withExtraBeds": 97, + "total": 228 + } + }, + "receptionHours": { + "alwaysOpen": true, + "isClosed": false, + "openingTime": "", + "closingTime": "" + }, + "yearBuilt": "2012" + }, + "location": { + "distanceToCentre": 0, + "latitude": 56.15418, + "longitude": 10.20514 + }, + "hotelContent": { + "images": { + "metaData": { + "title": "Superior Plus Room", + "altText": "superior plus room at scandic aarhus city", + "altText_En": "superior plus room at scandic aarhus city", + "copyRight": "Jesper Rais" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/5a5q6ohz5r7xsjxul93n/Scandic_Aarhus_City_Superior_Plus_TT_space.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/ligackcxnyzwmrqmwaqu/Scandic_Aarhus_City_Superior_Plus_TT_space.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/ri4v32ww2rptlj4jzcix/Scandic_Aarhus_City_Superior_Plus_TT_space.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/bxdcn0niti16cmxyzmdz/Scandic_Aarhus_City_Superior_Plus_TT_space.jpg" + } + }, + "texts": { + "facilityInformation": "City break, romantic stay, conference or networking with colleagues and friends? Scandic Aarhus City has it all! Pamper yourself and your family with a few days at our contemporary hotel in the heart of Aarhus, decorated in a Scandinavian style. Treat your tastebuds to a delicious steak from our hotel restaurant, L'øst. Our bar is a cosy place to relax if you're in the mood for an after-work drink, and is a popular meeting place for our guests and locals. From some of our top floor guest rooms, you can enjoy the view of Aarhus City, catching a glimpse of ARoS art museum and its well-known work of art 'The Rainbow', Aarhus harbour as well as the forests and beaches. There are solar panels on the roof that supply our hotel with 90% of the electricity used in our rooms. In the summer, we recommend our homemade honey at the buffet breakfast which comes from bee hives located up on our roof. Our hotel is also one of Denmark’s most accessible hotels, with 25 accessible rooms and it has a fully accessible conference area with modern audiovisual equipment. If you're in the mood for sightseeing and exercise, you can borrow one of our Scandic bicycles and explore Aarhus City on two wheels. You can also increase your heart rate in our modern fitness facilities, which are located below our reception. ", + "surroundingInformation": "You won’t find a place closer to the centre of Aarhus and its many shopping opportunities, cosy cafés and restaurants, as well as sights and attractions, such as Den Gamle By (The Old Town) and ARoS. Scandic Aarhus City is located in Ostergade, and right outside our hotel you'll find 'Strøget', the pedestrian street of Aarhus. Aarhus train station and bus station are just a short distance from our hotel.", + "descriptions": { + "short": "The hotel that has everything! Central location, popular restaurant - L'øst - modern decor, fitness facilities and underground parking. \n", + "medium": "Modern hotel in the heart of Aarhus close to shopping, attractions and transportation. One of our best hotels whether you travel on weekdays or enjoy a weekend break. Don't miss out on a juicy steak in our popular restaurant, L'øst.\n" + } + }, + "restaurantsOverviewPage": { + "restaurantsOverviewPageLinkText": "", + "restaurantsOverviewPageLink": "https://test3.scandichotels.com/hotels/denmark/aarhus/scandic-aarhus-city/restaurant-bar", + "restaurantsContentDescriptionShort": "At our restaurant on Ostergade, the desire to prepare excellent meals is what drives our kitchen. We promise that once you've visited L’øst, you'll return over and over again. ", + "restaurantsContentDescriptionMedium": "At our restaurant on Ostergade, the desire to prepare excellent meals is what drives our kitchen. With a fondness for local produce, the menu changes with the season to always offer you the freshest ingredients. " + } + }, + "detailedFacilities": [ + { + "id": 1829, + "name": "Gym", + "code": "HEA - TRAI", + "applyToAllHotels": false, + "public": true, + "icon": "Gym", + "iconName": "Gym", + "sortOrder": 1700 + }, + { + "id": 1406, + "name": "Parking - additional cost", + "code": "PAR", + "applyToAllHotels": false, + "public": true, + "icon": "None", + "sortOrder": 0 + }, + { + "id": 1378, + "name": "Room service", + "code": "ROO - R/S", + "applyToAllHotels": false, + "public": true, + "icon": "RoomService", + "sortOrder": 400 + }, + { + "id": 1017, + "name": "Meeting rooms", + "code": "MEE", + "applyToAllHotels": false, + "public": true, + "icon": "Meeting", + "sortOrder": 9000 + }, + { + "id": 2072, + "name": "Disabled parking", + "code": "DPA", + "applyToAllHotels": false, + "public": true, + "icon": "None", + "sortOrder": 0 + }, + { + "id": 1014, + "name": "Bar", + "code": "BAR", + "applyToAllHotels": false, + "public": true, + "icon": "Bar", + "sortOrder": 1600 + }, + { + "id": 1607, + "name": "Golf course (0-30 km)", + "code": "GOLF", + "applyToAllHotels": false, + "public": false, + "icon": "None", + "sortOrder": 0 + }, + { + "id": 1833, + "name": "Free WiFi", + "code": "IHF", + "applyToAllHotels": false, + "public": true, + "icon": "FreeWiFi", + "sortOrder": 1900 + }, + { + "id": 1834, + "name": "Laundry service", + "code": "LAU", + "applyToAllHotels": false, + "public": true, + "icon": "LaundryService", + "sortOrder": 200 + }, + { + "id": 1835, + "name": "Pet-friendly rooms", + "code": "PET", + "applyToAllHotels": false, + "public": true, + "icon": "None", + "sortOrder": 0 + }, + { + "id": 1383, + "name": "Restaurant", + "code": "-", + "applyToAllHotels": false, + "public": true, + "icon": "Restaurant", + "sortOrder": 6000 + }, + { + "id": 1408, + "name": "Scandic Shop 24 hrs", + "code": "SHOP", + "applyToAllHotels": false, + "public": true, + "icon": "Shop", + "sortOrder": 100 + }, + { + "id": 5806, + "name": "Meeting / conference facilities", + "code": "MEE - MEETING ", + "applyToAllHotels": false, + "public": true, + "icon": "None", + "sortOrder": 1500 + }, + { + "id": 971, + "name": "Shopping", + "code": "-", + "applyToAllHotels": false, + "public": false, + "icon": "None", + "sortOrder": 0 + }, + { + "id": 956, + "name": "Coffee shop", + "code": "COF", + "applyToAllHotels": false, + "public": true, + "icon": "None", + "sortOrder": 0 + }, + { + "id": 1913, + "name": "Overnight security", + "applyToAllHotels": false, + "public": true, + "icon": "None", + "sortOrder": 0 + }, + { + "id": 229144, + "name": "TV with Chromecast", + "applyToAllHotels": false, + "public": true, + "icon": "None", + "sortOrder": 0 + }, + { + "id": 1407, + "name": "Serves breakfast (always included)", + "code": "-", + "applyToAllHotels": false, + "public": true, + "icon": "None", + "sortOrder": 0 + } + ], + "healthFacilities": [ + { + "type": "Gym", + "content": { + "images": [], + "texts": { + "descriptions": { + "short": "", + "medium": "" + } + } + }, + "openingDetails": { + "useManualOpeningHours": false, + "openingHours": { + "ordinary": { + "alwaysOpen": false, + "isClosed": false, + "openingTime": "06:00", + "closingTime": "22:00" + }, + "weekends": { + "alwaysOpen": false, + "isClosed": false, + "openingTime": "06:00", + "closingTime": "22:00" + } + } + }, + "details": [ + { + "name": "ExternalGym", + "type": "Boolean", + "value": "False" + }, + { + "name": "NameOfExternalGym", + "type": "String" + }, + { + "name": "DistanceToExternalGym", + "type": "Int32", + "value": "0" + } + ] + } + ], + "rewardNight": { + "points": 40000, + "campaign": { + "start": "2020-11-30 23:00:00", + "end": "2020-12-30 23:00:00", + "points": 40000 + } + }, + "pointsOfInterest": [ + { + "name": "Strøget", + "distance": 0, + "category": { + "name": "Transportations", + "group": "Trains" + }, + "location": { + "distanceToCentre": 0, + "latitude": 55.96626, + "longitude": 9.388983 + }, + "isHighlighted": true + }, + { + "name": "ARoS", + "distance": 0.4, + "category": { + "name": "Tourist", + "group": "Star" + }, + "location": { + "distanceToCentre": 0, + "latitude": 56.15392, + "longitude": 10.199716 + }, + "isHighlighted": true + }, + { + "name": "DSB", + "distance": 0.7, + "category": { + "name": "Transportations", + "group": "Trains" + }, + "location": { + "distanceToCentre": 0, + "latitude": 55.8628, + "longitude": 9.83647 + }, + "isHighlighted": true + }, + { + "name": "Den gamle by", + "distance": 1.2, + "category": { + "name": "Tourist", + "group": "Star" + }, + "location": { + "distanceToCentre": 0, + "latitude": 56.158783, + "longitude": 10.192115 + }, + "isHighlighted": true + }, + { + "name": "Tivoli Friheden", + "distance": 2.7, + "category": { + "name": "Tourist", + "group": "Star" + }, + "location": { + "distanceToCentre": 0, + "latitude": 56.1366, + "longitude": 10.197853 + }, + "isHighlighted": true + }, + { + "name": "Moesgaard Museum", + "distance": 9.4, + "category": { + "name": "Museum", + "group": "Star" + }, + "location": { + "distanceToCentre": 0, + "latitude": 56.088715, + "longitude": 10.223502 + }, + "isHighlighted": true + }, + { + "name": "Randers Regnskov", + "distance": 39, + "category": { + "name": "Tourist", + "group": "Star" + }, + "location": { + "distanceToCentre": 0, + "latitude": 56.457123, + "longitude": 10.032533 + }, + "isHighlighted": true + }, + { + "name": "Aarhus Airport", + "distance": 40, + "category": { + "name": "Airport", + "group": "Airport" + }, + "location": { + "distanceToCentre": 0, + "latitude": 56.30823, + "longitude": 10.626351 + }, + "isHighlighted": true + }, + { + "name": "Djurs sommerland", + "distance": 48, + "category": { + "name": "Tourist", + "group": "Star" + }, + "location": { + "distanceToCentre": 0, + "latitude": 56.425213, + "longitude": 10.550971 + }, + "isHighlighted": true + }, + { + "name": "Skandinavisk Dyrepark", + "distance": 49, + "category": { + "name": "Tourist", + "group": "Star" + }, + "location": { + "distanceToCentre": 0, + "latitude": 56.340668, + "longitude": 10.649598 + }, + "isHighlighted": true + }, + { + "name": "Ree Park", + "distance": 54, + "category": { + "name": "Tourist", + "group": "Star" + }, + "location": { + "distanceToCentre": 0, + "latitude": 56.26301, + "longitude": 10.738092 + }, + "isHighlighted": true + }, + { + "name": "Legoland", + "distance": 95, + "category": { + "name": "Tourist", + "group": "Star" + }, + "location": { + "distanceToCentre": 0, + "latitude": 55.73551, + "longitude": 9.126805 + }, + "isHighlighted": true + } + ], + "parking": [ + { + "type": "Garage", + "name": "Q-park", + "address": "Hans Hartvig Seedorf Stræde", + "numberOfChargingSpaces": 5, + "distanceToHotel": 0, + "canMakeReservation": false, + "pricing": { + "freeParking": false, + "paymentType": "CanBePaidAtTheHotel", + "localCurrency": { + "currency": "DKK", + "range": { + "min": 200, + "max": 200 + }, + "ordinary": [ + { + "period": "Hour", + "amount": 28, + "startTime": "", + "endTime": "" + }, + { + "period": "Day", + "amount": 200, + "startTime": "", + "endTime": "" + }, + { + "period": "Night", + "amount": 200, + "startTime": "", + "endTime": "" + }, + { + "period": "AllDay", + "amount": 200, + "startTime": "00:00", + "endTime": "23:59" + } + ], + "weekend": [ + { + "period": "Hour", + "amount": 28, + "startTime": "", + "endTime": "" + }, + { + "period": "Day", + "amount": 200, + "startTime": "", + "endTime": "" + }, + { + "period": "Night", + "amount": 200, + "startTime": "", + "endTime": "" + }, + { + "period": "AllDay", + "amount": 200, + "startTime": "00:00", + "endTime": "23:59" + } + ] + } + } + } + ], + "specialNeedGroups": [ + { + "name": "Entrance", + "specialNeeds": [ + { + "name": "Clear direction signs if disabled entrance is located away from main entrance", + "details": "" + }, + { + "name": "Revolving doors at main entrance", + "details": "" + }, + { + "name": "Wide main entrance door (non revolving) with minimum width of 80 cm", + "details": "" + }, + { + "name": "Door/s can be opened automatically at main entrance (All Scandic)", + "details": "" + }, + { + "name": "Night time door bell accessible from wheelchair (max height 120 cm) (All Scandic)", + "details": "" + }, + { + "name": "No threshold at entrance door (All Scandic)", + "details": "" + }, + { + "name": "Seating available close to main entrance (All Scandic)", + "details": "" + } + ] + }, + { + "name": "Public areas - Other", + "specialNeeds": [ + { + "name": "Corridors in hotel accessible with wheelchair", + "details": "" + }, + { + "name": "At least one computer work station that is accessible for wheelchair users (All Scandic)", + "details": "" + }, + { + "name": "Clear passage to the Scandic Shop with wheelchair (All Scandic)", + "details": "" + }, + { + "name": "Service / guide dogs allowed in hotel (All Scandic)", + "details": "" + } + ] + }, + { + "name": "Meeting areas", + "specialNeeds": [ + { + "name": "Disability toilet available in meeting and conference areas", + "details": "" + }, + { + "name": "Meeting and conference floor / area accessible with wheelchair", + "details": "" + }, + { + "name": "Meeting room door with minimum 80 cm width", + "details": "" + }, + { + "name": "Number of disability toilets available", + "details": "1" + }, + { + "name": "Seating available outside meeting room/s", + "details": "" + }, + { + "name": "Clear signage of hearing loop in meeting and conference areas (All Scandic)", + "details": "" + }, + { + "name": "Portable hearing loop available for meeting rooms (All Scandic)", + "details": "" + } + ] + }, + { + "name": "Disability rooms", + "specialNeeds": [ + { + "name": "Bed can be adjusted for legs and back", + "details": "" + }, + { + "name": "Bed height is 55 cm from floor to top of mattress", + "details": "" + }, + { + "name": "Bed on legs", + "details": "" + }, + { + "name": "Wardrobe without doors or with sliding doors", + "details": "" + }, + { + "name": "Light switch reachable from wheelchair", + "details": "" + }, + { + "name": "Minimum of 80 cm free floor space around the bed", + "details": "" + }, + { + "name": "Wooden floors in room", + "details": "" + }, + { + "name": "Number of disability rooms", + "details": "25" + }, + { + "name": "Space under desk accessible for wheelchairs (All Scandic)", + "details": "" + }, + { + "name": "Rail for coat hanger at max height 120 cm (All Scandic)", + "details": "" + }, + { + "name": "TV remote on side table (all scandic hotels)", + "details": "" + }, + { + "name": "Wardrobe shelf accessible from wheelchair (All Scandic)", + "details": "" + }, + { + "name": "Width of corridor in room is at least 80 cm (All Scandic)", + "details": "" + } + ] + }, + { + "name": "Disability rooms - bathroom", + "specialNeeds": [ + { + "name": "Accessible bathtubs", + "details": "" + }, + { + "name": "Alarm / Emergency codes or buttons in bathroom", + "details": "" + }, + { + "name": "Available free space in bathroom", + "details": "size" + }, + { + "name": "No threshold into bathroom", + "details": "" + }, + { + "name": "Other height of wash basin", + "details": "No" + }, + { + "name": "Other width of bathroom door", + "details": "size" + }, + { + "name": "Shower glass wall", + "details": "" + }, + { + "name": "Single lever basin mixer", + "details": "" + }, + { + "name": "Sliding doors into bathroom", + "details": "" + }, + { + "name": "Thermostatic mixer in shower", + "details": "" + }, + { + "name": "Wash basin minimum height 78 cm", + "details": "" + }, + { + "name": "Width of bathroom door is at least 80 cm wide", + "details": "" + }, + { + "name": "Width of shower glass wall passage", + "details": "Ajustable" + }, + { + "name": "Bathroom towels reachable from wheelchair (All Scandic)", + "details": "" + }, + { + "name": "Handrail on the inside of the bathroom door if door opens outwards (All Scandic)", + "details": "" + }, + { + "name": "Hooks reachable from wheelchair (All Scandic)", + "details": "" + }, + { + "name": "Shower handle placed in its lowest position when guest arrives (All Scandic)", + "details": "" + }, + { + "name": "Shower stool available (All Scandic)", + "details": "" + }, + { + "name": "Shower creme / shampoo dispenser in shower reachable from wheelchair (All Scandic)", + "details": "" + }, + { + "name": "Space under wash basin accessible for wheelchairs (All Scandic)", + "details": "" + }, + { + "name": "Toilet paper reachable from toilet (All Scandic)", + "details": "" + }, + { + "name": "View in mirror from wheelchair (All Scandic)", + "details": "" + } + ] + }, + { + "name": "Public areas - Reception", + "specialNeeds": [ + { + "name": "One part of reception counter is of appropriate height for guests in wheelchairs", + "details": "" + }, + { + "name": "Seating and table available close to front desk", + "details": "" + }, + { + "name": "Cane holders at front desk (All Scandic)", + "details": "" + }, + { + "name": "Clear signs of hearing loop and wake up alarm (All Scandic)", + "details": "" + }, + { + "name": "Clear walkway between reception and lifts (All Scandic)", + "details": "" + }, + { + "name": "Clear walkway to reception from entrance (All Scandic)", + "details": "" + }, + { + "name": "Hearing induction loop in reception desk (All Scandic)", + "details": "" + }, + { + "name": "Vibrating wake up/fire alarm device can be borrowed from hotel reception (All Scandic)", + "details": "" + } + ] + }, + { + "name": "Public areas - Restaurant and bar", + "specialNeeds": [ + { + "name": "Buffet breakfast has appropriate height (max 90 cm) for guests in wheelchairs", + "details": "" + }, + { + "name": "Level differences in restaurant", + "details": "" + }, + { + "name": "Other width of walkway to restaurant", + "details": "Elevator between" + }, + { + "name": "Walkway to bar is at least 100 cm wide", + "details": "" + }, + { + "name": "Walkway to restaurant is at least 100 cm wide", + "details": "" + }, + { + "name": "Access ramp or lift in restaurant", + "details": "" + }, + { + "name": "Special needs menu", + "details": "" + }, + { + "name": "Braille / large print menus", + "details": "" + } + ] + }, + { + "name": "Public areas - Lifts and stairs", + "specialNeeds": [ + { + "name": "At least one lift with door widht of 80 cm when open", + "details": "" + }, + { + "name": "Control panel buttons marked in Braille inside lift", + "details": "" + }, + { + "name": "Voice announciation for floor indication and direction of travel", + "details": "" + }, + { + "name": "First and last steps in stairs are clearly marked (contrasting colours or grooved steps)", + "details": "" + }, + { + "name": "Door opener or automatic door/s avaliable for lift", + "details": "" + } + ] + }, + { + "name": "Public areas - Public toilets", + "specialNeeds": [ + { + "name": "Accessible bathroom/s available in public areas", + "details": "" + }, + { + "name": "Alarm / Emergency codes or buttons in bathroom", + "details": "" + }, + { + "name": "Bathroom door is at least 80 cm wide", + "details": "" + }, + { + "name": "Foldable armrests by the toilet", + "details": "" + }, + { + "name": "Hooks reachable from wheelchair", + "details": "" + }, + { + "name": "Number of disability bathrooms available", + "details": "4" + }, + { + "name": "Wash basin minimum height of 78 cm", + "details": "" + }, + { + "name": "Handrail on inside of bathroom door/s if door/s open outwards", + "details": "" + }, + { + "name": "Space under wash basin accessible for wheelchairs", + "details": "" + } + ] + }, + { + "name": "Parking", + "specialNeeds": [ + { + "name": "Clear illuminated and defined path between parking and entrance", + "details": "" + }, + { + "name": "Disabled parking", + "details": "" + }, + { + "name": "Distance from parking to entrance (m)", + "details": "10 meters" + }, + { + "name": "Number of disabled parking bays with min width of 3.6 m each", + "details": "2" + }, + { + "name": "Parking bays clearly marked with disabled symbols", + "details": "X" + }, + { + "name": "Level differences in path from parking to hotel", + "details": "Basement" + } + ] + }, + { + "name": "Other", + "specialNeeds": [ + { + "name": "Staff trained to cater for disabled guests (All Scandic)", + "details": "" + } + ] + }, + { + "name": "Allergy-friendly rooms", + "specialNeeds": [ + { + "name": "Bed linen and towels are washed with eco-friendly detergent", + "details": "" + }, + { + "name": "Cleaning according to the cleaning concept for allergy room", + "details": "" + }, + { + "name": "In the room there has been no smoking or fur animals", + "details": "" + }, + { + "name": "Unscented bathroom products labeled with Asthma Allergy Nordic", + "details": "" + }, + { + "name": "The pillows / quilts are made of synthetic material", + "details": "" + }, + { + "name": "The rooms are located on a separate floor or in a separate corridor where there are no fur animals", + "details": "" + }, + { + "name": "The rooms are not freshly painted in the last three months.", + "details": "" + }, + { + "name": "The rooms have no bedspreads/bed blankets or decorative cushions", + "details": "" + }, + { + "name": "The rooms have windows that can be opened (a ventilation window is enough)", + "details": "" + }, + { + "name": "The rooms have wooden floors", + "details": "" + } + ] + } + ], + "socialMedia": { + "instagram": "", + "facebook": "https://www.facebook.com/ScandicAarhusCity" + }, + "meta": { + "specialAlerts": [ + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-06-01", + "endDate": "2023-06-11" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2022-09-02", + "endDate": "2022-09-21" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-04-20", + "endDate": "2023-05-01" + }, + { + "type": "Hotel", + "displayInBookingFlow": true, + "startDate": "2023-11-16", + "endDate": "2023-12-24" + } + ] + }, + "isActive": true, + "gallery": { + "heroImageIds": [ + { + "metaData": { + "title": "Facade", + "altText": "Facade", + "altText_En": "Facade", + "copyRight": "Elin Strömberg © 2015" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/oue3sg5sq0l6jg7kr4b3/scandic-aarhuscity-facade-1.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/kbmjiiazxjfp647krfnr/scandic-aarhuscity-facade-1.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/5icsc3n1wj1ugyr7056b/scandic-aarhuscity-facade-1.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/6zh46dvzs8htl7zlqo96/scandic-aarhuscity-facade-1.jpg" + } + }, + { + "metaData": { + "title": "Meeting area", + "altText": "Meeting break out area", + "altText_En": "Meeting break out area", + "copyRight": "Elin Strömberg © 2015" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/mp3jc29s1iqyn683pqcc/scandic-aarhuscity-conference-meetingarea-2.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/cz9a44t0o9s1wh0kxi0q/scandic-aarhuscity-conference-meetingarea-2.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/xqnlaezqvmetyfev3g2s/scandic-aarhuscity-conference-meetingarea-2.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/281q7dleu35ivgost1mi/scandic-aarhuscity-conference-meetingarea-2.jpg" + } + }, + { + "metaData": { + "title": "Superior room", + "altText": "Scandic Aarhus City, twin upgrade superior", + "altText_En": "Scandic Aarhus City, twin upgrade superior", + "copyRight": "Mads Armsgaard/ Graae, Armgaard & Bangsbo Photography" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/1ss15jncd6oln7vk73ke/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/y0ez2j8yi09htncdk39r/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/eyzfuqarqfgj21ywtrfh/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/kw5n250ep7zf40e1e0d2/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg" + } + }, + { + "metaData": { + "title": "Scandic Aarhus City, Twin Superior Extra Room", + "altText": "Scandic Aarhus City, Twin Superior Extra Room", + "altText_En": "Scandic Aarhus City, Twin Superior Extra Room", + "copyRight": "Holger Fell/ Panobyte, International" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/x1es4vcav0eeh51ka16o/Scandic-Aarhus-City-Interior-room-Superior-Extra-T.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/8c9gr0thdsit081bmya6/Scandic-Aarhus-City-Interior-room-Superior-Extra-T.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/dmw3mmfjzl3ozgo20i7j/Scandic-Aarhus-City-Interior-room-Superior-Extra-T.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/sh8e1hy5xklr7tdqr99t/Scandic-Aarhus-City-Interior-room-Superior-Extra-T.jpg" + } + }, + { + "metaData": { + "title": "The Lobby at Scandic Aarhus City decorated for banquet.", + "altText": "The Lobby at Scandic Aarhus City decorated for banquet.", + "altText_En": "The Lobby at Scandic Aarhus City decorated for banquet.", + "copyRight": "Mads Armgaard." + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/91h0u60tswog6v99nfjt/GAB4060_Scandic_AarhusC_081.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/c6dadqj45ymxwiyrc3ki/GAB4060_Scandic_AarhusC_081.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/4mdviknekg0o6b7pl3l3/GAB4060_Scandic_AarhusC_081.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/4cebd4qyq68oixx060fw/GAB4060_Scandic_AarhusC_081.jpg" + } + }, + { + "metaData": { + "title": "Riisskov 2, Meeting room", + "altText": "Conference room Riis Skov 2", + "altText_En": "Conference room Riis Skov 2", + "copyRight": "Elin Strömberg © 2015" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/f3nwdoa3at28soit9m6c/scandic-aarhuscity-conference-riisskov2.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/0rabut14ycdettb6jvsv/scandic-aarhuscity-conference-riisskov2.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/eal9w6n0zilw3u2z75s0/scandic-aarhuscity-conference-riisskov2.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/c51pqsn700pczd9l3q6z/scandic-aarhuscity-conference-riisskov2.jpg" + } + } + ], + "smallerImageIds": [ + { + "metaData": { + "title": "Facade", + "altText": "Facade", + "altText_En": "Facade", + "copyRight": "Elin Strömberg © 2015" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/oue3sg5sq0l6jg7kr4b3/scandic-aarhuscity-facade-1.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/kbmjiiazxjfp647krfnr/scandic-aarhuscity-facade-1.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/5icsc3n1wj1ugyr7056b/scandic-aarhuscity-facade-1.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/6zh46dvzs8htl7zlqo96/scandic-aarhuscity-facade-1.jpg" + } + }, + { + "metaData": { + "title": "Reception", + "altText": "Scandic Aarhus City, reception", + "altText_En": "Scandic Aarhus City, reception", + "copyRight": "Mads Armgaard/ Graae/ Armgaard & Bangsbo Photography" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/72p1zeys0w32zsenz30l/Scandic-Aarhus-City-Interior-reception001.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/8jxws1syuvk7capdy610/Scandic-Aarhus-City-Interior-reception001.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/911lkjady9iypykkm0uv/Scandic-Aarhus-City-Interior-reception001.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/i1waz04uj0zrcwu7j7e3/Scandic-Aarhus-City-Interior-reception001.jpg" + } + }, + { + "metaData": { + "title": "Lobby", + "altText": "Scandic Aarhus City, foyer, lobby, sofa, relax area", + "altText_En": "Scandic Aarhus City, foyer, lobby, sofa, relax area", + "copyRight": "Mads Armgaard/ Graae/ Armgaard & Bangsbo Photography" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/zgb3kdpvwj4fx5wjrmke/Scandic-Aarhus-City-Interior-lobby-sofa-relax-area.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/yl758o6wu106c9jz7c9u/Scandic-Aarhus-City-Interior-lobby-sofa-relax-area.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/zk25k8l209tfmyq8hlce/Scandic-Aarhus-City-Interior-lobby-sofa-relax-area.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/1ysbbvv5eipcq25mj90v/Scandic-Aarhus-City-Interior-lobby-sofa-relax-area.jpg" + } + }, + { + "metaData": { + "title": "Lobby area", + "altText": "Lobby", + "altText_En": "Lobby", + "copyRight": "Elin Strömberg © 2015" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/26fh6i19a5l7gm2n3w1y/scandic-aarhuscity-conference-meetingarea-1.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/njgwk2z067p0v2h0rrn3/scandic-aarhuscity-conference-meetingarea-1.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/ab925f1lxwzgl9moy6zd/scandic-aarhuscity-conference-meetingarea-1.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/tfuua9cu4lrbi4mvmwgk/scandic-aarhuscity-conference-meetingarea-1.jpg" + } + }, + { + "metaData": { + "title": "Room", + "altText": "Scandic Aarhus City, Connection Door", + "altText_En": "Scandic Aarhus City, Connection Door", + "copyRight": "Holger Fell" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/ul98bsotsm7cr1acglkc/Scandic-Aarhus-City-Interior-room-Connection-Door.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/gkyd2ywbt1g0fecgjore/Scandic-Aarhus-City-Interior-room-Connection-Door.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/e2oc4harp8snd1xai9tj/Scandic-Aarhus-City-Interior-room-Connection-Door.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/ao9q1gchhg5ge8snmwb5/Scandic-Aarhus-City-Interior-room-Connection-Door.jpg" + } + }, + { + "metaData": { + "title": "Family standard", + "altText": "Scandic Aarhus City, family four, desk, wardrobe", + "altText_En": "Scandic Aarhus City, family four, desk, wardrobe", + "copyRight": "Mads Armsgaard, Graae, Armgaard & Bangsbo Photography" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/a4kesi5jgj8brhalaa7f/Scandic-Aarhus-City-Interior-room-family-four-desk.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/lpe6lp0eilx03qnr8pcs/Scandic-Aarhus-City-Interior-room-family-four-desk.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/spvn9vyfrrav79guena3/Scandic-Aarhus-City-Interior-room-family-four-desk.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/nhqb0fg27x2c1wc0fs1q/Scandic-Aarhus-City-Interior-room-family-four-desk.jpg" + } + }, + { + "metaData": { + "title": "Aarhus City, Family Four", + "altText": "Aarhus City, Family Four", + "altText_En": "Aarhus City, Family Four", + "copyRight": "" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/wp7y9ab0vj8d0kpc8bd5/Scandic-Aarhus-City-Interior-room-Family-Four.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/9tgp31dw1asf6hn7sc4c/Scandic-Aarhus-City-Interior-room-Family-Four.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/6n2n0rke2k2v07jjxw49/Scandic-Aarhus-City-Interior-room-Family-Four.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/snzvs5vxo3zawguyi1l1/Scandic-Aarhus-City-Interior-room-Family-Four.jpg" + } + }, + { + "metaData": { + "title": "Superior room", + "altText": "Scandic Aarhus City, twin upgrade superior, bathroom, Face", + "altText_En": "Scandic Aarhus City, twin upgrade superior, bathroom, Face", + "copyRight": "Mads Armsgaard/ Graae/ Armgaard & Bangsbo Photography" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/m79exezkqfgdpftty20x/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/sca61rw646fiea2ikonk/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/vnzbzqb1e3vq0t5rm1s2/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/884z5n7f1v8zpg6dc527/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg" + } + }, + { + "metaData": { + "title": "Standard room", + "altText": "Scandic Aarhus, standard, old building", + "altText_En": "Scandic Aarhus, standard, old building", + "copyRight": "Mads Armsgaard, Graae, Armgaard & Bangsbo Photography" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/v2vvabswxgkj419dfeb8/Scandic-Aarhus-City-Interior-room-standard-old-bui.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/4rjvciiy0jvqaw45gtzl/Scandic-Aarhus-City-Interior-room-standard-old-bui.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/egvy9c7u8dbwwo7dyl5j/Scandic-Aarhus-City-Interior-room-standard-old-bui.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/dmci1lrzfkktt4gjqmxo/Scandic-Aarhus-City-Interior-room-standard-old-bui.jpg" + } + }, + { + "metaData": { + "title": "Superior room", + "altText": "Scandic Aarhus City, room, superior #572", + "altText_En": "Scandic Aarhus City, room, superior #572", + "copyRight": "Mads Armgaard/ Graae, Armgaard & Bangsbo Photography" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/5ck0n7br57gjyvd8ynqu/Scandic-Aarhus-City-Interior-room-superior-_572.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/n9y8vz0e0ro3n2np9dvs/Scandic-Aarhus-City-Interior-room-superior-_572.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/e6kbe16j9uuvpsll6k0n/Scandic-Aarhus-City-Interior-room-superior-_572.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/ynwz3bmxdjdjzlpbk8x6/Scandic-Aarhus-City-Interior-room-superior-_572.jpg" + } + }, + { + "metaData": { + "title": "Junior suite", + "altText": "Scandic Aarhus City, suite, bed", + "altText_En": "Scandic Aarhus City, suite, bed", + "copyRight": "Mads Armsgaard/ Graae, Armgaard & Bangsbo Photography" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/whmp3nhocemnvyxz8fe5/Scandic-Aarhus-City-Interior-room-suite-bed001.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/p2pua3p8b9scjaza7r96/Scandic-Aarhus-City-Interior-room-suite-bed001.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/th6jbykk6mu3qdkkgqxd/Scandic-Aarhus-City-Interior-room-suite-bed001.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/v1j0xdek0kvtmudhie1j/Scandic-Aarhus-City-Interior-room-suite-bed001.jpg" + } + }, + { + "metaData": { + "title": "Superior room", + "altText": "Scandic Aarhus City, twin upgrade superior", + "altText_En": "Scandic Aarhus City, twin upgrade superior", + "copyRight": "Mads Armsgaard/ Graae, Armgaard & Bangsbo Photography" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/p8fhk8rmt1ivf5n74jhy/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/ki8rf76v78elsuh6ymzb/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/k6nkn5r4158jyholqmv0/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/p9mtckamqq3dj265xgmg/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg" + } + }, + { + "metaData": { + "title": "Hallway", + "altText": "Scandic Aarhus, corridor", + "altText_En": "Scandic Aarhus, corridor", + "copyRight": "Mads Armsgaard, Graae, Armgaard & Bangsbo Photography, Vermundsgade 40A, 3929 2600, mads@gab.dk" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/6xc10p3mouxec0vt4wjr/Scandic-Aarhus-City-Interior-corridor.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/72g50ktvpyur144vbe22/Scandic-Aarhus-City-Interior-corridor.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/kwogcjk2e4x7pjdkuw8x/Scandic-Aarhus-City-Interior-corridor.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/1eulj18pzhjxhgrzqvok/Scandic-Aarhus-City-Interior-corridor.jpg" + } + }, + { + "metaData": { + "title": "Standard bathroom", + "altText": "Scandic Aarhus, standard, bathroom, tub", + "altText_En": "Scandic Aarhus, standard, bathroom, tub", + "copyRight": "Mads Armsgaard, Graae, Armgaard & Bangsbo Photography" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/lmga5ngxn0glm5sotgvm/Scandic-Aarhus-City-Interior-room-standard-bathroo.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/9vq21yenvqnlzpe5m52g/Scandic-Aarhus-City-Interior-room-standard-bathroo.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/lzpy7306vs3fwx9ydp83/Scandic-Aarhus-City-Interior-room-standard-bathroo.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/p7icwhfl5zat0ez8kslg/Scandic-Aarhus-City-Interior-room-standard-bathroo.jpg" + } + }, + { + "metaData": { + "title": "Junior suite", + "altText": "Scandic Aarhus City, suite", + "altText_En": "Scandic Aarhus City, suite", + "copyRight": "Mads Armsgaard, Graae, Armgaard & Bangsbo Photography" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/pnv0fogpsewae4f0wfjd/Scandic-Aarhus-City-Interior-room-suite.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/n3rn2q4wtrplx8cengnx/Scandic-Aarhus-City-Interior-room-suite.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/vrogid30l06keair1l0t/Scandic-Aarhus-City-Interior-room-suite.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/yhixhovp5v3456d4o5de/Scandic-Aarhus-City-Interior-room-suite.jpg" + } + }, + { + "metaData": { + "title": "Superior room", + "altText": "Scandic Aarhus City, twin upgrade superior", + "altText_En": "Scandic Aarhus City, twin upgrade superior", + "copyRight": "Mads Armsgaard/ Graae, Armgaard & Bangsbo Photography" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/1ss15jncd6oln7vk73ke/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/y0ez2j8yi09htncdk39r/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/eyzfuqarqfgj21ywtrfh/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/kw5n250ep7zf40e1e0d2/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg" + } + }, + { + "metaData": { + "title": "Junior suite", + "altText": "Scandic Aarhus City, suite, view, living room, Aros", + "altText_En": "Scandic Aarhus City, suite, view, living room, Aros", + "copyRight": "Mads Armsgaard" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/hjcav94mfqsen42rtrzj/Scandic-Aarhus-City-Interior-room-suite-view-livin.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/yftxxd70z47ftz954cde/Scandic-Aarhus-City-Interior-room-suite-view-livin.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/pokvg6kvcyt2wwkahukd/Scandic-Aarhus-City-Interior-room-suite-view-livin.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/hznhcypykdqo0mgd8coa/Scandic-Aarhus-City-Interior-room-suite-view-livin.jpg" + } + }, + { + "metaData": { + "title": "Superior Extra ", + "altText": "Scandic Aarhus City, room, superior extra #327", + "altText_En": "Scandic Aarhus City, room, superior extra #327", + "copyRight": "Mads Armgaard /Graae, Armgaard & Bangsbo Photography" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/ncgmjx5mcsvtirn7prhd/Scandic-Aarhus-City-Interior-room-superior-extra-_.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/hc6lmyt1icdb1s9fwydq/Scandic-Aarhus-City-Interior-room-superior-extra-_.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/opd51xpws6o5fn7yttj5/Scandic-Aarhus-City-Interior-room-superior-extra-_.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/xome9calxeibetjoustz/Scandic-Aarhus-City-Interior-room-superior-extra-_.jpg" + } + }, + { + "metaData": { + "title": "Superior room", + "altText": "Scandic Aarhus City, twin upgrade superior, chairs", + "altText_En": "Scandic Aarhus City, twin upgrade superior, chairs", + "copyRight": "Mads Armsgaard/ Graae, Armgaard & Bangsbo Photography" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/0lzyey5fuqhfujf5istt/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/09ngmn2wlz0ix2f745j3/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/87qn9fxino4etw9gulgs/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/ve8rodorvy38gtlaxuy7/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg" + } + }, + { + "metaData": { + "title": "Restaurant L'øst", + "altText": "Scandic Aarhus City, L'øst", + "altText_En": "Scandic Aarhus City, L'øst", + "copyRight": "Mads Armgaard/ Graae/ Armgaard & Bangsbo Photography" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/9g4xnhm0v5s25lb74id7/Scandic-Aarhus-City-Interior-restaurant-The-Grill0.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/o4r0ckp2auxdgquo2olx/Scandic-Aarhus-City-Interior-restaurant-The-Grill0.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/ssdr10hmos6xw0d4jmws/Scandic-Aarhus-City-Interior-restaurant-The-Grill0.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/ce5ye6zyg6kwqhnif2j9/Scandic-Aarhus-City-Interior-restaurant-The-Grill0.jpg" + } + }, + { + "metaData": { + "title": "Restaurant L'øst", + "altText": "Scandic Aarhus City, L'øst", + "altText_En": "Scandic Aarhus City, L'øst", + "copyRight": "Mads Armgaard/ Graae/ Armgaard & Bangsbo Photography" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/m1dfdf43ukzavkaqlre2/Scandic-Aarhus-City-Interior-restaurant-The-Grill0.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/2lvmjlhsqbpgp4ak0l30/Scandic-Aarhus-City-Interior-restaurant-The-Grill0.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/nj26nm70lyeat7up7gzc/Scandic-Aarhus-City-Interior-restaurant-The-Grill0.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/tdrk53sa9cw5opkefjy5/Scandic-Aarhus-City-Interior-restaurant-The-Grill0.jpg" + } + }, + { + "metaData": { + "title": "Restaurant The Grill", + "altText": "Scandic Aarhus City, restaurant, The Grill 1st floor", + "altText_En": "Scandic Aarhus City, restaurant, The Grill 1st floor", + "copyRight": "Mads Armgaard/ Graae/ Armgaard & Bangsbo Photography" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/jt0t3r46a6clsji5sylh/Scandic-Aarhus-City-Interior-restaurant-The-Grill-.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/h3a7a2jlu12dnshaplql/Scandic-Aarhus-City-Interior-restaurant-The-Grill-.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/i36fnz7h9zgq27lcok94/Scandic-Aarhus-City-Interior-restaurant-The-Grill-.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/n5csi1uhv6xda8xkad8j/Scandic-Aarhus-City-Interior-restaurant-The-Grill-.jpg" + } + }, + { + "metaData": { + "title": "Bar", + "altText": "Scandic Aarhus City, bar", + "altText_En": "Scandic Aarhus City, bar", + "copyRight": "Mads Armgaard/ Graae/ Armgaard & Bangsbo Photography" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/0pz56b8r11b5a6617mdd/Scandic-Aarhus-City-Interior-bar.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/zahnrlokna4s813l550w/Scandic-Aarhus-City-Interior-bar.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/twpu573k2l2mugtyqama/Scandic-Aarhus-City-Interior-bar.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/nby7ch6pktzke94kkuym/Scandic-Aarhus-City-Interior-bar.jpg" + } + }, + { + "metaData": { + "title": "Meeting area", + "altText": "Meeting break out area", + "altText_En": "Meeting break out area", + "copyRight": "Elin Strömberg © 2015" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/mp3jc29s1iqyn683pqcc/scandic-aarhuscity-conference-meetingarea-2.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/cz9a44t0o9s1wh0kxi0q/scandic-aarhuscity-conference-meetingarea-2.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/xqnlaezqvmetyfev3g2s/scandic-aarhuscity-conference-meetingarea-2.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/281q7dleu35ivgost1mi/scandic-aarhuscity-conference-meetingarea-2.jpg" + } + }, + { + "metaData": { + "title": "Mosegaard 1, Meeting room", + "altText": "", + "altText_En": "", + "copyRight": "Elin Strömberg © 2015" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/e8ddpkug14ees7n2ibsu/scandic-aarhuscity-conference-moesgard1.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/t4gqi6bbbqqyqgw3nnt8/scandic-aarhuscity-conference-moesgard1.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/npb4vwmgl9pd38t90vaq/scandic-aarhuscity-conference-moesgard1.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/pla3ac423m80wb1w28ia/scandic-aarhuscity-conference-moesgard1.jpg" + } + }, + { + "metaData": { + "title": "Moesgaard 1+2, Meeting room", + "altText": "", + "altText_En": "", + "copyRight": "Elin Strömberg © 2015" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/fjy6fw28d7huoz8gwgby/scandic-aarhuscity-conference-moesgard1_2.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/6c4we75y8x5lc67wdqs7/scandic-aarhuscity-conference-moesgard1_2.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/tvam2ieigbd8y573vxt3/scandic-aarhuscity-conference-moesgard1_2.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/bxwfopzmbdyejnv7qfs3/scandic-aarhuscity-conference-moesgard1_2.jpg" + } + }, + { + "metaData": { + "title": "Mosegaard 2, Meeting room", + "altText": "Meeting room Mosegaard 2", + "altText_En": "Meeting room Mosegaard 2", + "copyRight": "Elin Strömberg © 2015" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/zx4rdtcpps2reaw3g5hu/scandic-aarhuscity-conference-moesgard2.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/hcs5zkcuf1x518j7jrbn/scandic-aarhuscity-conference-moesgard2.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/ulm33qthdovevi2lnxpo/scandic-aarhuscity-conference-moesgard2.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/q4axu3oty3mtgg4yolog/scandic-aarhuscity-conference-moesgard2.jpg" + } + }, + { + "metaData": { + "title": "Mosegaard 3, Meeting room", + "altText": "Meeting room Mosegaard 3", + "altText_En": "Meeting room Mosegaard 3", + "copyRight": "Elin Strömberg © 2015" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/v6lx30xb7pj13th4fiy2/scandic-aarhuscity-conference-moesgard3.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/jssn7m4krash0xoj3h33/scandic-aarhuscity-conference-moesgard3.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/5n2mfqcc8v8djf7kjzi8/scandic-aarhuscity-conference-moesgard3.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/zisup8n0ypdwxf7zcisa/scandic-aarhuscity-conference-moesgard3.jpg" + } + }, + { + "metaData": { + "title": "Riisskov 1, Meeting room", + "altText": "Meeting room Riis Skov 1", + "altText_En": "Meeting room Riis Skov 1", + "copyRight": "Elin Strömberg © 2015" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/7glfbge7t65uak4pdpgp/scandic-aarhuscity-conference-riisskov1.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/j6mv8idkv26pq08rlsjg/scandic-aarhuscity-conference-riisskov1.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/u1sf87ntk8zohyynvilm/scandic-aarhuscity-conference-riisskov1.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/bpzyzztpbqhtrq62kqx8/scandic-aarhuscity-conference-riisskov1.jpg" + } + }, + { + "metaData": { + "title": "Riisskov 2, Meeting room", + "altText": "Conference room Riis Skov 2", + "altText_En": "Conference room Riis Skov 2", + "copyRight": "Elin Strömberg © 2015" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/f3nwdoa3at28soit9m6c/scandic-aarhuscity-conference-riisskov2.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/0rabut14ycdettb6jvsv/scandic-aarhuscity-conference-riisskov2.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/eal9w6n0zilw3u2z75s0/scandic-aarhuscity-conference-riisskov2.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/c51pqsn700pczd9l3q6z/scandic-aarhuscity-conference-riisskov2.jpg" + } + }, + { + "metaData": { + "title": "Meeting room Tangkrogen", + "altText": "Meeting room Tangkrogen", + "altText_En": "Meeting room Tangkrogen", + "copyRight": "" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/c1u1vsl4r66csugbbfz0/Tangkrogen_meeting_Scandic-aarhus-city.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/9bdl461j91twwrdinstp/Tangkrogen_meeting_Scandic-aarhus-city.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/o9jkpr9ljxlpxe1hpf3c/Tangkrogen_meeting_Scandic-aarhus-city.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/vyfoyr10ire48o1b1680/Tangkrogen_meeting_Scandic-aarhus-city.jpg" + } + }, + { + "metaData": { + "title": "Meeting area", + "altText": "Meeting area", + "altText_En": "Meeting area", + "copyRight": "Elin Strömberg © 2015" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/5kr0flx1m6r1iklwg34x/scandic-aarhuscity-conference-meetingarea-tastebre.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/nklz299xlyx26xa1ucpp/scandic-aarhuscity-conference-meetingarea-tastebre.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/zytdsh0joe4y00laxgq7/scandic-aarhuscity-conference-meetingarea-tastebre.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/qnxfv2fqxybszya6xhx4/scandic-aarhuscity-conference-meetingarea-tastebre.jpg" + } + }, + { + "metaData": { + "title": "Meeting area", + "altText": "conference break out area", + "altText_En": "conference break out area", + "copyRight": "Elin Strömberg © 2015" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/23lmat50lcsagxqaziom/scandic-aarhuscity-conference-meetingarea-tastebre.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/756dp95dec9vfyfkn3ju/scandic-aarhuscity-conference-meetingarea-tastebre.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/4rx8gqot47h1pa6dlnke/scandic-aarhuscity-conference-meetingarea-tastebre.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/r158v77ivf859zzdrr7d/scandic-aarhuscity-conference-meetingarea-tastebre.jpg" + } + }, + { + "metaData": { + "title": "Gym", + "altText": "Scandic Aarhus City, fitness facilities, gym", + "altText_En": "Scandic Aarhus City, fitness facilities, gym", + "copyRight": "Mads Armgaard/ Graae/ Armgaard & Bangsbo Photography" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/dryyyc3z90bu0j9lxns2/Scandic-Aarhus-City-Interior-gym-fitness-facilitie.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/3ga3bvv3i0q1c5158te4/Scandic-Aarhus-City-Interior-gym-fitness-facilitie.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/5hlwlfsl6616pw3wkvmd/Scandic-Aarhus-City-Interior-gym-fitness-facilitie.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/rlgkzxcda7bq3381un05/Scandic-Aarhus-City-Interior-gym-fitness-facilitie.jpg" + } + }, + { + "metaData": { + "title": "Roof", + "altText": "Scandic Aarhus, roof, solar cells", + "altText_En": "Scandic Aarhus, roof, solar cells", + "copyRight": "Mads Armgaard/ Graae/ Armgaard & Bangsbo Photography" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/bbam2qswl145lu1yjn6o/Scandic-Aarhus-City-Exterior-roof-solar-cells.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/n2lc8xkp73gvisvkz8uv/Scandic-Aarhus-City-Exterior-roof-solar-cells.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/2fpulwq947lslssrntfy/Scandic-Aarhus-City-Exterior-roof-solar-cells.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/xmi8a7bm9b77u22c0ndw/Scandic-Aarhus-City-Exterior-roof-solar-cells.jpg" + } + }, + { + "metaData": { + "title": "Roof", + "altText": "Scandic Aarhus City, bees, roof, beehives", + "altText_En": "Scandic Aarhus City, bees, roof, beehives", + "copyRight": "Mads Armsgaard, Graae, Armgaard & Bangsbo Photography, Vermundsgade 40A, 3929 2600, mads@gab.dk" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/smkqhjrfso82rkktfed4/Scandic-Aarhus-City-Interior-bees-roof-beehives.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/7lg8z5m98bj3fj8hepw4/Scandic-Aarhus-City-Interior-bees-roof-beehives.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/lpz51rz6frk51poah36a/Scandic-Aarhus-City-Interior-bees-roof-beehives.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/tsly49q7qne8fxwy9u1b/Scandic-Aarhus-City-Interior-bees-roof-beehives.jpg" + } + } + ] + }, + "conferencesAndMeetings": { + "pageUrl": "https://test3.scandichotels.com/hotels/denmark/aarhus/scandic-aarhus-city/meetings-conferences-events", + "heroImageIds": [ + { + "metaData": { + "title": "Scandic Aarhus City, lobby, foyer, sofa, relax area", + "altText": "Scandic Aarhus City, lobby, foyer, sofa, relax area", + "altText_En": "Scandic Aarhus City, lobby, foyer, sofa, relax area", + "copyRight": "Mads Armgaard/ Graae/ Armgaard & Bangsbo Photography" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/2d885sgkx4exi20yjtdz/Scandic-Aarhus-City-Interior-lobby-foyer-sofa-rela.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/bwcr1fcmn2zkq9kx23n0/Scandic-Aarhus-City-Interior-lobby-foyer-sofa-rela.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/xktoqjka52bmclbht85b/Scandic-Aarhus-City-Interior-lobby-foyer-sofa-rela.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/lmbslvxczewpaggpftll/Scandic-Aarhus-City-Interior-lobby-foyer-sofa-rela.jpg" + } + }, + { + "metaData": { + "title": "Meeting area", + "altText": "Meeting break out area", + "altText_En": "Meeting break out area", + "copyRight": "Elin Strömberg © 2015" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/mp3jc29s1iqyn683pqcc/scandic-aarhuscity-conference-meetingarea-2.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/cz9a44t0o9s1wh0kxi0q/scandic-aarhuscity-conference-meetingarea-2.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/xqnlaezqvmetyfev3g2s/scandic-aarhuscity-conference-meetingarea-2.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/281q7dleu35ivgost1mi/scandic-aarhuscity-conference-meetingarea-2.jpg" + } + }, + { + "metaData": { + "title": "Meeting area", + "altText": "Meeting area", + "altText_En": "Meeting area", + "copyRight": "Elin Strömberg © 2015" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/5kr0flx1m6r1iklwg34x/scandic-aarhuscity-conference-meetingarea-tastebre.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/nklz299xlyx26xa1ucpp/scandic-aarhuscity-conference-meetingarea-tastebre.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/zytdsh0joe4y00laxgq7/scandic-aarhuscity-conference-meetingarea-tastebre.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/qnxfv2fqxybszya6xhx4/scandic-aarhuscity-conference-meetingarea-tastebre.jpg" + } + }, + { + "metaData": { + "title": "Mosegaard 3, Meeting room", + "altText": "Meeting room Mosegaard 3", + "altText_En": "Meeting room Mosegaard 3", + "copyRight": "Elin Strömberg © 2015" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/v6lx30xb7pj13th4fiy2/scandic-aarhuscity-conference-moesgard3.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/jssn7m4krash0xoj3h33/scandic-aarhuscity-conference-moesgard3.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/5n2mfqcc8v8djf7kjzi8/scandic-aarhuscity-conference-moesgard3.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/zisup8n0ypdwxf7zcisa/scandic-aarhuscity-conference-moesgard3.jpg" + } + }, + { + "metaData": { + "title": "Riisskov 1, Meeting room", + "altText": "Meeting room Riis Skov 1", + "altText_En": "Meeting room Riis Skov 1", + "copyRight": "Elin Strömberg © 2015" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/7glfbge7t65uak4pdpgp/scandic-aarhuscity-conference-riisskov1.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/j6mv8idkv26pq08rlsjg/scandic-aarhuscity-conference-riisskov1.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/u1sf87ntk8zohyynvilm/scandic-aarhuscity-conference-riisskov1.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/bpzyzztpbqhtrq62kqx8/scandic-aarhuscity-conference-riisskov1.jpg" + } + }, + { + "metaData": { + "title": "Riisskov 2, Meeting room", + "altText": "Conference room Riis Skov 2", + "altText_En": "Conference room Riis Skov 2", + "copyRight": "Elin Strömberg © 2015" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/f3nwdoa3at28soit9m6c/scandic-aarhuscity-conference-riisskov2.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/0rabut14ycdettb6jvsv/scandic-aarhuscity-conference-riisskov2.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/eal9w6n0zilw3u2z75s0/scandic-aarhuscity-conference-riisskov2.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/c51pqsn700pczd9l3q6z/scandic-aarhuscity-conference-riisskov2.jpg" + } + }, + { + "metaData": { + "title": "Meeting area", + "altText": "conference break out area", + "altText_En": "conference break out area", + "copyRight": "Elin Strömberg © 2015" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/23lmat50lcsagxqaziom/scandic-aarhuscity-conference-meetingarea-tastebre.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/756dp95dec9vfyfkn3ju/scandic-aarhuscity-conference-meetingarea-tastebre.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/4rx8gqot47h1pa6dlnke/scandic-aarhuscity-conference-meetingarea-tastebre.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/r158v77ivf859zzdrr7d/scandic-aarhuscity-conference-meetingarea-tastebre.jpg" + } + }, + { + "metaData": { + "title": "Meeting room Tangkrogen", + "altText": "Meeting room Tangkrogen", + "altText_En": "Meeting room Tangkrogen", + "copyRight": "" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/c1u1vsl4r66csugbbfz0/Tangkrogen_meeting_Scandic-aarhus-city.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/9bdl461j91twwrdinstp/Tangkrogen_meeting_Scandic-aarhus-city.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/o9jkpr9ljxlpxe1hpf3c/Tangkrogen_meeting_Scandic-aarhus-city.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/vyfoyr10ire48o1b1680/Tangkrogen_meeting_Scandic-aarhus-city.jpg" + } + } + ] + }, + "healthAndWellness": { + "headingText": "Gym and wellness", + "heroImageIds": [ + { + "metaData": { + "title": "Gym", + "altText": "Scandic Aarhus City, fitness facilities, gym", + "altText_En": "Scandic Aarhus City, fitness facilities, gym", + "copyRight": "Mads Armgaard/ Graae/ Armgaard & Bangsbo Photography" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/dryyyc3z90bu0j9lxns2/Scandic-Aarhus-City-Interior-gym-fitness-facilitie.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/3ga3bvv3i0q1c5158te4/Scandic-Aarhus-City-Interior-gym-fitness-facilitie.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/5hlwlfsl6616pw3wkvmd/Scandic-Aarhus-City-Interior-gym-fitness-facilitie.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/rlgkzxcda7bq3381un05/Scandic-Aarhus-City-Interior-gym-fitness-facilitie.jpg" + } + } + ] + }, + "accessibilityElevatorPitchText": "Find the information you might need, before visiting us. You are always welcome to our hotel - completely without barriers. Regardless of impairment, sight, hearing, allergies or wheelchair, we have made sure that you enjoy your stay." + }, + "relationships": { + "restaurants": { + "links": { + "related": "https://localhost:7149/hotel/vNext/Hotels/736/restaurants?language=En" + } + }, + "nearbyHotels": { + "links": { + "related": "https://localhost:7149/hotel/vNext/Hotels/736/nearbyHotels?language=En" + } + }, + "roomCategories": { + "links": { + "related": "https://localhost:7149/hotel/vNext/Hotels/736/roomCategories?language=En" + } + }, + "meetingRooms": { + "links": { + "related": "https://localhost:7149/hotel/vNext/Hotels/736/meetingRooms?language=En" + } + } + }, + "id": "736", + "language": "En", + "type": "hotels" + }, + "included": [ + { + "attributes": { + "name": "Lobby bar", + "isPublished": true, + "email": "aarhuscity@scandichotels.com", + "phoneNumber": "+45 89318132", + "externalBreakfast": { + "isAvailable": true, + "localPriceForExternalGuests": { + "currency": "DKK", + "amount": 129 + } + }, + "menus": [ + { + "name": "Bar - drinks 1 ", + "url": "https://test3.scandichotels.com/RestaurantService/RestaurantMenuService/GetMenufile?hotelId=736&restId=rest1&fileId=33396" + }, + { + "name": "Bar - beer 2", + "url": "https://test3.scandichotels.com/RestaurantService/RestaurantMenuService/GetMenufile?hotelId=736&restId=rest1&fileId=33586" + } + ], + "openingDetails": [ + { + "openingHours": { + "isActive": true, + "name": "Frokost", + "monday": { + "sortOrder": 0, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "11:00", + "closingTime": "17:00" + }, + "tuesday": { + "sortOrder": 1, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "11:00", + "closingTime": "17:00" + }, + "wednesday": { + "sortOrder": 2, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "11:00", + "closingTime": "17:00" + }, + "thursday": { + "sortOrder": 3, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "11:00", + "closingTime": "17:00" + }, + "friday": { + "sortOrder": 4, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "11:00", + "closingTime": "17:00" + }, + "saturday": { + "sortOrder": 5, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "11:00", + "closingTime": "17:00" + }, + "sunday": { + "sortOrder": 6, + "alwaysOpen": false, + "isClosed": true, + "openingTime": "00:00", + "closingTime": "00:00" + } + }, + "alternateOpeningHours": { + "isActive": false + } + }, + { + "openingHours": { + "isActive": true, + "name": "Bar", + "monday": { + "sortOrder": 0, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "11:00", + "closingTime": "00:00" + }, + "tuesday": { + "sortOrder": 1, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "11:00", + "closingTime": "00:00" + }, + "wednesday": { + "sortOrder": 2, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "11:00", + "closingTime": "00:00" + }, + "thursday": { + "sortOrder": 3, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "11:00", + "closingTime": "00:00" + }, + "friday": { + "sortOrder": 4, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "11:00", + "closingTime": "01:00" + }, + "saturday": { + "sortOrder": 5, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "11:00", + "closingTime": "01:00" + }, + "sunday": { + "sortOrder": 6, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "11:00", + "closingTime": "23:00" + } + }, + "alternateOpeningHours": { + "isActive": false + } + } + ], + "content": { + "images": [ + { + "metaData": { + "title": "", + "altText": "restaurant at scandic aarhus city i aarhus", + "altText_En": "restaurant at scandic aarhus city i aarhus", + "copyRight": "Martin Panduro\r\nwww.raisfoto.dk" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/hbwas2u7f6zs2dsh47ss/Scandic_AarhusCity_RAIS4150.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/9cq1cz90p0ymmt742xje/Scandic_AarhusCity_RAIS4150.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/1wsvmjunq96ho9nnnxji/Scandic_AarhusCity_RAIS4150.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/xdrlyrqsu3mow4nxo7y1/Scandic_AarhusCity_RAIS4150.jpg" + } + }, + { + "metaData": { + "title": "", + "altText": "restaurant at scandic aarhus city i aarhus", + "altText_En": "restaurant at scandic aarhus city i aarhus", + "copyRight": "Martin Panduro\r\nwww.raisfoto.dk" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/27a5cmmvuoxa55osqrvf/Scandic_AarhusCity_RAIS4183.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/fa1obnw9e5vfn9ey7s4n/Scandic_AarhusCity_RAIS4183.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/dthkdducmf3myg7fw534/Scandic_AarhusCity_RAIS4183.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/mcwo3gumue7t7mftjz3n/Scandic_AarhusCity_RAIS4183.jpg" + } + }, + { + "metaData": { + "title": "", + "altText": "restaurant at scandic aarhus city i aarhus", + "altText_En": "restaurant at scandic aarhus city i aarhus", + "copyRight": "Martin Panduro\r\nwww.raisfoto.dk" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/lci02wg7kar1nqyr1xr6/Scandic_AarhusCity_RAIS4416.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/aveu38u823x53l7ria31/Scandic_AarhusCity_RAIS4416.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/behrmlh75b26d2yj8kpv/Scandic_AarhusCity_RAIS4416.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/nz7y2vurhsfwr8h4wfuw/Scandic_AarhusCity_RAIS4416.jpg" + } + }, + { + "metaData": { + "title": "", + "altText": "restaurant at scandic aarhus city in aarhus", + "altText_En": "restaurant at scandic aarhus city in aarhus", + "copyRight": "Martin Panduro\r\nwww.raisfoto.dk" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/nepf6a77dd7hsoikv4zk/Scandic_AarhusCity_RAIS4088.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/xo9arvjalj57uk94luxz/Scandic_AarhusCity_RAIS4088.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/judduz7kdq2z1u0fi3bm/Scandic_AarhusCity_RAIS4088.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/3ghfcwspo8fas6qhl822/Scandic_AarhusCity_RAIS4088.jpg" + } + } + ], + "texts": { + "descriptions": { + "short": "You can enjoy delightful cocktails in our bar as well as freshly brewed coffee and fast, good food from our bar menu.", + "medium": "You can enjoy delightful cocktails in our bar as well as freshly brewed coffee and fast, good food from our bar menu. Our bar is also the ideal place for short, informal meetings, or if you want to get a little work done." + } + } + }, + "bookTableUrl": "" + }, + "id": "58e70dfe-f499-49ee-9ed8-365b18f83f40", + "type": "restaurants" + }, + { + "attributes": { + "name": "Restaurant L'øst", + "isPublished": true, + "email": "kontakt@restaurantloest.dk", + "phoneNumber": "+45 89318132", + "externalBreakfast": { + "isAvailable": true, + "localPriceForExternalGuests": { + "currency": "DKK", + "amount": 129 + } + }, + "menus": [ + { + "name": "Torsdags tilbud ", + "url": "https://test3.scandichotels.com/RestaurantService/RestaurantMenuService/GetMenufile?hotelId=736&restId=rest0&fileId=26785" + }, + { + "name": "Restaurant LØST (DK)", + "url": "https://test3.scandichotels.com/RestaurantService/RestaurantMenuService/GetMenufile?hotelId=736&restId=rest0&fileId=33503" + }, + { + "name": "Restaurant LØST (ENG)", + "url": "https://test3.scandichotels.com/RestaurantService/RestaurantMenuService/GetMenufile?hotelId=736&restId=rest0&fileId=33504" + } + ], + "openingDetails": [ + { + "openingHours": { + "isActive": true, + "name": "Morgenmad", + "monday": { + "sortOrder": 0, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "06:30", + "closingTime": "10:00" + }, + "tuesday": { + "sortOrder": 1, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "06:30", + "closingTime": "10:00" + }, + "wednesday": { + "sortOrder": 2, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "06:30", + "closingTime": "10:00" + }, + "thursday": { + "sortOrder": 3, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "06:30", + "closingTime": "10:00" + }, + "friday": { + "sortOrder": 4, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "06:30", + "closingTime": "10:00" + }, + "saturday": { + "sortOrder": 5, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "07:00", + "closingTime": "10:30" + }, + "sunday": { + "sortOrder": 6, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "07:00", + "closingTime": "10:30" + } + }, + "alternateOpeningHours": { + "isActive": false + } + }, + { + "openingHours": { + "isActive": true, + "name": "Frokost", + "monday": { + "sortOrder": 0, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "11:00", + "closingTime": "17:00" + }, + "tuesday": { + "sortOrder": 1, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "11:00", + "closingTime": "17:00" + }, + "wednesday": { + "sortOrder": 2, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "11:00", + "closingTime": "17:00" + }, + "thursday": { + "sortOrder": 3, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "11:00", + "closingTime": "17:00" + }, + "friday": { + "sortOrder": 4, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "11:00", + "closingTime": "17:00" + }, + "saturday": { + "sortOrder": 5, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "11:00", + "closingTime": "17:00" + }, + "sunday": { + "sortOrder": 6, + "alwaysOpen": false, + "isClosed": true, + "openingTime": "00:00", + "closingTime": "00:00" + } + }, + "alternateOpeningHours": { + "isActive": true, + "name": "Åbningstider i julen", + "monday": { + "sortOrder": 0, + "alwaysOpen": false, + "isClosed": true, + "openingTime": "00:00", + "closingTime": "00:00" + }, + "tuesday": { + "sortOrder": 1, + "alwaysOpen": false, + "isClosed": true, + "openingTime": "00:00", + "closingTime": "00:00" + }, + "wednesday": { + "sortOrder": 2, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "11:00", + "closingTime": "17:00" + }, + "thursday": { + "sortOrder": 3, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "11:00", + "closingTime": "17:00" + }, + "friday": { + "sortOrder": 4, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "11:00", + "closingTime": "17:00" + }, + "saturday": { + "sortOrder": 5, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "11:00", + "closingTime": "17:00" + }, + "sunday": { + "sortOrder": 6, + "alwaysOpen": false, + "isClosed": true, + "openingTime": "00:00", + "closingTime": "00:00" + } + } + }, + { + "openingHours": { + "isActive": true, + "name": "Aftensmad", + "monday": { + "sortOrder": 0, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "17:00", + "closingTime": "21:30" + }, + "tuesday": { + "sortOrder": 1, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "17:00", + "closingTime": "21:30" + }, + "wednesday": { + "sortOrder": 2, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "17:00", + "closingTime": "21:30" + }, + "thursday": { + "sortOrder": 3, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "17:00", + "closingTime": "21:30" + }, + "friday": { + "sortOrder": 4, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "17:00", + "closingTime": "21:30" + }, + "saturday": { + "sortOrder": 5, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "17:00", + "closingTime": "21:30" + }, + "sunday": { + "sortOrder": 6, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "17:00", + "closingTime": "21:30" + } + }, + "alternateOpeningHours": { + "isActive": true, + "name": "Åbningstider i Julen", + "monday": { + "sortOrder": 0, + "alwaysOpen": false, + "isClosed": true, + "openingTime": "00:00", + "closingTime": "00:00" + }, + "tuesday": { + "sortOrder": 1, + "alwaysOpen": false, + "isClosed": true, + "openingTime": "00:00", + "closingTime": "00:00" + }, + "wednesday": { + "sortOrder": 2, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "17:00", + "closingTime": "21:30" + }, + "thursday": { + "sortOrder": 3, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "17:00", + "closingTime": "21:30" + }, + "friday": { + "sortOrder": 4, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "17:00", + "closingTime": "21:30" + }, + "saturday": { + "sortOrder": 5, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "17:00", + "closingTime": "21:30" + }, + "sunday": { + "sortOrder": 6, + "alwaysOpen": false, + "isClosed": true, + "openingTime": "00:00", + "closingTime": "00:00" + } + } + }, + { + "openingHours": { + "isActive": true, + "name": "Bar", + "monday": { + "sortOrder": 0, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "11:00", + "closingTime": "00:00" + }, + "tuesday": { + "sortOrder": 1, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "11:00", + "closingTime": "00:00" + }, + "wednesday": { + "sortOrder": 2, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "11:00", + "closingTime": "00:00" + }, + "thursday": { + "sortOrder": 3, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "11:00", + "closingTime": "00:00" + }, + "friday": { + "sortOrder": 4, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "11:00", + "closingTime": "01:00" + }, + "saturday": { + "sortOrder": 5, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "11:00", + "closingTime": "01:00" + }, + "sunday": { + "sortOrder": 6, + "alwaysOpen": false, + "isClosed": false, + "openingTime": "11:00", + "closingTime": "23:00" + } + }, + "alternateOpeningHours": { + "isActive": false + } + } + ], + "content": { + "images": [ + { + "metaData": { + "title": "", + "altText": "A plate of food", + "altText_En": "A plate of food", + "copyRight": "Martin Panduro" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/4sv8cdqzm6pqemor8ain/Aarhus_City_restaurant_M-R_47.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/d8jxg0aa01nn4oqb3x6i/Aarhus_City_restaurant_M-R_47.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/1utrq41tle88y8evkcee/Aarhus_City_restaurant_M-R_47.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/g5bpx7c3yz34rzk8gnj0/Aarhus_City_restaurant_M-R_47.jpg" + } + }, + { + "metaData": { + "title": "", + "altText": "resturant at scandic aarhus city in aarhus", + "altText_En": "resturant at scandic aarhus city in aarhus", + "copyRight": "Martin Panduro\r\nwww.raisfoto.dk" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/fct5cg8hl6fg6h1mzv4u/Scandic_AarhusCity_RAIS3914.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/eodsbcb23ne6myf3yz8c/Scandic_AarhusCity_RAIS3914.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/u5y6uxtyey6fmwl3cqg8/Scandic_AarhusCity_RAIS3914.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/mnqk0sq94qqyw7jjef2r/Scandic_AarhusCity_RAIS3914.jpg" + } + }, + { + "metaData": { + "title": "", + "altText": "resturant at scandic aarhus city in aarhus", + "altText_En": "resturant at scandic aarhus city in aarhus", + "copyRight": "Martin Panduro\r\nwww.raisfoto.dk" + }, + "imageSizes": { + "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/ufs5o8yll7a9l8hp7kb0/Scandic_AarhusCity_RAIS3859.jpg", + "small": "https://test3.scandichotels.com/imagevault/publishedmedia/352awehiat22q32nweu6/Scandic_AarhusCity_RAIS3859.jpg", + "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/03rkkuihjo4yxviagqt1/Scandic_AarhusCity_RAIS3859.jpg", + "large": "https://test3.scandichotels.com/imagevault/publishedmedia/1g28u0b86nufm38c3xwg/Scandic_AarhusCity_RAIS3859.jpg" + } + } + ], + "texts": { + "descriptions": { + "short": "At our restaurant on Ostergade, the desire to prepare excellent meals is what drives our kitchen. We promise that once you've visited L’øst, you'll return over and over again. ", + "medium": "At our restaurant on Ostergade, the desire to prepare excellent meals is what drives our kitchen. With a fondness for local produce, the menu changes with the season to always offer you the freshest ingredients. " + } + } + }, + "bookTableUrl": "http://thegrilldrinksdining.b.dinnerbooking.com/onlinebooking/276/2?" + }, + "id": "49047c7b-4323-4fdc-b78f-34bd9303cc01", + "type": "restaurants" + } + ] +} From 86dd3c04ed8210c431830b262faa71eb9b58764a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matilda=20Landstr=C3=B6m?= Date: Tue, 17 Sep 2024 15:17:15 +0200 Subject: [PATCH 05/30] feat(SW-302): switch out mock data for facility cards --- .../Facilities/CardGrid/cardGrid.module.css | 10 +- .../HotelPage/Facilities/CardGrid/index.tsx | 10 +- .../HotelPage/Facilities/mock.json | 16764 ---------------- .../HotelPage/Facilities/mockData.ts | 144 - .../HotelPage/Rooms/RoomCard/index.tsx | 2 +- .../ContentType/HotelPage/Rooms/index.tsx | 3 +- components/ContentType/HotelPage/index.tsx | 6 +- .../TempDesignSystem/Card/CardImage/index.tsx | 2 +- components/TempDesignSystem/Card/card.ts | 3 +- i18n/dictionaries/da.json | 12 + i18n/dictionaries/de.json | 12 + i18n/dictionaries/en.json | 16 +- i18n/dictionaries/fi.json | 13 + i18n/dictionaries/no.json | 11 + i18n/dictionaries/sv.json | 12 + server/routers/hotels/output.ts | 14 + server/routers/hotels/query.ts | 21 +- types/components/cardImage.ts | 3 +- types/components/hotelPage/facilities.ts | 14 +- types/components/image.ts | 8 + utils/facilityCards.ts | 139 + utils/imageCard.ts | 8 +- 22 files changed, 289 insertions(+), 16938 deletions(-) delete mode 100644 components/ContentType/HotelPage/Facilities/mock.json delete mode 100644 components/ContentType/HotelPage/Facilities/mockData.ts create mode 100644 types/components/image.ts create mode 100644 utils/facilityCards.ts diff --git a/components/ContentType/HotelPage/Facilities/CardGrid/cardGrid.module.css b/components/ContentType/HotelPage/Facilities/CardGrid/cardGrid.module.css index c205f68fe..9cf0e4e50 100644 --- a/components/ContentType/HotelPage/Facilities/CardGrid/cardGrid.module.css +++ b/components/ContentType/HotelPage/Facilities/CardGrid/cardGrid.module.css @@ -1,13 +1,13 @@ -.one { +.spanOne { grid-column: span 1; } -.two { +.spanTwo { grid-column: span 2; } -.three { - grid-column: 1/-1; +.spanThree { + grid-column: span 3; } .desktopGrid { @@ -23,6 +23,8 @@ .desktopGrid { display: grid; gap: var(--Spacing-x1); + grid-template-columns: repeat(3, 1fr); + grid-auto-flow: dense; } .mobileGrid { diff --git a/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx b/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx index 8d98c689d..1f1b9cc58 100644 --- a/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx +++ b/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx @@ -9,6 +9,8 @@ import type { CardGridProps } from "@/types/components/hotelPage/facilities" export default async function CardGrid({ facility }: CardGridProps) { const imageCard = sortCards(facility) + const nrCards = facility.length + return (
@@ -22,7 +24,13 @@ export default async function CardGrid({ facility }: CardGridProps) { secondaryButton={card.secondaryButton} primaryButton={card.primaryButton} backgroundImage={card.backgroundImage} - className={styles[card.columnSpan]} + className={ + nrCards == 1 + ? styles.spanThree + : nrCards == 2 && card.backgroundImage + ? styles.spanTwo + : styles.spanOne + } /> ))} diff --git a/components/ContentType/HotelPage/Facilities/mock.json b/components/ContentType/HotelPage/Facilities/mock.json deleted file mode 100644 index 34f4217c8..000000000 --- a/components/ContentType/HotelPage/Facilities/mock.json +++ /dev/null @@ -1,16764 +0,0 @@ -{ - "data": { - "attributes": { - "name": "Scandic Aarhus City", - "operaId": "736", - "keywords": ["aarhus", "århus", "aarhus city"], - "isPublished": true, - "cityId": "504c2772-43b6-414a-913b-40c05eccaddd", - "cityName": "Aarhus", - "ratings": { - "tripAdvisor": { - "numberOfReviews": 1487, - "rating": 4, - "ratingImageUrl": "https://www.tripadvisor.com/img/cdsi/img2/ratings/traveler/4.0-15458-5.svg", - "webUrl": "https://www.tripadvisor.com/Hotel_Review-g189530-d2166717-Reviews-Scandic_Aarhus_City-Aarhus_East_Jutland_Jutland.html?m=15458", - "awards": [] - } - }, - "address": { - "streetAddress": "Østergade 10", - "city": "Aarhus", - "zipCode": "8000", - "country": "Denmark" - }, - "contactInformation": { - "phoneNumber": "+45 89318100", - "faxNumber": "+45 89318111", - "email": "aarhuscity@scandichotels.com", - "websiteUrl": "https://test3.scandichotels.com/hotels/denmark/aarhus/scandic-aarhus-city" - }, - "hotelFacts": { - "checkin": { - "checkInTime": "15:00", - "checkOutTime": "12:00", - "onlineCheckout": false - }, - "ecoLabels": { - "euEcoLabel": false, - "greenGlobeLabel": false, - "nordicEcoLabel": true, - "svanenEcoLabelCertificateNumber": "5055 0095" - }, - "hotelFacilityDetail": { - "breakfast": { - "heading": "Breakfast", - "description": "Breakfast buffet is always included. It’s a tasty mix with healthy and allergy friendly alternatives." - }, - "checkout": { - "heading": "Check out", - "description": "The room is yours until 12:00 on your day of departure. If you wish to check out later than 12:00, please contact the reception (dial 9). \\r\\n \\r\\nWant to avoid queuing at check-out? Look out for an email or text on how to check out easily online." - }, - "gym": { - "heading": "Gym", - "description": "Our beds are comfy, but a workout will cheer you up as well. Have a run on the treadmill or work out in our well-equipped gym – it’s free when staying with us." - }, - "internet": { - "heading": "Internet", - "description": "Free Wi-Fi: Scandic easy. Open your web browser and click to connect!" - }, - "laundry": { - "heading": "Laundry", - "description": "Got laundry that needs taking care of? Just dial 9 for the reception, and we’ll take care of it." - }, - "luggage": { - "heading": "Luggage", - "description": "Do you need to store any luggage after check out? Speak to the reception and we’ll store it for you." - }, - "shop": { - "heading": "Shop", - "description": "When the craving sets in, there’s freshly brewed coffee and lighter meals in our shop to bring up to your room. You can also find necessities such as a toothbrush. \\r\\n \\r\\nOur shop is open around the clock, you will find it next to the reception." - }, - "telephone": { - "heading": "Telephone", - "description": "In case of emergency dial 112 (police, ambulance, fire)." - } - }, - "hotelInformation": { - "accessibility": { - "heading": "Accessibility", - "description": "With the help of smart solutions, we design hotels where all of our guests can be happy. We prioritize accessibility in both our newly built and renovated hotels, constantly improving the standard of what we can offer. As well as technical solutions and practical matters, we believe in care and consideration.", - "link": "https://www.youtube.com/v/7CC38NXYgQk" - }, - "safety": { - "heading": "Safety Information", - "description": "


Once you have settled into your room – make sure you know where you are in the building!
• Study the evacuation plan on the back of the door.
• Check where your nearest emergency exit is
located, for example stairs leading outside.
• Count how many doors there are between your
room and the nearest emergency exit – so you
can find your way even in the dark.
• Check where the fire alarm button and fire
extinguishers are located.

If you discover a fire or smell burning
• If the corridor is full of smoke – stay in your room.
Alert reception or call the emergency number 112.
• Always take a room key with you when you leave
your room. You may come across smoke and need
to go back.
• If the fire is small and limited – use one of the fire
extinguishers located in the corridor.
• If you cannot put out the fire, close the door to the
room that is on fire.

If you hear the fire alarm
• Leave your room if the corridor is free from smoke.
• Take your room key with you and go to the
assembly point via the nearest emergency exit.
• Never use the elevator.

If you cannot leave your room
• Call reception or 112 and explain that you are
stuck in your room. Give them your room number.
• Seal ventilation openings and gaps around the
door with wet towels.
• Move all flammable material away from the
window.
• Go to the window and try to attract attention.
• If the room becomes smoky – open the window
to get some air in.
• Do not jump – wait for instructions from the
rescue services.
• You will see best and breathe most easily near
the floor in a smoke-filled room.

First aid
• A defibrillator (AED) and a first aid kit are available
in reception.

" - }, - "sustainability": { - "heading": "Sustainability Information", - "description": "In 1993, Scandic decided to become a leader in sustainability and drive the development of sustainability in the hotel sector. It was at Scandic that the idea to “hang up your towel if you want to use it again” was formed – an idea that is now the standard in the hotel industry around the world. Sustainability is a part of our values – an integral element of all of the operations that Scandic’s team members manifest in daily work.", - "link": "https://www.youtube.com/watch?v=0td9PfNfT1A" - } - }, - "interior": { - "numberOfBeds": 560, - "numberOfCribs": 15, - "numberOfFloors": 5, - "numberOfRooms": { - "connected": 20, - "forAllergics": 228, - "forDisabled": 25, - "nonSmoking": 228, - "pet": 0, - "withExtraBeds": 97, - "total": 228 - } - }, - "receptionHours": { - "alwaysOpen": true, - "isClosed": false, - "openingTime": "", - "closingTime": "" - }, - "yearBuilt": "2012" - }, - "location": { - "distanceToCentre": 0, - "latitude": 56.15418, - "longitude": 10.20514 - }, - "hotelContent": { - "images": { - "metaData": { - "title": "Superior Plus Room", - "altText": "superior plus room at scandic aarhus city", - "altText_En": "superior plus room at scandic aarhus city", - "copyRight": "Jesper Rais" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/5a5q6ohz5r7xsjxul93n/Scandic_Aarhus_City_Superior_Plus_TT_space.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/ligackcxnyzwmrqmwaqu/Scandic_Aarhus_City_Superior_Plus_TT_space.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/ri4v32ww2rptlj4jzcix/Scandic_Aarhus_City_Superior_Plus_TT_space.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/bxdcn0niti16cmxyzmdz/Scandic_Aarhus_City_Superior_Plus_TT_space.jpg" - } - }, - "texts": { - "facilityInformation": "City break, romantic stay, conference or networking with colleagues and friends? Scandic Aarhus City has it all! Pamper yourself and your family with a few days at our contemporary hotel in the heart of Aarhus, decorated in a Scandinavian style. Treat your tastebuds to a delicious steak from our hotel restaurant, L'øst. Our bar is a cosy place to relax if you're in the mood for an after-work drink, and is a popular meeting place for our guests and locals. From some of our top floor guest rooms, you can enjoy the view of Aarhus City, catching a glimpse of ARoS art museum and its well-known work of art 'The Rainbow', Aarhus harbour as well as the forests and beaches. There are solar panels on the roof that supply our hotel with 90% of the electricity used in our rooms. In the summer, we recommend our homemade honey at the buffet breakfast which comes from bee hives located up on our roof. Our hotel is also one of Denmark’s most accessible hotels, with 25 accessible rooms and it has a fully accessible conference area with modern audiovisual equipment. If you're in the mood for sightseeing and exercise, you can borrow one of our Scandic bicycles and explore Aarhus City on two wheels. You can also increase your heart rate in our modern fitness facilities, which are located below our reception. ", - "surroundingInformation": "You won’t find a place closer to the centre of Aarhus and its many shopping opportunities, cosy cafés and restaurants, as well as sights and attractions, such as Den Gamle By (The Old Town) and ARoS. Scandic Aarhus City is located in Ostergade, and right outside our hotel you'll find 'Strøget', the pedestrian street of Aarhus. Aarhus train station and bus station are just a short distance from our hotel.", - "descriptions": { - "short": "The hotel that has everything! Central location, popular restaurant - L'øst - modern decor, fitness facilities and underground parking. \n", - "medium": "Modern hotel in the heart of Aarhus close to shopping, attractions and transportation. One of our best hotels whether you travel on weekdays or enjoy a weekend break. Don't miss out on a juicy steak in our popular restaurant, L'øst.\n" - } - }, - "restaurantsOverviewPage": { - "restaurantsOverviewPageLinkText": "", - "restaurantsOverviewPageLink": "https://test3.scandichotels.com/hotels/denmark/aarhus/scandic-aarhus-city/restaurant-bar", - "restaurantsContentDescriptionShort": "At our restaurant on Ostergade, the desire to prepare excellent meals is what drives our kitchen. We promise that once you've visited L’øst, you'll return over and over again. ", - "restaurantsContentDescriptionMedium": "At our restaurant on Ostergade, the desire to prepare excellent meals is what drives our kitchen. With a fondness for local produce, the menu changes with the season to always offer you the freshest ingredients. " - } - }, - "detailedFacilities": [ - { - "id": 1829, - "name": "Gym", - "code": "HEA - TRAI", - "applyToAllHotels": false, - "public": true, - "icon": "Gym", - "iconName": "Gym", - "sortOrder": 1700 - }, - { - "id": 1406, - "name": "Parking - additional cost", - "code": "PAR", - "applyToAllHotels": false, - "public": true, - "icon": "None", - "sortOrder": 0 - }, - { - "id": 1378, - "name": "Room service", - "code": "ROO - R/S", - "applyToAllHotels": false, - "public": true, - "icon": "RoomService", - "sortOrder": 400 - }, - { - "id": 1017, - "name": "Meeting rooms", - "code": "MEE", - "applyToAllHotels": false, - "public": true, - "icon": "Meeting", - "sortOrder": 9000 - }, - { - "id": 2072, - "name": "Disabled parking", - "code": "DPA", - "applyToAllHotels": false, - "public": true, - "icon": "None", - "sortOrder": 0 - }, - { - "id": 1014, - "name": "Bar", - "code": "BAR", - "applyToAllHotels": false, - "public": true, - "icon": "Bar", - "sortOrder": 1600 - }, - { - "id": 1607, - "name": "Golf course (0-30 km)", - "code": "GOLF", - "applyToAllHotels": false, - "public": false, - "icon": "None", - "sortOrder": 0 - }, - { - "id": 1833, - "name": "Free WiFi", - "code": "IHF", - "applyToAllHotels": false, - "public": true, - "icon": "FreeWiFi", - "sortOrder": 1900 - }, - { - "id": 1834, - "name": "Laundry service", - "code": "LAU", - "applyToAllHotels": false, - "public": true, - "icon": "LaundryService", - "sortOrder": 200 - }, - { - "id": 1835, - "name": "Pet-friendly rooms", - "code": "PET", - "applyToAllHotels": false, - "public": true, - "icon": "None", - "sortOrder": 0 - }, - { - "id": 1383, - "name": "Restaurant", - "code": "-", - "applyToAllHotels": false, - "public": true, - "icon": "Restaurant", - "sortOrder": 6000 - }, - { - "id": 1408, - "name": "Scandic Shop 24 hrs", - "code": "SHOP", - "applyToAllHotels": false, - "public": true, - "icon": "Shop", - "sortOrder": 100 - }, - { - "id": 5806, - "name": "Meeting / conference facilities", - "code": "MEE - MEETING ", - "applyToAllHotels": false, - "public": true, - "icon": "None", - "sortOrder": 1500 - }, - { - "id": 971, - "name": "Shopping", - "code": "-", - "applyToAllHotels": false, - "public": false, - "icon": "None", - "sortOrder": 0 - }, - { - "id": 956, - "name": "Coffee shop", - "code": "COF", - "applyToAllHotels": false, - "public": true, - "icon": "None", - "sortOrder": 0 - }, - { - "id": 1913, - "name": "Overnight security", - "applyToAllHotels": false, - "public": true, - "icon": "None", - "sortOrder": 0 - }, - { - "id": 229144, - "name": "TV with Chromecast", - "applyToAllHotels": false, - "public": true, - "icon": "None", - "sortOrder": 0 - }, - { - "id": 1407, - "name": "Serves breakfast (always included)", - "code": "-", - "applyToAllHotels": false, - "public": true, - "icon": "None", - "sortOrder": 0 - } - ], - "healthFacilities": [ - { - "type": "Gym", - "content": { - "images": [], - "texts": { - "descriptions": { - "short": "", - "medium": "" - } - } - }, - "openingDetails": { - "useManualOpeningHours": false, - "openingHours": { - "ordinary": { - "alwaysOpen": false, - "isClosed": false, - "openingTime": "06:00", - "closingTime": "22:00" - }, - "weekends": { - "alwaysOpen": false, - "isClosed": false, - "openingTime": "06:00", - "closingTime": "22:00" - } - } - }, - "details": [ - { - "name": "ExternalGym", - "type": "Boolean", - "value": "False" - }, - { - "name": "NameOfExternalGym", - "type": "String" - }, - { - "name": "DistanceToExternalGym", - "type": "Int32", - "value": "0" - } - ] - } - ], - "rewardNight": { - "points": 40000, - "campaign": { - "start": "2020-11-30 23:00:00", - "end": "2020-12-30 23:00:00", - "points": 40000 - } - }, - "pointsOfInterest": [ - { - "name": "Strøget", - "distance": 0, - "category": { - "name": "Transportations", - "group": "Trains" - }, - "location": { - "distanceToCentre": 0, - "latitude": 55.96626, - "longitude": 9.388983 - }, - "isHighlighted": true - }, - { - "name": "ARoS", - "distance": 0.4, - "category": { - "name": "Tourist", - "group": "Star" - }, - "location": { - "distanceToCentre": 0, - "latitude": 56.15392, - "longitude": 10.199716 - }, - "isHighlighted": true - }, - { - "name": "DSB", - "distance": 0.7, - "category": { - "name": "Transportations", - "group": "Trains" - }, - "location": { - "distanceToCentre": 0, - "latitude": 55.8628, - "longitude": 9.83647 - }, - "isHighlighted": true - }, - { - "name": "Den gamle by", - "distance": 1.2, - "category": { - "name": "Tourist", - "group": "Star" - }, - "location": { - "distanceToCentre": 0, - "latitude": 56.158783, - "longitude": 10.192115 - }, - "isHighlighted": true - }, - { - "name": "Tivoli Friheden", - "distance": 2.7, - "category": { - "name": "Tourist", - "group": "Star" - }, - "location": { - "distanceToCentre": 0, - "latitude": 56.1366, - "longitude": 10.197853 - }, - "isHighlighted": true - }, - { - "name": "Moesgaard Museum", - "distance": 9.4, - "category": { - "name": "Museum", - "group": "Star" - }, - "location": { - "distanceToCentre": 0, - "latitude": 56.088715, - "longitude": 10.223502 - }, - "isHighlighted": true - }, - { - "name": "Randers Regnskov", - "distance": 39, - "category": { - "name": "Tourist", - "group": "Star" - }, - "location": { - "distanceToCentre": 0, - "latitude": 56.457123, - "longitude": 10.032533 - }, - "isHighlighted": true - }, - { - "name": "Aarhus Airport", - "distance": 40, - "category": { - "name": "Airport", - "group": "Airport" - }, - "location": { - "distanceToCentre": 0, - "latitude": 56.30823, - "longitude": 10.626351 - }, - "isHighlighted": true - }, - { - "name": "Djurs sommerland", - "distance": 48, - "category": { - "name": "Tourist", - "group": "Star" - }, - "location": { - "distanceToCentre": 0, - "latitude": 56.425213, - "longitude": 10.550971 - }, - "isHighlighted": true - }, - { - "name": "Skandinavisk Dyrepark", - "distance": 49, - "category": { - "name": "Tourist", - "group": "Star" - }, - "location": { - "distanceToCentre": 0, - "latitude": 56.340668, - "longitude": 10.649598 - }, - "isHighlighted": true - }, - { - "name": "Ree Park", - "distance": 54, - "category": { - "name": "Tourist", - "group": "Star" - }, - "location": { - "distanceToCentre": 0, - "latitude": 56.26301, - "longitude": 10.738092 - }, - "isHighlighted": true - }, - { - "name": "Legoland", - "distance": 95, - "category": { - "name": "Tourist", - "group": "Star" - }, - "location": { - "distanceToCentre": 0, - "latitude": 55.73551, - "longitude": 9.126805 - }, - "isHighlighted": true - } - ], - "parking": [ - { - "type": "Garage", - "name": "Q-park", - "address": "Hans Hartvig Seedorf Stræde", - "numberOfChargingSpaces": 5, - "distanceToHotel": 0, - "canMakeReservation": false, - "pricing": { - "freeParking": false, - "paymentType": "CanBePaidAtTheHotel", - "localCurrency": { - "currency": "DKK", - "range": { - "min": 200, - "max": 200 - }, - "ordinary": [ - { - "period": "Hour", - "amount": 28, - "startTime": "", - "endTime": "" - }, - { - "period": "Day", - "amount": 200, - "startTime": "", - "endTime": "" - }, - { - "period": "Night", - "amount": 200, - "startTime": "", - "endTime": "" - }, - { - "period": "AllDay", - "amount": 200, - "startTime": "00:00", - "endTime": "23:59" - } - ], - "weekend": [ - { - "period": "Hour", - "amount": 28, - "startTime": "", - "endTime": "" - }, - { - "period": "Day", - "amount": 200, - "startTime": "", - "endTime": "" - }, - { - "period": "Night", - "amount": 200, - "startTime": "", - "endTime": "" - }, - { - "period": "AllDay", - "amount": 200, - "startTime": "00:00", - "endTime": "23:59" - } - ] - } - } - } - ], - "specialNeedGroups": [ - { - "name": "Entrance", - "specialNeeds": [ - { - "name": "Clear direction signs if disabled entrance is located away from main entrance", - "details": "" - }, - { - "name": "Revolving doors at main entrance", - "details": "" - }, - { - "name": "Wide main entrance door (non revolving) with minimum width of 80 cm", - "details": "" - }, - { - "name": "Door/s can be opened automatically at main entrance (All Scandic)", - "details": "" - }, - { - "name": "Night time door bell accessible from wheelchair (max height 120 cm) (All Scandic)", - "details": "" - }, - { - "name": "No threshold at entrance door (All Scandic)", - "details": "" - }, - { - "name": "Seating available close to main entrance (All Scandic)", - "details": "" - } - ] - }, - { - "name": "Public areas - Other", - "specialNeeds": [ - { - "name": "Corridors in hotel accessible with wheelchair", - "details": "" - }, - { - "name": "At least one computer work station that is accessible for wheelchair users (All Scandic)", - "details": "" - }, - { - "name": "Clear passage to the Scandic Shop with wheelchair (All Scandic)", - "details": "" - }, - { - "name": "Service / guide dogs allowed in hotel (All Scandic)", - "details": "" - } - ] - }, - { - "name": "Meeting areas", - "specialNeeds": [ - { - "name": "Disability toilet available in meeting and conference areas", - "details": "" - }, - { - "name": "Meeting and conference floor / area accessible with wheelchair", - "details": "" - }, - { - "name": "Meeting room door with minimum 80 cm width", - "details": "" - }, - { - "name": "Number of disability toilets available", - "details": "1" - }, - { - "name": "Seating available outside meeting room/s", - "details": "" - }, - { - "name": "Clear signage of hearing loop in meeting and conference areas (All Scandic)", - "details": "" - }, - { - "name": "Portable hearing loop available for meeting rooms (All Scandic)", - "details": "" - } - ] - }, - { - "name": "Disability rooms", - "specialNeeds": [ - { - "name": "Bed can be adjusted for legs and back", - "details": "" - }, - { - "name": "Bed height is 55 cm from floor to top of mattress", - "details": "" - }, - { - "name": "Bed on legs", - "details": "" - }, - { - "name": "Wardrobe without doors or with sliding doors", - "details": "" - }, - { - "name": "Light switch reachable from wheelchair", - "details": "" - }, - { - "name": "Minimum of 80 cm free floor space around the bed", - "details": "" - }, - { - "name": "Wooden floors in room", - "details": "" - }, - { - "name": "Number of disability rooms", - "details": "25" - }, - { - "name": "Space under desk accessible for wheelchairs (All Scandic)", - "details": "" - }, - { - "name": "Rail for coat hanger at max height 120 cm (All Scandic)", - "details": "" - }, - { - "name": "TV remote on side table (all scandic hotels)", - "details": "" - }, - { - "name": "Wardrobe shelf accessible from wheelchair (All Scandic)", - "details": "" - }, - { - "name": "Width of corridor in room is at least 80 cm (All Scandic)", - "details": "" - } - ] - }, - { - "name": "Disability rooms - bathroom", - "specialNeeds": [ - { - "name": "Accessible bathtubs", - "details": "" - }, - { - "name": "Alarm / Emergency codes or buttons in bathroom", - "details": "" - }, - { - "name": "Available free space in bathroom", - "details": "size" - }, - { - "name": "No threshold into bathroom", - "details": "" - }, - { - "name": "Other height of wash basin", - "details": "No" - }, - { - "name": "Other width of bathroom door", - "details": "size" - }, - { - "name": "Shower glass wall", - "details": "" - }, - { - "name": "Single lever basin mixer", - "details": "" - }, - { - "name": "Sliding doors into bathroom", - "details": "" - }, - { - "name": "Thermostatic mixer in shower", - "details": "" - }, - { - "name": "Wash basin minimum height 78 cm", - "details": "" - }, - { - "name": "Width of bathroom door is at least 80 cm wide", - "details": "" - }, - { - "name": "Width of shower glass wall passage", - "details": "Ajustable" - }, - { - "name": "Bathroom towels reachable from wheelchair (All Scandic)", - "details": "" - }, - { - "name": "Handrail on the inside of the bathroom door if door opens outwards (All Scandic)", - "details": "" - }, - { - "name": "Hooks reachable from wheelchair (All Scandic)", - "details": "" - }, - { - "name": "Shower handle placed in its lowest position when guest arrives (All Scandic)", - "details": "" - }, - { - "name": "Shower stool available (All Scandic)", - "details": "" - }, - { - "name": "Shower creme / shampoo dispenser in shower reachable from wheelchair (All Scandic)", - "details": "" - }, - { - "name": "Space under wash basin accessible for wheelchairs (All Scandic)", - "details": "" - }, - { - "name": "Toilet paper reachable from toilet (All Scandic)", - "details": "" - }, - { - "name": "View in mirror from wheelchair (All Scandic)", - "details": "" - } - ] - }, - { - "name": "Public areas - Reception", - "specialNeeds": [ - { - "name": "One part of reception counter is of appropriate height for guests in wheelchairs", - "details": "" - }, - { - "name": "Seating and table available close to front desk", - "details": "" - }, - { - "name": "Cane holders at front desk (All Scandic)", - "details": "" - }, - { - "name": "Clear signs of hearing loop and wake up alarm (All Scandic)", - "details": "" - }, - { - "name": "Clear walkway between reception and lifts (All Scandic)", - "details": "" - }, - { - "name": "Clear walkway to reception from entrance (All Scandic)", - "details": "" - }, - { - "name": "Hearing induction loop in reception desk (All Scandic)", - "details": "" - }, - { - "name": "Vibrating wake up/fire alarm device can be borrowed from hotel reception (All Scandic)", - "details": "" - } - ] - }, - { - "name": "Public areas - Restaurant and bar", - "specialNeeds": [ - { - "name": "Buffet breakfast has appropriate height (max 90 cm) for guests in wheelchairs", - "details": "" - }, - { - "name": "Level differences in restaurant", - "details": "" - }, - { - "name": "Other width of walkway to restaurant", - "details": "Elevator between" - }, - { - "name": "Walkway to bar is at least 100 cm wide", - "details": "" - }, - { - "name": "Walkway to restaurant is at least 100 cm wide", - "details": "" - }, - { - "name": "Access ramp or lift in restaurant", - "details": "" - }, - { - "name": "Special needs menu", - "details": "" - }, - { - "name": "Braille / large print menus", - "details": "" - } - ] - }, - { - "name": "Public areas - Lifts and stairs", - "specialNeeds": [ - { - "name": "At least one lift with door widht of 80 cm when open", - "details": "" - }, - { - "name": "Control panel buttons marked in Braille inside lift", - "details": "" - }, - { - "name": "Voice announciation for floor indication and direction of travel", - "details": "" - }, - { - "name": "First and last steps in stairs are clearly marked (contrasting colours or grooved steps)", - "details": "" - }, - { - "name": "Door opener or automatic door/s avaliable for lift", - "details": "" - } - ] - }, - { - "name": "Public areas - Public toilets", - "specialNeeds": [ - { - "name": "Accessible bathroom/s available in public areas", - "details": "" - }, - { - "name": "Alarm / Emergency codes or buttons in bathroom", - "details": "" - }, - { - "name": "Bathroom door is at least 80 cm wide", - "details": "" - }, - { - "name": "Foldable armrests by the toilet", - "details": "" - }, - { - "name": "Hooks reachable from wheelchair", - "details": "" - }, - { - "name": "Number of disability bathrooms available", - "details": "4" - }, - { - "name": "Wash basin minimum height of 78 cm", - "details": "" - }, - { - "name": "Handrail on inside of bathroom door/s if door/s open outwards", - "details": "" - }, - { - "name": "Space under wash basin accessible for wheelchairs", - "details": "" - } - ] - }, - { - "name": "Parking", - "specialNeeds": [ - { - "name": "Clear illuminated and defined path between parking and entrance", - "details": "" - }, - { - "name": "Disabled parking", - "details": "" - }, - { - "name": "Distance from parking to entrance (m)", - "details": "10 meters" - }, - { - "name": "Number of disabled parking bays with min width of 3.6 m each", - "details": "2" - }, - { - "name": "Parking bays clearly marked with disabled symbols", - "details": "X" - }, - { - "name": "Level differences in path from parking to hotel", - "details": "Basement" - } - ] - }, - { - "name": "Other", - "specialNeeds": [ - { - "name": "Staff trained to cater for disabled guests (All Scandic)", - "details": "" - } - ] - }, - { - "name": "Allergy-friendly rooms", - "specialNeeds": [ - { - "name": "Bed linen and towels are washed with eco-friendly detergent", - "details": "" - }, - { - "name": "Cleaning according to the cleaning concept for allergy room", - "details": "" - }, - { - "name": "In the room there has been no smoking or fur animals", - "details": "" - }, - { - "name": "Unscented bathroom products labeled with Asthma Allergy Nordic", - "details": "" - }, - { - "name": "The pillows / quilts are made of synthetic material", - "details": "" - }, - { - "name": "The rooms are located on a separate floor or in a separate corridor where there are no fur animals", - "details": "" - }, - { - "name": "The rooms are not freshly painted in the last three months.", - "details": "" - }, - { - "name": "The rooms have no bedspreads/bed blankets or decorative cushions", - "details": "" - }, - { - "name": "The rooms have windows that can be opened (a ventilation window is enough)", - "details": "" - }, - { - "name": "The rooms have wooden floors", - "details": "" - } - ] - } - ], - "socialMedia": { - "instagram": "", - "facebook": "https://www.facebook.com/ScandicAarhusCity" - }, - "meta": { - "specialAlerts": [ - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-06-01", - "endDate": "2023-06-11" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2022-09-02", - "endDate": "2022-09-21" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-04-20", - "endDate": "2023-05-01" - }, - { - "type": "Hotel", - "displayInBookingFlow": true, - "startDate": "2023-11-16", - "endDate": "2023-12-24" - } - ] - }, - "isActive": true, - "gallery": { - "heroImageIds": [ - { - "metaData": { - "title": "Facade", - "altText": "Facade", - "altText_En": "Facade", - "copyRight": "Elin Strömberg © 2015" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/oue3sg5sq0l6jg7kr4b3/scandic-aarhuscity-facade-1.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/kbmjiiazxjfp647krfnr/scandic-aarhuscity-facade-1.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/5icsc3n1wj1ugyr7056b/scandic-aarhuscity-facade-1.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/6zh46dvzs8htl7zlqo96/scandic-aarhuscity-facade-1.jpg" - } - }, - { - "metaData": { - "title": "Meeting area", - "altText": "Meeting break out area", - "altText_En": "Meeting break out area", - "copyRight": "Elin Strömberg © 2015" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/mp3jc29s1iqyn683pqcc/scandic-aarhuscity-conference-meetingarea-2.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/cz9a44t0o9s1wh0kxi0q/scandic-aarhuscity-conference-meetingarea-2.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/xqnlaezqvmetyfev3g2s/scandic-aarhuscity-conference-meetingarea-2.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/281q7dleu35ivgost1mi/scandic-aarhuscity-conference-meetingarea-2.jpg" - } - }, - { - "metaData": { - "title": "Superior room", - "altText": "Scandic Aarhus City, twin upgrade superior", - "altText_En": "Scandic Aarhus City, twin upgrade superior", - "copyRight": "Mads Armsgaard/ Graae, Armgaard & Bangsbo Photography" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/1ss15jncd6oln7vk73ke/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/y0ez2j8yi09htncdk39r/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/eyzfuqarqfgj21ywtrfh/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/kw5n250ep7zf40e1e0d2/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg" - } - }, - { - "metaData": { - "title": "Scandic Aarhus City, Twin Superior Extra Room", - "altText": "Scandic Aarhus City, Twin Superior Extra Room", - "altText_En": "Scandic Aarhus City, Twin Superior Extra Room", - "copyRight": "Holger Fell/ Panobyte, International" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/x1es4vcav0eeh51ka16o/Scandic-Aarhus-City-Interior-room-Superior-Extra-T.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/8c9gr0thdsit081bmya6/Scandic-Aarhus-City-Interior-room-Superior-Extra-T.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/dmw3mmfjzl3ozgo20i7j/Scandic-Aarhus-City-Interior-room-Superior-Extra-T.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/sh8e1hy5xklr7tdqr99t/Scandic-Aarhus-City-Interior-room-Superior-Extra-T.jpg" - } - }, - { - "metaData": { - "title": "The Lobby at Scandic Aarhus City decorated for banquet.", - "altText": "The Lobby at Scandic Aarhus City decorated for banquet.", - "altText_En": "The Lobby at Scandic Aarhus City decorated for banquet.", - "copyRight": "Mads Armgaard." - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/91h0u60tswog6v99nfjt/GAB4060_Scandic_AarhusC_081.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/c6dadqj45ymxwiyrc3ki/GAB4060_Scandic_AarhusC_081.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/4mdviknekg0o6b7pl3l3/GAB4060_Scandic_AarhusC_081.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/4cebd4qyq68oixx060fw/GAB4060_Scandic_AarhusC_081.jpg" - } - }, - { - "metaData": { - "title": "Riisskov 2, Meeting room", - "altText": "Conference room Riis Skov 2", - "altText_En": "Conference room Riis Skov 2", - "copyRight": "Elin Strömberg © 2015" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/f3nwdoa3at28soit9m6c/scandic-aarhuscity-conference-riisskov2.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/0rabut14ycdettb6jvsv/scandic-aarhuscity-conference-riisskov2.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/eal9w6n0zilw3u2z75s0/scandic-aarhuscity-conference-riisskov2.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/c51pqsn700pczd9l3q6z/scandic-aarhuscity-conference-riisskov2.jpg" - } - } - ], - "smallerImageIds": [ - { - "metaData": { - "title": "Facade", - "altText": "Facade", - "altText_En": "Facade", - "copyRight": "Elin Strömberg © 2015" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/oue3sg5sq0l6jg7kr4b3/scandic-aarhuscity-facade-1.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/kbmjiiazxjfp647krfnr/scandic-aarhuscity-facade-1.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/5icsc3n1wj1ugyr7056b/scandic-aarhuscity-facade-1.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/6zh46dvzs8htl7zlqo96/scandic-aarhuscity-facade-1.jpg" - } - }, - { - "metaData": { - "title": "Reception", - "altText": "Scandic Aarhus City, reception", - "altText_En": "Scandic Aarhus City, reception", - "copyRight": "Mads Armgaard/ Graae/ Armgaard & Bangsbo Photography" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/72p1zeys0w32zsenz30l/Scandic-Aarhus-City-Interior-reception001.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/8jxws1syuvk7capdy610/Scandic-Aarhus-City-Interior-reception001.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/911lkjady9iypykkm0uv/Scandic-Aarhus-City-Interior-reception001.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/i1waz04uj0zrcwu7j7e3/Scandic-Aarhus-City-Interior-reception001.jpg" - } - }, - { - "metaData": { - "title": "Lobby", - "altText": "Scandic Aarhus City, foyer, lobby, sofa, relax area", - "altText_En": "Scandic Aarhus City, foyer, lobby, sofa, relax area", - "copyRight": "Mads Armgaard/ Graae/ Armgaard & Bangsbo Photography" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/zgb3kdpvwj4fx5wjrmke/Scandic-Aarhus-City-Interior-lobby-sofa-relax-area.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/yl758o6wu106c9jz7c9u/Scandic-Aarhus-City-Interior-lobby-sofa-relax-area.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/zk25k8l209tfmyq8hlce/Scandic-Aarhus-City-Interior-lobby-sofa-relax-area.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/1ysbbvv5eipcq25mj90v/Scandic-Aarhus-City-Interior-lobby-sofa-relax-area.jpg" - } - }, - { - "metaData": { - "title": "Lobby area", - "altText": "Lobby", - "altText_En": "Lobby", - "copyRight": "Elin Strömberg © 2015" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/26fh6i19a5l7gm2n3w1y/scandic-aarhuscity-conference-meetingarea-1.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/njgwk2z067p0v2h0rrn3/scandic-aarhuscity-conference-meetingarea-1.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/ab925f1lxwzgl9moy6zd/scandic-aarhuscity-conference-meetingarea-1.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/tfuua9cu4lrbi4mvmwgk/scandic-aarhuscity-conference-meetingarea-1.jpg" - } - }, - { - "metaData": { - "title": "Room", - "altText": "Scandic Aarhus City, Connection Door", - "altText_En": "Scandic Aarhus City, Connection Door", - "copyRight": "Holger Fell" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/ul98bsotsm7cr1acglkc/Scandic-Aarhus-City-Interior-room-Connection-Door.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/gkyd2ywbt1g0fecgjore/Scandic-Aarhus-City-Interior-room-Connection-Door.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/e2oc4harp8snd1xai9tj/Scandic-Aarhus-City-Interior-room-Connection-Door.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/ao9q1gchhg5ge8snmwb5/Scandic-Aarhus-City-Interior-room-Connection-Door.jpg" - } - }, - { - "metaData": { - "title": "Family standard", - "altText": "Scandic Aarhus City, family four, desk, wardrobe", - "altText_En": "Scandic Aarhus City, family four, desk, wardrobe", - "copyRight": "Mads Armsgaard, Graae, Armgaard & Bangsbo Photography" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/a4kesi5jgj8brhalaa7f/Scandic-Aarhus-City-Interior-room-family-four-desk.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/lpe6lp0eilx03qnr8pcs/Scandic-Aarhus-City-Interior-room-family-four-desk.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/spvn9vyfrrav79guena3/Scandic-Aarhus-City-Interior-room-family-four-desk.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/nhqb0fg27x2c1wc0fs1q/Scandic-Aarhus-City-Interior-room-family-four-desk.jpg" - } - }, - { - "metaData": { - "title": "Aarhus City, Family Four", - "altText": "Aarhus City, Family Four", - "altText_En": "Aarhus City, Family Four", - "copyRight": "" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/wp7y9ab0vj8d0kpc8bd5/Scandic-Aarhus-City-Interior-room-Family-Four.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/9tgp31dw1asf6hn7sc4c/Scandic-Aarhus-City-Interior-room-Family-Four.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/6n2n0rke2k2v07jjxw49/Scandic-Aarhus-City-Interior-room-Family-Four.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/snzvs5vxo3zawguyi1l1/Scandic-Aarhus-City-Interior-room-Family-Four.jpg" - } - }, - { - "metaData": { - "title": "Superior room", - "altText": "Scandic Aarhus City, twin upgrade superior, bathroom, Face", - "altText_En": "Scandic Aarhus City, twin upgrade superior, bathroom, Face", - "copyRight": "Mads Armsgaard/ Graae/ Armgaard & Bangsbo Photography" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/m79exezkqfgdpftty20x/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/sca61rw646fiea2ikonk/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/vnzbzqb1e3vq0t5rm1s2/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/884z5n7f1v8zpg6dc527/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg" - } - }, - { - "metaData": { - "title": "Standard room", - "altText": "Scandic Aarhus, standard, old building", - "altText_En": "Scandic Aarhus, standard, old building", - "copyRight": "Mads Armsgaard, Graae, Armgaard & Bangsbo Photography" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/v2vvabswxgkj419dfeb8/Scandic-Aarhus-City-Interior-room-standard-old-bui.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/4rjvciiy0jvqaw45gtzl/Scandic-Aarhus-City-Interior-room-standard-old-bui.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/egvy9c7u8dbwwo7dyl5j/Scandic-Aarhus-City-Interior-room-standard-old-bui.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/dmci1lrzfkktt4gjqmxo/Scandic-Aarhus-City-Interior-room-standard-old-bui.jpg" - } - }, - { - "metaData": { - "title": "Superior room", - "altText": "Scandic Aarhus City, room, superior #572", - "altText_En": "Scandic Aarhus City, room, superior #572", - "copyRight": "Mads Armgaard/ Graae, Armgaard & Bangsbo Photography" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/5ck0n7br57gjyvd8ynqu/Scandic-Aarhus-City-Interior-room-superior-_572.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/n9y8vz0e0ro3n2np9dvs/Scandic-Aarhus-City-Interior-room-superior-_572.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/e6kbe16j9uuvpsll6k0n/Scandic-Aarhus-City-Interior-room-superior-_572.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/ynwz3bmxdjdjzlpbk8x6/Scandic-Aarhus-City-Interior-room-superior-_572.jpg" - } - }, - { - "metaData": { - "title": "Junior suite", - "altText": "Scandic Aarhus City, suite, bed", - "altText_En": "Scandic Aarhus City, suite, bed", - "copyRight": "Mads Armsgaard/ Graae, Armgaard & Bangsbo Photography" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/whmp3nhocemnvyxz8fe5/Scandic-Aarhus-City-Interior-room-suite-bed001.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/p2pua3p8b9scjaza7r96/Scandic-Aarhus-City-Interior-room-suite-bed001.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/th6jbykk6mu3qdkkgqxd/Scandic-Aarhus-City-Interior-room-suite-bed001.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/v1j0xdek0kvtmudhie1j/Scandic-Aarhus-City-Interior-room-suite-bed001.jpg" - } - }, - { - "metaData": { - "title": "Superior room", - "altText": "Scandic Aarhus City, twin upgrade superior", - "altText_En": "Scandic Aarhus City, twin upgrade superior", - "copyRight": "Mads Armsgaard/ Graae, Armgaard & Bangsbo Photography" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/p8fhk8rmt1ivf5n74jhy/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/ki8rf76v78elsuh6ymzb/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/k6nkn5r4158jyholqmv0/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/p9mtckamqq3dj265xgmg/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg" - } - }, - { - "metaData": { - "title": "Hallway", - "altText": "Scandic Aarhus, corridor", - "altText_En": "Scandic Aarhus, corridor", - "copyRight": "Mads Armsgaard, Graae, Armgaard & Bangsbo Photography, Vermundsgade 40A, 3929 2600, mads@gab.dk" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/6xc10p3mouxec0vt4wjr/Scandic-Aarhus-City-Interior-corridor.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/72g50ktvpyur144vbe22/Scandic-Aarhus-City-Interior-corridor.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/kwogcjk2e4x7pjdkuw8x/Scandic-Aarhus-City-Interior-corridor.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/1eulj18pzhjxhgrzqvok/Scandic-Aarhus-City-Interior-corridor.jpg" - } - }, - { - "metaData": { - "title": "Standard bathroom", - "altText": "Scandic Aarhus, standard, bathroom, tub", - "altText_En": "Scandic Aarhus, standard, bathroom, tub", - "copyRight": "Mads Armsgaard, Graae, Armgaard & Bangsbo Photography" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/lmga5ngxn0glm5sotgvm/Scandic-Aarhus-City-Interior-room-standard-bathroo.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/9vq21yenvqnlzpe5m52g/Scandic-Aarhus-City-Interior-room-standard-bathroo.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/lzpy7306vs3fwx9ydp83/Scandic-Aarhus-City-Interior-room-standard-bathroo.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/p7icwhfl5zat0ez8kslg/Scandic-Aarhus-City-Interior-room-standard-bathroo.jpg" - } - }, - { - "metaData": { - "title": "Junior suite", - "altText": "Scandic Aarhus City, suite", - "altText_En": "Scandic Aarhus City, suite", - "copyRight": "Mads Armsgaard, Graae, Armgaard & Bangsbo Photography" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/pnv0fogpsewae4f0wfjd/Scandic-Aarhus-City-Interior-room-suite.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/n3rn2q4wtrplx8cengnx/Scandic-Aarhus-City-Interior-room-suite.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/vrogid30l06keair1l0t/Scandic-Aarhus-City-Interior-room-suite.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/yhixhovp5v3456d4o5de/Scandic-Aarhus-City-Interior-room-suite.jpg" - } - }, - { - "metaData": { - "title": "Superior room", - "altText": "Scandic Aarhus City, twin upgrade superior", - "altText_En": "Scandic Aarhus City, twin upgrade superior", - "copyRight": "Mads Armsgaard/ Graae, Armgaard & Bangsbo Photography" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/1ss15jncd6oln7vk73ke/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/y0ez2j8yi09htncdk39r/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/eyzfuqarqfgj21ywtrfh/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/kw5n250ep7zf40e1e0d2/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg" - } - }, - { - "metaData": { - "title": "Junior suite", - "altText": "Scandic Aarhus City, suite, view, living room, Aros", - "altText_En": "Scandic Aarhus City, suite, view, living room, Aros", - "copyRight": "Mads Armsgaard" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/hjcav94mfqsen42rtrzj/Scandic-Aarhus-City-Interior-room-suite-view-livin.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/yftxxd70z47ftz954cde/Scandic-Aarhus-City-Interior-room-suite-view-livin.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/pokvg6kvcyt2wwkahukd/Scandic-Aarhus-City-Interior-room-suite-view-livin.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/hznhcypykdqo0mgd8coa/Scandic-Aarhus-City-Interior-room-suite-view-livin.jpg" - } - }, - { - "metaData": { - "title": "Superior Extra ", - "altText": "Scandic Aarhus City, room, superior extra #327", - "altText_En": "Scandic Aarhus City, room, superior extra #327", - "copyRight": "Mads Armgaard /Graae, Armgaard & Bangsbo Photography" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/ncgmjx5mcsvtirn7prhd/Scandic-Aarhus-City-Interior-room-superior-extra-_.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/hc6lmyt1icdb1s9fwydq/Scandic-Aarhus-City-Interior-room-superior-extra-_.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/opd51xpws6o5fn7yttj5/Scandic-Aarhus-City-Interior-room-superior-extra-_.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/xome9calxeibetjoustz/Scandic-Aarhus-City-Interior-room-superior-extra-_.jpg" - } - }, - { - "metaData": { - "title": "Superior room", - "altText": "Scandic Aarhus City, twin upgrade superior, chairs", - "altText_En": "Scandic Aarhus City, twin upgrade superior, chairs", - "copyRight": "Mads Armsgaard/ Graae, Armgaard & Bangsbo Photography" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/0lzyey5fuqhfujf5istt/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/09ngmn2wlz0ix2f745j3/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/87qn9fxino4etw9gulgs/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/ve8rodorvy38gtlaxuy7/Scandic-Aarhus-City-Interior-room-superior-twin-up.jpg" - } - }, - { - "metaData": { - "title": "Restaurant L'øst", - "altText": "Scandic Aarhus City, L'øst", - "altText_En": "Scandic Aarhus City, L'øst", - "copyRight": "Mads Armgaard/ Graae/ Armgaard & Bangsbo Photography" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/9g4xnhm0v5s25lb74id7/Scandic-Aarhus-City-Interior-restaurant-The-Grill0.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/o4r0ckp2auxdgquo2olx/Scandic-Aarhus-City-Interior-restaurant-The-Grill0.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/ssdr10hmos6xw0d4jmws/Scandic-Aarhus-City-Interior-restaurant-The-Grill0.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/ce5ye6zyg6kwqhnif2j9/Scandic-Aarhus-City-Interior-restaurant-The-Grill0.jpg" - } - }, - { - "metaData": { - "title": "Restaurant L'øst", - "altText": "Scandic Aarhus City, L'øst", - "altText_En": "Scandic Aarhus City, L'øst", - "copyRight": "Mads Armgaard/ Graae/ Armgaard & Bangsbo Photography" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/m1dfdf43ukzavkaqlre2/Scandic-Aarhus-City-Interior-restaurant-The-Grill0.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/2lvmjlhsqbpgp4ak0l30/Scandic-Aarhus-City-Interior-restaurant-The-Grill0.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/nj26nm70lyeat7up7gzc/Scandic-Aarhus-City-Interior-restaurant-The-Grill0.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/tdrk53sa9cw5opkefjy5/Scandic-Aarhus-City-Interior-restaurant-The-Grill0.jpg" - } - }, - { - "metaData": { - "title": "Restaurant The Grill", - "altText": "Scandic Aarhus City, restaurant, The Grill 1st floor", - "altText_En": "Scandic Aarhus City, restaurant, The Grill 1st floor", - "copyRight": "Mads Armgaard/ Graae/ Armgaard & Bangsbo Photography" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/jt0t3r46a6clsji5sylh/Scandic-Aarhus-City-Interior-restaurant-The-Grill-.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/h3a7a2jlu12dnshaplql/Scandic-Aarhus-City-Interior-restaurant-The-Grill-.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/i36fnz7h9zgq27lcok94/Scandic-Aarhus-City-Interior-restaurant-The-Grill-.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/n5csi1uhv6xda8xkad8j/Scandic-Aarhus-City-Interior-restaurant-The-Grill-.jpg" - } - }, - { - "metaData": { - "title": "Bar", - "altText": "Scandic Aarhus City, bar", - "altText_En": "Scandic Aarhus City, bar", - "copyRight": "Mads Armgaard/ Graae/ Armgaard & Bangsbo Photography" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/0pz56b8r11b5a6617mdd/Scandic-Aarhus-City-Interior-bar.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/zahnrlokna4s813l550w/Scandic-Aarhus-City-Interior-bar.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/twpu573k2l2mugtyqama/Scandic-Aarhus-City-Interior-bar.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/nby7ch6pktzke94kkuym/Scandic-Aarhus-City-Interior-bar.jpg" - } - }, - { - "metaData": { - "title": "Meeting area", - "altText": "Meeting break out area", - "altText_En": "Meeting break out area", - "copyRight": "Elin Strömberg © 2015" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/mp3jc29s1iqyn683pqcc/scandic-aarhuscity-conference-meetingarea-2.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/cz9a44t0o9s1wh0kxi0q/scandic-aarhuscity-conference-meetingarea-2.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/xqnlaezqvmetyfev3g2s/scandic-aarhuscity-conference-meetingarea-2.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/281q7dleu35ivgost1mi/scandic-aarhuscity-conference-meetingarea-2.jpg" - } - }, - { - "metaData": { - "title": "Mosegaard 1, Meeting room", - "altText": "", - "altText_En": "", - "copyRight": "Elin Strömberg © 2015" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/e8ddpkug14ees7n2ibsu/scandic-aarhuscity-conference-moesgard1.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/t4gqi6bbbqqyqgw3nnt8/scandic-aarhuscity-conference-moesgard1.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/npb4vwmgl9pd38t90vaq/scandic-aarhuscity-conference-moesgard1.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/pla3ac423m80wb1w28ia/scandic-aarhuscity-conference-moesgard1.jpg" - } - }, - { - "metaData": { - "title": "Moesgaard 1+2, Meeting room", - "altText": "", - "altText_En": "", - "copyRight": "Elin Strömberg © 2015" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/fjy6fw28d7huoz8gwgby/scandic-aarhuscity-conference-moesgard1_2.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/6c4we75y8x5lc67wdqs7/scandic-aarhuscity-conference-moesgard1_2.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/tvam2ieigbd8y573vxt3/scandic-aarhuscity-conference-moesgard1_2.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/bxwfopzmbdyejnv7qfs3/scandic-aarhuscity-conference-moesgard1_2.jpg" - } - }, - { - "metaData": { - "title": "Mosegaard 2, Meeting room", - "altText": "Meeting room Mosegaard 2", - "altText_En": "Meeting room Mosegaard 2", - "copyRight": "Elin Strömberg © 2015" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/zx4rdtcpps2reaw3g5hu/scandic-aarhuscity-conference-moesgard2.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/hcs5zkcuf1x518j7jrbn/scandic-aarhuscity-conference-moesgard2.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/ulm33qthdovevi2lnxpo/scandic-aarhuscity-conference-moesgard2.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/q4axu3oty3mtgg4yolog/scandic-aarhuscity-conference-moesgard2.jpg" - } - }, - { - "metaData": { - "title": "Mosegaard 3, Meeting room", - "altText": "Meeting room Mosegaard 3", - "altText_En": "Meeting room Mosegaard 3", - "copyRight": "Elin Strömberg © 2015" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/v6lx30xb7pj13th4fiy2/scandic-aarhuscity-conference-moesgard3.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/jssn7m4krash0xoj3h33/scandic-aarhuscity-conference-moesgard3.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/5n2mfqcc8v8djf7kjzi8/scandic-aarhuscity-conference-moesgard3.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/zisup8n0ypdwxf7zcisa/scandic-aarhuscity-conference-moesgard3.jpg" - } - }, - { - "metaData": { - "title": "Riisskov 1, Meeting room", - "altText": "Meeting room Riis Skov 1", - "altText_En": "Meeting room Riis Skov 1", - "copyRight": "Elin Strömberg © 2015" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/7glfbge7t65uak4pdpgp/scandic-aarhuscity-conference-riisskov1.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/j6mv8idkv26pq08rlsjg/scandic-aarhuscity-conference-riisskov1.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/u1sf87ntk8zohyynvilm/scandic-aarhuscity-conference-riisskov1.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/bpzyzztpbqhtrq62kqx8/scandic-aarhuscity-conference-riisskov1.jpg" - } - }, - { - "metaData": { - "title": "Riisskov 2, Meeting room", - "altText": "Conference room Riis Skov 2", - "altText_En": "Conference room Riis Skov 2", - "copyRight": "Elin Strömberg © 2015" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/f3nwdoa3at28soit9m6c/scandic-aarhuscity-conference-riisskov2.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/0rabut14ycdettb6jvsv/scandic-aarhuscity-conference-riisskov2.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/eal9w6n0zilw3u2z75s0/scandic-aarhuscity-conference-riisskov2.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/c51pqsn700pczd9l3q6z/scandic-aarhuscity-conference-riisskov2.jpg" - } - }, - { - "metaData": { - "title": "Meeting room Tangkrogen", - "altText": "Meeting room Tangkrogen", - "altText_En": "Meeting room Tangkrogen", - "copyRight": "" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/c1u1vsl4r66csugbbfz0/Tangkrogen_meeting_Scandic-aarhus-city.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/9bdl461j91twwrdinstp/Tangkrogen_meeting_Scandic-aarhus-city.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/o9jkpr9ljxlpxe1hpf3c/Tangkrogen_meeting_Scandic-aarhus-city.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/vyfoyr10ire48o1b1680/Tangkrogen_meeting_Scandic-aarhus-city.jpg" - } - }, - { - "metaData": { - "title": "Meeting area", - "altText": "Meeting area", - "altText_En": "Meeting area", - "copyRight": "Elin Strömberg © 2015" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/5kr0flx1m6r1iklwg34x/scandic-aarhuscity-conference-meetingarea-tastebre.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/nklz299xlyx26xa1ucpp/scandic-aarhuscity-conference-meetingarea-tastebre.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/zytdsh0joe4y00laxgq7/scandic-aarhuscity-conference-meetingarea-tastebre.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/qnxfv2fqxybszya6xhx4/scandic-aarhuscity-conference-meetingarea-tastebre.jpg" - } - }, - { - "metaData": { - "title": "Meeting area", - "altText": "conference break out area", - "altText_En": "conference break out area", - "copyRight": "Elin Strömberg © 2015" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/23lmat50lcsagxqaziom/scandic-aarhuscity-conference-meetingarea-tastebre.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/756dp95dec9vfyfkn3ju/scandic-aarhuscity-conference-meetingarea-tastebre.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/4rx8gqot47h1pa6dlnke/scandic-aarhuscity-conference-meetingarea-tastebre.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/r158v77ivf859zzdrr7d/scandic-aarhuscity-conference-meetingarea-tastebre.jpg" - } - }, - { - "metaData": { - "title": "Gym", - "altText": "Scandic Aarhus City, fitness facilities, gym", - "altText_En": "Scandic Aarhus City, fitness facilities, gym", - "copyRight": "Mads Armgaard/ Graae/ Armgaard & Bangsbo Photography" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/dryyyc3z90bu0j9lxns2/Scandic-Aarhus-City-Interior-gym-fitness-facilitie.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/3ga3bvv3i0q1c5158te4/Scandic-Aarhus-City-Interior-gym-fitness-facilitie.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/5hlwlfsl6616pw3wkvmd/Scandic-Aarhus-City-Interior-gym-fitness-facilitie.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/rlgkzxcda7bq3381un05/Scandic-Aarhus-City-Interior-gym-fitness-facilitie.jpg" - } - }, - { - "metaData": { - "title": "Roof", - "altText": "Scandic Aarhus, roof, solar cells", - "altText_En": "Scandic Aarhus, roof, solar cells", - "copyRight": "Mads Armgaard/ Graae/ Armgaard & Bangsbo Photography" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/bbam2qswl145lu1yjn6o/Scandic-Aarhus-City-Exterior-roof-solar-cells.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/n2lc8xkp73gvisvkz8uv/Scandic-Aarhus-City-Exterior-roof-solar-cells.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/2fpulwq947lslssrntfy/Scandic-Aarhus-City-Exterior-roof-solar-cells.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/xmi8a7bm9b77u22c0ndw/Scandic-Aarhus-City-Exterior-roof-solar-cells.jpg" - } - }, - { - "metaData": { - "title": "Roof", - "altText": "Scandic Aarhus City, bees, roof, beehives", - "altText_En": "Scandic Aarhus City, bees, roof, beehives", - "copyRight": "Mads Armsgaard, Graae, Armgaard & Bangsbo Photography, Vermundsgade 40A, 3929 2600, mads@gab.dk" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/smkqhjrfso82rkktfed4/Scandic-Aarhus-City-Interior-bees-roof-beehives.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/7lg8z5m98bj3fj8hepw4/Scandic-Aarhus-City-Interior-bees-roof-beehives.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/lpz51rz6frk51poah36a/Scandic-Aarhus-City-Interior-bees-roof-beehives.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/tsly49q7qne8fxwy9u1b/Scandic-Aarhus-City-Interior-bees-roof-beehives.jpg" - } - } - ] - }, - "conferencesAndMeetings": { - "pageUrl": "https://test3.scandichotels.com/hotels/denmark/aarhus/scandic-aarhus-city/meetings-conferences-events", - "heroImageIds": [ - { - "metaData": { - "title": "Scandic Aarhus City, lobby, foyer, sofa, relax area", - "altText": "Scandic Aarhus City, lobby, foyer, sofa, relax area", - "altText_En": "Scandic Aarhus City, lobby, foyer, sofa, relax area", - "copyRight": "Mads Armgaard/ Graae/ Armgaard & Bangsbo Photography" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/2d885sgkx4exi20yjtdz/Scandic-Aarhus-City-Interior-lobby-foyer-sofa-rela.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/bwcr1fcmn2zkq9kx23n0/Scandic-Aarhus-City-Interior-lobby-foyer-sofa-rela.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/xktoqjka52bmclbht85b/Scandic-Aarhus-City-Interior-lobby-foyer-sofa-rela.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/lmbslvxczewpaggpftll/Scandic-Aarhus-City-Interior-lobby-foyer-sofa-rela.jpg" - } - }, - { - "metaData": { - "title": "Meeting area", - "altText": "Meeting break out area", - "altText_En": "Meeting break out area", - "copyRight": "Elin Strömberg © 2015" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/mp3jc29s1iqyn683pqcc/scandic-aarhuscity-conference-meetingarea-2.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/cz9a44t0o9s1wh0kxi0q/scandic-aarhuscity-conference-meetingarea-2.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/xqnlaezqvmetyfev3g2s/scandic-aarhuscity-conference-meetingarea-2.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/281q7dleu35ivgost1mi/scandic-aarhuscity-conference-meetingarea-2.jpg" - } - }, - { - "metaData": { - "title": "Meeting area", - "altText": "Meeting area", - "altText_En": "Meeting area", - "copyRight": "Elin Strömberg © 2015" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/5kr0flx1m6r1iklwg34x/scandic-aarhuscity-conference-meetingarea-tastebre.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/nklz299xlyx26xa1ucpp/scandic-aarhuscity-conference-meetingarea-tastebre.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/zytdsh0joe4y00laxgq7/scandic-aarhuscity-conference-meetingarea-tastebre.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/qnxfv2fqxybszya6xhx4/scandic-aarhuscity-conference-meetingarea-tastebre.jpg" - } - }, - { - "metaData": { - "title": "Mosegaard 3, Meeting room", - "altText": "Meeting room Mosegaard 3", - "altText_En": "Meeting room Mosegaard 3", - "copyRight": "Elin Strömberg © 2015" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/v6lx30xb7pj13th4fiy2/scandic-aarhuscity-conference-moesgard3.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/jssn7m4krash0xoj3h33/scandic-aarhuscity-conference-moesgard3.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/5n2mfqcc8v8djf7kjzi8/scandic-aarhuscity-conference-moesgard3.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/zisup8n0ypdwxf7zcisa/scandic-aarhuscity-conference-moesgard3.jpg" - } - }, - { - "metaData": { - "title": "Riisskov 1, Meeting room", - "altText": "Meeting room Riis Skov 1", - "altText_En": "Meeting room Riis Skov 1", - "copyRight": "Elin Strömberg © 2015" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/7glfbge7t65uak4pdpgp/scandic-aarhuscity-conference-riisskov1.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/j6mv8idkv26pq08rlsjg/scandic-aarhuscity-conference-riisskov1.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/u1sf87ntk8zohyynvilm/scandic-aarhuscity-conference-riisskov1.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/bpzyzztpbqhtrq62kqx8/scandic-aarhuscity-conference-riisskov1.jpg" - } - }, - { - "metaData": { - "title": "Riisskov 2, Meeting room", - "altText": "Conference room Riis Skov 2", - "altText_En": "Conference room Riis Skov 2", - "copyRight": "Elin Strömberg © 2015" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/f3nwdoa3at28soit9m6c/scandic-aarhuscity-conference-riisskov2.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/0rabut14ycdettb6jvsv/scandic-aarhuscity-conference-riisskov2.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/eal9w6n0zilw3u2z75s0/scandic-aarhuscity-conference-riisskov2.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/c51pqsn700pczd9l3q6z/scandic-aarhuscity-conference-riisskov2.jpg" - } - }, - { - "metaData": { - "title": "Meeting area", - "altText": "conference break out area", - "altText_En": "conference break out area", - "copyRight": "Elin Strömberg © 2015" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/23lmat50lcsagxqaziom/scandic-aarhuscity-conference-meetingarea-tastebre.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/756dp95dec9vfyfkn3ju/scandic-aarhuscity-conference-meetingarea-tastebre.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/4rx8gqot47h1pa6dlnke/scandic-aarhuscity-conference-meetingarea-tastebre.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/r158v77ivf859zzdrr7d/scandic-aarhuscity-conference-meetingarea-tastebre.jpg" - } - }, - { - "metaData": { - "title": "Meeting room Tangkrogen", - "altText": "Meeting room Tangkrogen", - "altText_En": "Meeting room Tangkrogen", - "copyRight": "" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/c1u1vsl4r66csugbbfz0/Tangkrogen_meeting_Scandic-aarhus-city.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/9bdl461j91twwrdinstp/Tangkrogen_meeting_Scandic-aarhus-city.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/o9jkpr9ljxlpxe1hpf3c/Tangkrogen_meeting_Scandic-aarhus-city.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/vyfoyr10ire48o1b1680/Tangkrogen_meeting_Scandic-aarhus-city.jpg" - } - } - ] - }, - "healthAndWellness": { - "headingText": "Gym and wellness", - "heroImageIds": [ - { - "metaData": { - "title": "Gym", - "altText": "Scandic Aarhus City, fitness facilities, gym", - "altText_En": "Scandic Aarhus City, fitness facilities, gym", - "copyRight": "Mads Armgaard/ Graae/ Armgaard & Bangsbo Photography" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/dryyyc3z90bu0j9lxns2/Scandic-Aarhus-City-Interior-gym-fitness-facilitie.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/3ga3bvv3i0q1c5158te4/Scandic-Aarhus-City-Interior-gym-fitness-facilitie.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/5hlwlfsl6616pw3wkvmd/Scandic-Aarhus-City-Interior-gym-fitness-facilitie.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/rlgkzxcda7bq3381un05/Scandic-Aarhus-City-Interior-gym-fitness-facilitie.jpg" - } - } - ] - }, - "accessibilityElevatorPitchText": "Find the information you might need, before visiting us. You are always welcome to our hotel - completely without barriers. Regardless of impairment, sight, hearing, allergies or wheelchair, we have made sure that you enjoy your stay." - }, - "relationships": { - "restaurants": { - "links": { - "related": "https://localhost:7149/hotel/vNext/Hotels/736/restaurants?language=En" - } - }, - "nearbyHotels": { - "links": { - "related": "https://localhost:7149/hotel/vNext/Hotels/736/nearbyHotels?language=En" - } - }, - "roomCategories": { - "links": { - "related": "https://localhost:7149/hotel/vNext/Hotels/736/roomCategories?language=En" - } - }, - "meetingRooms": { - "links": { - "related": "https://localhost:7149/hotel/vNext/Hotels/736/meetingRooms?language=En" - } - } - }, - "id": "736", - "language": "En", - "type": "hotels" - }, - "included": [ - { - "attributes": { - "name": "Lobby bar", - "isPublished": true, - "email": "aarhuscity@scandichotels.com", - "phoneNumber": "+45 89318132", - "externalBreakfast": { - "isAvailable": true, - "localPriceForExternalGuests": { - "currency": "DKK", - "amount": 129 - } - }, - "menus": [ - { - "name": "Bar - drinks 1 ", - "url": "https://test3.scandichotels.com/RestaurantService/RestaurantMenuService/GetMenufile?hotelId=736&restId=rest1&fileId=33396" - }, - { - "name": "Bar - beer 2", - "url": "https://test3.scandichotels.com/RestaurantService/RestaurantMenuService/GetMenufile?hotelId=736&restId=rest1&fileId=33586" - } - ], - "openingDetails": [ - { - "openingHours": { - "isActive": true, - "name": "Frokost", - "monday": { - "sortOrder": 0, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "11:00", - "closingTime": "17:00" - }, - "tuesday": { - "sortOrder": 1, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "11:00", - "closingTime": "17:00" - }, - "wednesday": { - "sortOrder": 2, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "11:00", - "closingTime": "17:00" - }, - "thursday": { - "sortOrder": 3, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "11:00", - "closingTime": "17:00" - }, - "friday": { - "sortOrder": 4, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "11:00", - "closingTime": "17:00" - }, - "saturday": { - "sortOrder": 5, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "11:00", - "closingTime": "17:00" - }, - "sunday": { - "sortOrder": 6, - "alwaysOpen": false, - "isClosed": true, - "openingTime": "00:00", - "closingTime": "00:00" - } - }, - "alternateOpeningHours": { - "isActive": false - } - }, - { - "openingHours": { - "isActive": true, - "name": "Bar", - "monday": { - "sortOrder": 0, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "11:00", - "closingTime": "00:00" - }, - "tuesday": { - "sortOrder": 1, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "11:00", - "closingTime": "00:00" - }, - "wednesday": { - "sortOrder": 2, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "11:00", - "closingTime": "00:00" - }, - "thursday": { - "sortOrder": 3, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "11:00", - "closingTime": "00:00" - }, - "friday": { - "sortOrder": 4, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "11:00", - "closingTime": "01:00" - }, - "saturday": { - "sortOrder": 5, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "11:00", - "closingTime": "01:00" - }, - "sunday": { - "sortOrder": 6, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "11:00", - "closingTime": "23:00" - } - }, - "alternateOpeningHours": { - "isActive": false - } - } - ], - "content": { - "images": [ - { - "metaData": { - "title": "", - "altText": "restaurant at scandic aarhus city i aarhus", - "altText_En": "restaurant at scandic aarhus city i aarhus", - "copyRight": "Martin Panduro\r\nwww.raisfoto.dk" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/hbwas2u7f6zs2dsh47ss/Scandic_AarhusCity_RAIS4150.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/9cq1cz90p0ymmt742xje/Scandic_AarhusCity_RAIS4150.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/1wsvmjunq96ho9nnnxji/Scandic_AarhusCity_RAIS4150.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/xdrlyrqsu3mow4nxo7y1/Scandic_AarhusCity_RAIS4150.jpg" - } - }, - { - "metaData": { - "title": "", - "altText": "restaurant at scandic aarhus city i aarhus", - "altText_En": "restaurant at scandic aarhus city i aarhus", - "copyRight": "Martin Panduro\r\nwww.raisfoto.dk" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/27a5cmmvuoxa55osqrvf/Scandic_AarhusCity_RAIS4183.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/fa1obnw9e5vfn9ey7s4n/Scandic_AarhusCity_RAIS4183.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/dthkdducmf3myg7fw534/Scandic_AarhusCity_RAIS4183.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/mcwo3gumue7t7mftjz3n/Scandic_AarhusCity_RAIS4183.jpg" - } - }, - { - "metaData": { - "title": "", - "altText": "restaurant at scandic aarhus city i aarhus", - "altText_En": "restaurant at scandic aarhus city i aarhus", - "copyRight": "Martin Panduro\r\nwww.raisfoto.dk" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/lci02wg7kar1nqyr1xr6/Scandic_AarhusCity_RAIS4416.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/aveu38u823x53l7ria31/Scandic_AarhusCity_RAIS4416.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/behrmlh75b26d2yj8kpv/Scandic_AarhusCity_RAIS4416.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/nz7y2vurhsfwr8h4wfuw/Scandic_AarhusCity_RAIS4416.jpg" - } - }, - { - "metaData": { - "title": "", - "altText": "restaurant at scandic aarhus city in aarhus", - "altText_En": "restaurant at scandic aarhus city in aarhus", - "copyRight": "Martin Panduro\r\nwww.raisfoto.dk" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/nepf6a77dd7hsoikv4zk/Scandic_AarhusCity_RAIS4088.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/xo9arvjalj57uk94luxz/Scandic_AarhusCity_RAIS4088.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/judduz7kdq2z1u0fi3bm/Scandic_AarhusCity_RAIS4088.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/3ghfcwspo8fas6qhl822/Scandic_AarhusCity_RAIS4088.jpg" - } - } - ], - "texts": { - "descriptions": { - "short": "You can enjoy delightful cocktails in our bar as well as freshly brewed coffee and fast, good food from our bar menu.", - "medium": "You can enjoy delightful cocktails in our bar as well as freshly brewed coffee and fast, good food from our bar menu. Our bar is also the ideal place for short, informal meetings, or if you want to get a little work done." - } - } - }, - "bookTableUrl": "" - }, - "id": "58e70dfe-f499-49ee-9ed8-365b18f83f40", - "type": "restaurants" - }, - { - "attributes": { - "name": "Restaurant L'øst", - "isPublished": true, - "email": "kontakt@restaurantloest.dk", - "phoneNumber": "+45 89318132", - "externalBreakfast": { - "isAvailable": true, - "localPriceForExternalGuests": { - "currency": "DKK", - "amount": 129 - } - }, - "menus": [ - { - "name": "Torsdags tilbud ", - "url": "https://test3.scandichotels.com/RestaurantService/RestaurantMenuService/GetMenufile?hotelId=736&restId=rest0&fileId=26785" - }, - { - "name": "Restaurant LØST (DK)", - "url": "https://test3.scandichotels.com/RestaurantService/RestaurantMenuService/GetMenufile?hotelId=736&restId=rest0&fileId=33503" - }, - { - "name": "Restaurant LØST (ENG)", - "url": "https://test3.scandichotels.com/RestaurantService/RestaurantMenuService/GetMenufile?hotelId=736&restId=rest0&fileId=33504" - } - ], - "openingDetails": [ - { - "openingHours": { - "isActive": true, - "name": "Morgenmad", - "monday": { - "sortOrder": 0, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "06:30", - "closingTime": "10:00" - }, - "tuesday": { - "sortOrder": 1, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "06:30", - "closingTime": "10:00" - }, - "wednesday": { - "sortOrder": 2, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "06:30", - "closingTime": "10:00" - }, - "thursday": { - "sortOrder": 3, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "06:30", - "closingTime": "10:00" - }, - "friday": { - "sortOrder": 4, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "06:30", - "closingTime": "10:00" - }, - "saturday": { - "sortOrder": 5, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "07:00", - "closingTime": "10:30" - }, - "sunday": { - "sortOrder": 6, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "07:00", - "closingTime": "10:30" - } - }, - "alternateOpeningHours": { - "isActive": false - } - }, - { - "openingHours": { - "isActive": true, - "name": "Frokost", - "monday": { - "sortOrder": 0, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "11:00", - "closingTime": "17:00" - }, - "tuesday": { - "sortOrder": 1, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "11:00", - "closingTime": "17:00" - }, - "wednesday": { - "sortOrder": 2, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "11:00", - "closingTime": "17:00" - }, - "thursday": { - "sortOrder": 3, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "11:00", - "closingTime": "17:00" - }, - "friday": { - "sortOrder": 4, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "11:00", - "closingTime": "17:00" - }, - "saturday": { - "sortOrder": 5, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "11:00", - "closingTime": "17:00" - }, - "sunday": { - "sortOrder": 6, - "alwaysOpen": false, - "isClosed": true, - "openingTime": "00:00", - "closingTime": "00:00" - } - }, - "alternateOpeningHours": { - "isActive": true, - "name": "Åbningstider i julen", - "monday": { - "sortOrder": 0, - "alwaysOpen": false, - "isClosed": true, - "openingTime": "00:00", - "closingTime": "00:00" - }, - "tuesday": { - "sortOrder": 1, - "alwaysOpen": false, - "isClosed": true, - "openingTime": "00:00", - "closingTime": "00:00" - }, - "wednesday": { - "sortOrder": 2, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "11:00", - "closingTime": "17:00" - }, - "thursday": { - "sortOrder": 3, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "11:00", - "closingTime": "17:00" - }, - "friday": { - "sortOrder": 4, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "11:00", - "closingTime": "17:00" - }, - "saturday": { - "sortOrder": 5, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "11:00", - "closingTime": "17:00" - }, - "sunday": { - "sortOrder": 6, - "alwaysOpen": false, - "isClosed": true, - "openingTime": "00:00", - "closingTime": "00:00" - } - } - }, - { - "openingHours": { - "isActive": true, - "name": "Aftensmad", - "monday": { - "sortOrder": 0, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "17:00", - "closingTime": "21:30" - }, - "tuesday": { - "sortOrder": 1, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "17:00", - "closingTime": "21:30" - }, - "wednesday": { - "sortOrder": 2, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "17:00", - "closingTime": "21:30" - }, - "thursday": { - "sortOrder": 3, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "17:00", - "closingTime": "21:30" - }, - "friday": { - "sortOrder": 4, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "17:00", - "closingTime": "21:30" - }, - "saturday": { - "sortOrder": 5, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "17:00", - "closingTime": "21:30" - }, - "sunday": { - "sortOrder": 6, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "17:00", - "closingTime": "21:30" - } - }, - "alternateOpeningHours": { - "isActive": true, - "name": "Åbningstider i Julen", - "monday": { - "sortOrder": 0, - "alwaysOpen": false, - "isClosed": true, - "openingTime": "00:00", - "closingTime": "00:00" - }, - "tuesday": { - "sortOrder": 1, - "alwaysOpen": false, - "isClosed": true, - "openingTime": "00:00", - "closingTime": "00:00" - }, - "wednesday": { - "sortOrder": 2, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "17:00", - "closingTime": "21:30" - }, - "thursday": { - "sortOrder": 3, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "17:00", - "closingTime": "21:30" - }, - "friday": { - "sortOrder": 4, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "17:00", - "closingTime": "21:30" - }, - "saturday": { - "sortOrder": 5, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "17:00", - "closingTime": "21:30" - }, - "sunday": { - "sortOrder": 6, - "alwaysOpen": false, - "isClosed": true, - "openingTime": "00:00", - "closingTime": "00:00" - } - } - }, - { - "openingHours": { - "isActive": true, - "name": "Bar", - "monday": { - "sortOrder": 0, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "11:00", - "closingTime": "00:00" - }, - "tuesday": { - "sortOrder": 1, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "11:00", - "closingTime": "00:00" - }, - "wednesday": { - "sortOrder": 2, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "11:00", - "closingTime": "00:00" - }, - "thursday": { - "sortOrder": 3, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "11:00", - "closingTime": "00:00" - }, - "friday": { - "sortOrder": 4, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "11:00", - "closingTime": "01:00" - }, - "saturday": { - "sortOrder": 5, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "11:00", - "closingTime": "01:00" - }, - "sunday": { - "sortOrder": 6, - "alwaysOpen": false, - "isClosed": false, - "openingTime": "11:00", - "closingTime": "23:00" - } - }, - "alternateOpeningHours": { - "isActive": false - } - } - ], - "content": { - "images": [ - { - "metaData": { - "title": "", - "altText": "A plate of food", - "altText_En": "A plate of food", - "copyRight": "Martin Panduro" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/4sv8cdqzm6pqemor8ain/Aarhus_City_restaurant_M-R_47.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/d8jxg0aa01nn4oqb3x6i/Aarhus_City_restaurant_M-R_47.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/1utrq41tle88y8evkcee/Aarhus_City_restaurant_M-R_47.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/g5bpx7c3yz34rzk8gnj0/Aarhus_City_restaurant_M-R_47.jpg" - } - }, - { - "metaData": { - "title": "", - "altText": "resturant at scandic aarhus city in aarhus", - "altText_En": "resturant at scandic aarhus city in aarhus", - "copyRight": "Martin Panduro\r\nwww.raisfoto.dk" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/fct5cg8hl6fg6h1mzv4u/Scandic_AarhusCity_RAIS3914.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/eodsbcb23ne6myf3yz8c/Scandic_AarhusCity_RAIS3914.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/u5y6uxtyey6fmwl3cqg8/Scandic_AarhusCity_RAIS3914.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/mnqk0sq94qqyw7jjef2r/Scandic_AarhusCity_RAIS3914.jpg" - } - }, - { - "metaData": { - "title": "", - "altText": "resturant at scandic aarhus city in aarhus", - "altText_En": "resturant at scandic aarhus city in aarhus", - "copyRight": "Martin Panduro\r\nwww.raisfoto.dk" - }, - "imageSizes": { - "tiny": "https://test3.scandichotels.com/imagevault/publishedmedia/ufs5o8yll7a9l8hp7kb0/Scandic_AarhusCity_RAIS3859.jpg", - "small": "https://test3.scandichotels.com/imagevault/publishedmedia/352awehiat22q32nweu6/Scandic_AarhusCity_RAIS3859.jpg", - "medium": "https://test3.scandichotels.com/imagevault/publishedmedia/03rkkuihjo4yxviagqt1/Scandic_AarhusCity_RAIS3859.jpg", - "large": "https://test3.scandichotels.com/imagevault/publishedmedia/1g28u0b86nufm38c3xwg/Scandic_AarhusCity_RAIS3859.jpg" - } - } - ], - "texts": { - "descriptions": { - "short": "At our restaurant on Ostergade, the desire to prepare excellent meals is what drives our kitchen. We promise that once you've visited L’øst, you'll return over and over again. ", - "medium": "At our restaurant on Ostergade, the desire to prepare excellent meals is what drives our kitchen. With a fondness for local produce, the menu changes with the season to always offer you the freshest ingredients. " - } - } - }, - "bookTableUrl": "http://thegrilldrinksdining.b.dinnerbooking.com/onlinebooking/276/2?" - }, - "id": "49047c7b-4323-4fdc-b78f-34bd9303cc01", - "type": "restaurants" - } - ] -} diff --git a/components/ContentType/HotelPage/Facilities/mockData.ts b/components/ContentType/HotelPage/Facilities/mockData.ts deleted file mode 100644 index dfea0a74b..000000000 --- a/components/ContentType/HotelPage/Facilities/mockData.ts +++ /dev/null @@ -1,144 +0,0 @@ -import { - activities, - meetingsAndConferences, - restaurantAndBar, - wellnessAndExercise, -} from "@/constants/routes/hotelPageParams" - -import { getLang } from "@/i18n/serverContext" - -import type { Facilities } from "@/types/components/hotelPage/facilities" - -const lang = getLang() -/* -Most of this will be available from the api. Some will need to come from Contentstack. "Activities" will most likely come from Contentstack, which is prepped for. - */ -export const MOCK_FACILITIES: Facilities = [ - [ - { - id: "restaurant-and-bar", - theme: "primaryDark", - scriptedTopTitle: "Restaurant & Bar", - heading: "Enjoy relaxed restaurant experience", - secondaryButton: { - href: `?s=${restaurantAndBar[lang]}`, - title: "Read more & book a table", - isExternal: false, - }, - columnSpan: "one", - }, - { - backgroundImage: { - url: "https://imagevault.scandichotels.com/publishedmedia/79xttlmnum0kjbwhyh18/scandic-helsinki-hub-restaurant-food-tuna.jpg", - title: "scandic-helsinki-hub-restaurant-food-tuna.jpg", - meta: { - alt: "food in restaurant at scandic helsinki hub", - caption: "food in restaurant at scandic helsinki hub", - }, - id: 81751, - dimensions: { - width: 5935, - height: 3957, - aspectRatio: 1.499873641647713, - }, - }, - columnSpan: "one", - }, - { - backgroundImage: { - url: "https://imagevault.scandichotels.com/publishedmedia/48sb3eyhhzj727l2j1af/Scandic-helsinki-hub-II-centro-41.jpg", - meta: { - alt: "restaurant il centro at scandic helsinki hu", - caption: "restaurant il centro at scandic helsinki hub", - }, - id: 82457, - title: "Scandic-helsinki-hub-II-centro-41.jpg", - dimensions: { - width: 4200, - height: 2800, - aspectRatio: 1.5, - }, - }, - columnSpan: "one", - }, - ], - [ - { - backgroundImage: { - url: "https://imagevault.scandichotels.com/publishedmedia/csef06n329hjfiet1avj/Scandic-spectrum-8.jpg", - meta: { - alt: "man with a laptop", - caption: "man with a laptop", - }, - id: 82713, - title: "Scandic-spectrum-8.jpg", - dimensions: { - width: 7499, - height: 4999, - aspectRatio: 1.500100020004001, - }, - }, - columnSpan: "two", - }, - { - id: "meetings-and-conferences", - theme: "primaryDim", - scriptedTopTitle: "Meetings & Conferences", - heading: "Events that make an impression", - secondaryButton: { - href: `?s=${meetingsAndConferences[lang]}`, - title: "About meetings & conferences", - isExternal: false, - }, - columnSpan: "one", - }, - ], - [ - { - id: "wellness-and-exercise", - theme: "one", - scriptedTopTitle: "Wellness & Exercise", - heading: "Sauna and gym", - secondaryButton: { - href: `?s=${wellnessAndExercise[lang]}`, - title: "Read more about wellness & exercise", - isExternal: false, - }, - columnSpan: "one", - }, - { - backgroundImage: { - url: "https://imagevault.scandichotels.com/publishedmedia/69acct5i3pk5be7d6ub0/scandic-helsinki-hub-sauna.jpg", - meta: { - alt: "sauna at scandic helsinki hub", - caption: "sauna at scandic helsinki hub", - }, - id: 81814, - title: "scandic-helsinki-hub-sauna.jpg", - dimensions: { - width: 4000, - height: 2667, - aspectRatio: 1.4998125234345707, - }, - }, - columnSpan: "one", - }, - { - backgroundImage: { - url: "https://imagevault.scandichotels.com/publishedmedia/eu70o6z85idy24r92ysf/Scandic-Helsinki-Hub-gym-22.jpg", - meta: { - alt: "Gym at hotel Scandic Helsinki Hub", - caption: "Gym at hotel Scandic Helsinki Hub", - }, - id: 81867, - title: "Scandic-Helsinki-Hub-gym-22.jpg", - dimensions: { - width: 4000, - height: 2667, - aspectRatio: 1.4998125234345707, - }, - }, - columnSpan: "one", - }, - ], -] diff --git a/components/ContentType/HotelPage/Rooms/RoomCard/index.tsx b/components/ContentType/HotelPage/Rooms/RoomCard/index.tsx index 4e6c6624d..967580157 100644 --- a/components/ContentType/HotelPage/Rooms/RoomCard/index.tsx +++ b/components/ContentType/HotelPage/Rooms/RoomCard/index.tsx @@ -10,7 +10,7 @@ import Subtitle from "@/components/TempDesignSystem/Text/Subtitle" import styles from "./roomCard.module.css" -import { RoomCardProps } from "@/types/components/hotelPage/roomCard" +import type { RoomCardProps } from "@/types/components/hotelPage/roomCard" export function RoomCard({ badgeTextTransKey, diff --git a/components/ContentType/HotelPage/Rooms/index.tsx b/components/ContentType/HotelPage/Rooms/index.tsx index 58cc2ef68..b6fd241f5 100644 --- a/components/ContentType/HotelPage/Rooms/index.tsx +++ b/components/ContentType/HotelPage/Rooms/index.tsx @@ -10,10 +10,11 @@ import Button from "@/components/TempDesignSystem/Button" import Grids from "@/components/TempDesignSystem/Grids" import { RoomCard } from "./RoomCard" -import { RoomsProps } from "./types" import styles from "./rooms.module.css" +import type { RoomsProps } from "./types" + export function Rooms({ rooms }: RoomsProps) { const intl = useIntl() const [allRoomsVisible, setAllRoomsVisible] = useState(false) diff --git a/components/ContentType/HotelPage/index.tsx b/components/ContentType/HotelPage/index.tsx index fe0a20caa..1fcbb4a10 100644 --- a/components/ContentType/HotelPage/index.tsx +++ b/components/ContentType/HotelPage/index.tsx @@ -7,8 +7,7 @@ import SidePeek from "@/components/TempDesignSystem/SidePeek" import { getIntl } from "@/i18n" import { getLang } from "@/i18n/serverContext" -import { MOCK_FACILITIES } from "./Facilities/mockData" -import { setActivityCard } from "./Facilities/utils" +import { setActivityCard, setFacilityCards } from "@/utils/facilityCards" import DynamicMap from "./Map/DynamicMap" import MapCard from "./Map/MapCard" import MobileMapToggle from "./Map/MobileMapToggle" @@ -45,9 +44,10 @@ export default async function HotelPage() { roomCategories, activitiesCard, pointsOfInterest, + facilityCards, } = hotelData - const facilities = [...MOCK_FACILITIES] + const facilities = await setFacilityCards(facilityCards) activitiesCard && facilities.push(setActivityCard(activitiesCard)) const topThreePois = pointsOfInterest.slice(0, 3) diff --git a/components/TempDesignSystem/Card/CardImage/index.tsx b/components/TempDesignSystem/Card/CardImage/index.tsx index dc9c4f7f9..2ee17f37d 100644 --- a/components/TempDesignSystem/Card/CardImage/index.tsx +++ b/components/TempDesignSystem/Card/CardImage/index.tsx @@ -18,7 +18,7 @@ export default function CardImage({ ({ backgroundImage }) => backgroundImage && ( {backgroundImage.title} void onSecondaryButtonClick?: () => void + backgroundImage?: ImageVaultAsset | ApiImage } diff --git a/i18n/dictionaries/da.json b/i18n/dictionaries/da.json index 77e15f396..21097a538 100644 --- a/i18n/dictionaries/da.json +++ b/i18n/dictionaries/da.json @@ -1,6 +1,7 @@ { "A destination or hotel name is needed to be able to search for a hotel room.": "Et destinations- eller hotelnavn er nødvendigt for at kunne søge efter et hotelværelse.", "A photo of the room": "Et foto af værelset", + "About meetings & conferences": "About meetings & conferences", "Activities": "Aktiviteter", "Add code": "Tilføj kode", "Add new card": "Tilføj nyt kort", @@ -21,6 +22,8 @@ "At the hotel": "På hotellet", "Attractions": "Attraktioner", "Back to scandichotels.com": "Tilbage til scandichotels.com", + "Bar": "Bar", + "Bars": "Bars", "Bed type": "Seng type", "Book": "Book", "Book reward night": "Book bonusnat", @@ -30,6 +33,7 @@ "Breakfast included": "Morgenmad inkluderet", "Bus terminal": "Busstation", "Business": "Forretning", + "Breakfast restaurant": "Breakfast restaurant", "Cancel": "Afbestille", "Check in": "Check ind", "Check out": "Check ud", @@ -72,6 +76,8 @@ "Edit profile": "Rediger profil", "Email": "E-mail", "Enter destination or hotel": "Indtast destination eller hotel", + "Enjoy relaxed restaurant experiences": "Enjoy relaxed restaurant experiences", + "Events that make an impression": "Events that make an impression", "Explore all levels and benefits": "Udforsk alle niveauer og fordele", "Explore nearby": "Udforsk i nærheden", "Extras to your booking": "Tillæg til din booking", @@ -182,14 +188,20 @@ "Public price from": "Offentlig pris fra", "Public transport": "Offentlig transport", "Read more": "Læs mere", + "Read more & book a table": "Read more & book a table", "Read more about the hotel": "Læs mere om hotellet", + "Read more about wellness & exercise": "Read more about wellness & exercise", "Remove card from member profile": "Fjern kortet fra medlemsprofilen", "Restaurant": "Restaurant", "Restaurant & Bar": "Restaurant & Bar", + "Restaurants": "Restaurants", + "Restaurants & Bars": "Restaurants & Bars", "Retype new password": "Gentag den nye adgangskode", "Room & Terms": "Værelse & Vilkår", "Room facilities": "Værelsesfaciliteter", "Rooms": "Værelser", + "Rooms & Guests": "Værelser & gæster", + "Sauna and gym": "Sauna and gym", "Save": "Gemme", "Scandic Friends Mastercard": "Scandic Friends Mastercard", "Scandic Friends Point Shop": "Scandic Friends Point Shop", diff --git a/i18n/dictionaries/de.json b/i18n/dictionaries/de.json index 99dbc5dc0..fa88d5c7f 100644 --- a/i18n/dictionaries/de.json +++ b/i18n/dictionaries/de.json @@ -2,6 +2,7 @@ "A destination or hotel name is needed to be able to search for a hotel room.": "Ein Reiseziel oder Hotelname wird benötigt, um nach einem Hotelzimmer suchen zu können.", "A photo of the room": "Ein Foto des Zimmers", "Activities": "Aktivitäten", + "About meetings & conferences": "About meetings & conferences", "Add code": "Code hinzufügen", "Add new card": "Neue Karte hinzufügen", "Address": "Adresse", @@ -22,6 +23,8 @@ "At the hotel": "Im Hotel", "Attractions": "Attraktionen", "Back to scandichotels.com": "Zurück zu scandichotels.com", + "Bar": "Bar", + "Bars": "Bars", "Bed type": "Bettentyp", "Book": "Buchen", "Book reward night": "Bonusnacht buchen", @@ -33,6 +36,7 @@ "Bus terminal": "Busbahnhof", "Business": "Geschäft", "by": "bis", + "Breakfast restaurant": "Breakfast restaurant", "Cancel": "Stornieren", "characters": "figuren", "Check in": "Einchecken", @@ -75,6 +79,8 @@ "Edit profile": "Profil bearbeiten", "Email": "Email", "Enter destination or hotel": "Reiseziel oder Hotel eingeben", + "Enjoy relaxed restaurant experiences": "Enjoy relaxed restaurant experiences", + "Events that make an impression": "Events that make an impression", "Explore all levels and benefits": "Entdecken Sie alle Levels und Vorteile", "Explore nearby": "Erkunden Sie die Umgebung", "Extras to your booking": "Extras zu Ihrer Buchung", @@ -192,14 +198,20 @@ "Public price from": "Öffentlicher Preis ab", "Public transport": "Öffentliche Verkehrsmittel", "Read more": "Mehr lesen", + "Read more & book a table": "Read more & book a table", "Read more about the hotel": "Lesen Sie mehr über das Hotel", + "Read more about wellness & exercise": "Read more about wellness & exercise", "Remove card from member profile": "Karte aus dem Mitgliedsprofil entfernen", "Restaurant": "Restaurant", "Restaurant & Bar": "Restaurant & Bar", + "Restaurants": "Restaurants", + "Restaurants & Bars": "Restaurants & Bars", "Retype new password": "Neues Passwort erneut eingeben", "Room & Terms": "Zimmer & Bedingungen", "Room facilities": "Zimmerausstattung", "Rooms": "Räume", + "Rooms & Guests": "Zimmer & Gäste", + "Sauna and gym": "Sauna and gym", "Save": "Speichern", "Scandic Friends Mastercard": "Scandic Friends Mastercard", "Scandic Friends Point Shop": "Scandic Friends Point Shop", diff --git a/i18n/dictionaries/en.json b/i18n/dictionaries/en.json index 64ff97c27..7fa569f76 100644 --- a/i18n/dictionaries/en.json +++ b/i18n/dictionaries/en.json @@ -1,6 +1,7 @@ { "A destination or hotel name is needed to be able to search for a hotel room.": "A destination or hotel name is needed to be able to search for a hotel room.", "A photo of the room": "A photo of the room", + "About meetings & conferences": "About meetings & conferences", "Activities": "Activities", "Add code": "Add code", "Add new card": "Add new card", @@ -21,6 +22,8 @@ "At the hotel": "At the hotel", "Attractions": "Attractions", "Back to scandichotels.com": "Back to scandichotels.com", + "Bar": "Bar", + "Bars": "Bars", "Bed type": "Bed type", "Book": "Book", "Book reward night": "Book reward night", @@ -30,6 +33,7 @@ "Breakfast included": "Breakfast included", "Bus terminal": "Bus terminal", "Business": "Business", + "Breakfast restaurant": "Breakfast restaurant", "Cancel": "Cancel", "Check in": "Check in", "Check out": "Check out", @@ -74,6 +78,8 @@ "Email": "Email", "Email address": "Email address", "Enter destination or hotel": "Enter destination or hotel", + "Enjoy relaxed restaurant experiences": "Enjoy relaxed restaurant experiences", + "Events that make an impression": "Events that make an impression", "Explore all levels and benefits": "Explore all levels and benefits", "Explore nearby": "Explore nearby", "Extras to your booking": "Extras to your booking", @@ -188,14 +194,20 @@ "Public price from": "Public price from", "Public transport": "Public transport", "Read more": "Read more", + "Read more & book a table": "Read more & book a table", "Read more about the hotel": "Read more about the hotel", + "Read more about wellness & exercise": "Read more about wellness & exercise", "Remove card from member profile": "Remove card from member profile", "Restaurant": "Restaurant", "Restaurant & Bar": "Restaurant & Bar", + "Restaurants": "Restaurants", + "Restaurants & Bars": "Restaurants & Bars", "Retype new password": "Retype new password", "Room & Terms": "Room & Terms", "Room facilities": "Room facilities", "Rooms": "Rooms", + "Rooms & Guests": "Rooms & Guests", + "Sauna and gym": "Sauna and gym", "Save": "Save", "Scandic Friends Mastercard": "Scandic Friends Mastercard", "Scandic Friends Point Shop": "Scandic Friends Point Shop", @@ -275,7 +287,6 @@ "Zip code": "Zip code", "Zoo": "Zoo", "Zoom in": "Zoom in", - "Zoom out": "Zoom out", "as of today": "as of today", "booking.adults": "{totalAdults, plural, one {# adult} other {# adults}}", "booking.nights": "{totalNights, plural, one {# night} other {# nights}}", @@ -296,5 +307,6 @@ "spendable points expiring by": "{points} spendable points expiring by {date}", "to": "to", "uppercase letter": "uppercase letter", - "{difference}{amount} {currency}": "{difference}{amount} {currency}" + "{difference}{amount} {currency}": "{difference}{amount} {currency}", + "Zoom out": "Zoom out" } diff --git a/i18n/dictionaries/fi.json b/i18n/dictionaries/fi.json index 870acb18e..ab17e3f83 100644 --- a/i18n/dictionaries/fi.json +++ b/i18n/dictionaries/fi.json @@ -1,6 +1,7 @@ { "A destination or hotel name is needed to be able to search for a hotel room.": "Kohteen tai hotellin nimi tarvitaan, jotta hotellihuonetta voidaan hakea.", "A photo of the room": "Kuva huoneesta", + "About meetings & conferences": "About meetings & conferences", "Activities": "Aktiviteetit", "Add code": "Lisää koodi", "Add new card": "Lisää uusi kortti", @@ -21,6 +22,8 @@ "At the hotel": "Hotellissa", "Attractions": "Nähtävyydet", "Back to scandichotels.com": "Takaisin scandichotels.com", + "Bar": "Bar", + "Bars": "Bars", "Bed type": "Vuodetyyppi", "Book": "Varaa", "Book reward night": "Kirjapalkinto-ilta", @@ -30,6 +33,7 @@ "Breakfast included": "Aamiainen sisältyy", "Bus terminal": "Bussiasema", "Business": "Business", + "Breakfast restaurant": "Breakfast restaurant", "Cancel": "Peruuttaa", "Check in": "Sisäänkirjautuminen", "Check out": "Uloskirjautuminen", @@ -72,6 +76,8 @@ "Edit profile": "Muokkaa profiilia", "Email": "Sähköposti", "Enter destination or hotel": "Anna kohde tai hotelli", + "Enjoy relaxed restaurant experiences": "Enjoy relaxed restaurant experiences", + "Events that make an impression": "Events that make an impression", "Explore all levels and benefits": "Tutustu kaikkiin tasoihin ja etuihin", "Explore nearby": "Tutustu lähialueeseen", "Extras to your booking": "Varauksessa lisäpalveluita", @@ -182,14 +188,21 @@ "Public price from": "Julkinen hinta alkaen", "Public transport": "Julkinen liikenne", "Read more": "Lue lisää", + "Read more & book a table": "Read more & book a table", "Read more about the hotel": "Lue lisää hotellista", + "Read more about wellness & exercise": "Read more about wellness & exercise", "Remove card from member profile": "Poista kortti jäsenprofiilista", "Restaurant": "Ravintola", "Restaurant & Bar": "Ravintola & Baari", + "Restaurants": "Restaurants", + "Restaurants & Bars": "Restaurants & Bars", "Retype new password": "Kirjoita uusi salasana uudelleen", "Room & Terms": "Huone & Ehdot", "Room facilities": "Huoneen varustelu", "Rooms": "Huoneet", + "Rooms & Guests": "Huoneet & Vieraat", + "Rooms & Guestss": "Huoneet & Vieraat", + "Sauna and gym": "Sauna and gym", "Save": "Tallenna", "Scandic Friends Mastercard": "Scandic Friends Mastercard", "Scandic Friends Point Shop": "Scandic Friends Point Shop", diff --git a/i18n/dictionaries/no.json b/i18n/dictionaries/no.json index 65fa174b5..9f56be568 100644 --- a/i18n/dictionaries/no.json +++ b/i18n/dictionaries/no.json @@ -1,6 +1,7 @@ { "A destination or hotel name is needed to be able to search for a hotel room.": "Et reisemål eller hotellnavn er nødvendig for å kunne søke etter et hotellrom.", "A photo of the room": "Et bilde av rommet", + "About meetings & conferences": "About meetings & conferences", "Activities": "Aktiviteter", "Add code": "Legg til kode", "Add new card": "Legg til nytt kort", @@ -21,6 +22,8 @@ "At the hotel": "På hotellet", "Attractions": "Attraksjoner", "Back to scandichotels.com": "Tilbake til scandichotels.com", + "Bar": "Bar", + "Bars": "Bars", "Bed type": "Seng type", "Book": "Bestill", "Book reward night": "Bestill belønningskveld", @@ -72,6 +75,8 @@ "Edit profile": "Rediger profil", "Email": "E-post", "Enter destination or hotel": "Skriv inn destinasjon eller hotell", + "Enjoy relaxed restaurant experiences": "Enjoy relaxed restaurant experiences", + "Events that make an impression": "Events that make an impression", "Explore all levels and benefits": "Utforsk alle nivåer og fordeler", "Explore nearby": "Utforsk i nærheten", "Extras to your booking": "Tilvalg til bestillingen din", @@ -182,14 +187,20 @@ "Public price from": "Offentlig pris fra", "Public transport": "Offentlig transport", "Read more": "Les mer", + "Read more & book a table": "Read more & book a table", "Read more about the hotel": "Les mer om hotellet", + "Read more about wellness & exercise": "Read more about wellness & exercise", "Remove card from member profile": "Fjern kortet fra medlemsprofilen", "Restaurant": "Restaurant", "Restaurant & Bar": "Restaurant & Bar", + "Restaurants": "Restaurants", + "Restaurants & Bars": "Restaurants & Bars", "Retype new password": "Skriv inn nytt passord på nytt", "Room & Terms": "Rom & Vilkår", "Room facilities": "Romfasiliteter", "Rooms": "Rom", + "Rooms & Guests": "Rom og gjester", + "Sauna and gym": "Sauna and gym", "Save": "Lagre", "Scandic Friends Mastercard": "Scandic Friends Mastercard", "Scandic Friends Point Shop": "Scandic Friends Point Shop", diff --git a/i18n/dictionaries/sv.json b/i18n/dictionaries/sv.json index 56274dfad..e1f48b548 100644 --- a/i18n/dictionaries/sv.json +++ b/i18n/dictionaries/sv.json @@ -1,6 +1,7 @@ { "A destination or hotel name is needed to be able to search for a hotel room.": "Ett destinations- eller hotellnamn behövs för att kunna söka efter ett hotellrum.", "A photo of the room": "Ett foto av rummet", + "About meetings & conferences": "About meetings & conferences", "Activities": "Aktiviteter", "Add code": "Lägg till kod", "Add new card": "Lägg till nytt kort", @@ -21,6 +22,8 @@ "At the hotel": "På hotellet", "Attractions": "Sevärdheter", "Back to scandichotels.com": "Tillbaka till scandichotels.com", + "Bar": "Bar", + "Bars": "Bars", "Bed type": "Sängtyp", "Book": "Boka", "Book reward night": "Boka frinatt", @@ -30,6 +33,7 @@ "Breakfast included": "Frukost ingår", "Bus terminal": "Bussterminal", "Business": "Business", + "Breakfast restaurant": "Breakfast restaurant", "Cancel": "Avbryt", "Check in": "Checka in", "Check out": "Checka ut", @@ -72,6 +76,8 @@ "Edit profile": "Redigera profil", "Email": "E-post", "Enter destination or hotel": "Ange destination eller hotell", + "Enjoy relaxed restaurant experiences": "Enjoy relaxed restaurant experiences", + "Events that make an impression": "Events that make an impression", "Explore all levels and benefits": "Utforska alla nivåer och fördelar", "Explore nearby": "Utforska i närheten", "Extras to your booking": "Extra tillval till din bokning", @@ -183,14 +189,20 @@ "Public price from": "Offentligt pris från", "Public transport": "Kollektivtrafik", "Read more": "Läs mer", + "Read more & book a table": "Read more & book a table", "Read more about the hotel": "Läs mer om hotellet", + "Read more about wellness & exercise": "Read more about wellness & exercise", "Remove card from member profile": "Ta bort kortet från medlemsprofilen", "Restaurant": "Restaurang", "Restaurant & Bar": "Restaurang & Bar", + "Restaurants": "Restaurants", + "Restaurants & Bars": "Restaurants & Bars", "Retype new password": "Upprepa nytt lösenord", "Room & Terms": "Rum & Villkor", "Room facilities": "Rumfaciliteter", "Rooms": "Rum", + "Rooms & Guests": "Rum och gäster", + "Sauna and gym": "Sauna and gym", "Save": "Spara", "Scandic Friends Mastercard": "Scandic Friends Mastercard", "Scandic Friends Point Shop": "Scandic Friends Point Shop", diff --git a/server/routers/hotels/output.ts b/server/routers/hotels/output.ts index d1fb2dfe8..2c6d9a1a0 100644 --- a/server/routers/hotels/output.ts +++ b/server/routers/hotels/output.ts @@ -164,6 +164,16 @@ const detailedFacilitySchema = z.object({ filter: z.string().optional(), }) +const facilitySchema = z.object({ + headingText: z.string().optional(), // TODO: Should not be optional, remove when we get meetingsAndConferences headingText + heroImages: z.array( + z.object({ + metaData: imageMetaDataSchema, + imageSizes: imageSizesSchema, + }) + ), +}) + const healthFacilitySchema = z.object({ type: z.string(), content: z.object({ @@ -497,6 +507,9 @@ export const getHotelDataSchema = z.object({ socialMedia: socialMediaSchema, meta: metaSchema.optional(), isActive: z.boolean(), + conferencesAndMeetings: facilitySchema.optional(), + healthAndWellness: facilitySchema.optional(), + restaurantImages: facilitySchema.optional(), }), relationships: relationshipsSchema, }), @@ -778,3 +791,4 @@ export const apiLocationsSchema = z.object({ }) ), }) +export type Facility = z.infer & { id: string } diff --git a/server/routers/hotels/query.ts b/server/routers/hotels/query.ts index 9c1042dbd..685e7f195 100644 --- a/server/routers/hotels/query.ts +++ b/server/routers/hotels/query.ts @@ -26,6 +26,7 @@ import { getRatesInputSchema, } from "./input" import { + Facility, getAvailabilitySchema, getHotelDataSchema, getRatesSchema, @@ -40,6 +41,7 @@ import { TWENTYFOUR_HOURS, } from "./utils" +import { facilityEnum } from "@/types/components/hotelPage/facilities" import { AvailabilityEnum } from "@/types/components/hotelReservation/selectHotel/selectHotel" import type { RequestOptionsWithOutBody } from "@/types/fetch" import type { GetHotelPageData } from "@/types/trpc/routers/contentstack/hotelPage" @@ -173,7 +175,6 @@ export const hotelQueryRouter = router({ const included = validatedHotelData.data.included || [] const hotelAttributes = validatedHotelData.data.data.attributes - const images = extractHotelImages(hotelAttributes) const roomCategories = included @@ -212,6 +213,21 @@ export const hotelQueryRouter = router({ ? contentstackData?.content[0] : null + const facilities: Array = [ + { + ...apiJson.data.attributes.restaurantImages, + id: facilityEnum.restaurant, + }, + { + ...apiJson.data.attributes.conferencesAndMeetings, + id: facilityEnum.conference, + }, + { + ...apiJson.data.attributes.healthAndWellness, + id: facilityEnum.wellness, + }, + ] + getHotelSuccessCounter.add(1, { hotelId, lang, include }) console.info( "api.hotels.hotel success", @@ -229,7 +245,8 @@ export const hotelQueryRouter = router({ hotelImages: images, pointsOfInterest: hotelAttributes.pointsOfInterest, roomCategories, - activitiesCard: activities?.upcoming_activities_card, + activitiesCard: activities, + facilityCards: facilities, } }), availability: router({ diff --git a/types/components/cardImage.ts b/types/components/cardImage.ts index 9976a2db3..6ba7838eb 100644 --- a/types/components/cardImage.ts +++ b/types/components/cardImage.ts @@ -1,7 +1,6 @@ import type { CardProps } from "@/components/TempDesignSystem/Card/card" -import type { FacilityCard } from "./hotelPage/facilities" export interface CardImageProps extends React.HTMLAttributes { - card: FacilityCard | undefined + card: CardProps | undefined imageCards: Pick[] } diff --git a/types/components/hotelPage/facilities.ts b/types/components/hotelPage/facilities.ts index 228093fe0..1594c22b4 100644 --- a/types/components/hotelPage/facilities.ts +++ b/types/components/hotelPage/facilities.ts @@ -1,12 +1,6 @@ import type { CardProps } from "@/components/TempDesignSystem/Card/card" -interface ColumnSpanOptions { - columnSpan: "one" | "two" | "three" -} - -export type FacilityCard = CardProps & ColumnSpanOptions - -export type Facility = Array +export type Facility = Array export type Facilities = Array @@ -17,3 +11,9 @@ export type FacilityProps = { export type CardGridProps = { facility: Facility } + +export enum facilityEnum { + wellness = "wellness-and-exercise", + conference = "meetings-and-conferences", + restaurant = "restaurant-and-bar", +} diff --git a/types/components/image.ts b/types/components/image.ts new file mode 100644 index 000000000..0284eaa29 --- /dev/null +++ b/types/components/image.ts @@ -0,0 +1,8 @@ +export type ApiImage = { + url: string + title: string + meta: { + alt: string + caption: string + } +} diff --git a/utils/facilityCards.ts b/utils/facilityCards.ts new file mode 100644 index 000000000..9387817fb --- /dev/null +++ b/utils/facilityCards.ts @@ -0,0 +1,139 @@ +import { + meetingsAndConferences, + restaurantAndBar, + wellnessAndExercise, +} from "@/constants/routes/hotelPageParams" + +import { getIntl } from "@/i18n" +import { getLang } from "@/i18n/serverContext" + +import { + type Facilities, + type Facility as f, + facilityEnum, +} from "@/types/components/hotelPage/facilities" +import type { ImageVaultAsset } from "@/types/components/imageVault" +import type { CardProps } from "@/components/TempDesignSystem/Card/card" +import type { Facility } from "@/server/routers/hotels/output" + +type ActivityCard = { + background_image?: ImageVaultAsset + scripted_title?: string + heading: string + body_text: string + cta_text: string + contentPage: Array<{ href: string }> +} + +export function setActivityCard(activitiesCard: ActivityCard): f { + const hasImage = activitiesCard.background_image + return [ + { + id: "activities", + theme: hasImage ? "image" : "primaryDark", + scriptedTopTitle: activitiesCard.scripted_title, + heading: activitiesCard.heading, + bodyText: activitiesCard.body_text, + backgroundImage: hasImage ? activitiesCard.background_image : undefined, + primaryButton: hasImage + ? { + href: activitiesCard.contentPage[0].href, + title: activitiesCard.cta_text, + isExternal: false, + } + : undefined, + secondaryButton: hasImage + ? undefined + : { + href: activitiesCard.contentPage[0].href, + title: activitiesCard.cta_text, + isExternal: false, + }, + }, + ] +} + +export async function setFacilityCards(facilities: Array) { + const lang = getLang() + const intl = await getIntl() + + let cards: Facilities = [], + card: CardProps, + grid: Array + + facilities.map((facility) => { + card = {} + grid = [] + + card.scriptedTopTitle = facility.headingText + + facility.heroImages.map((image) => { + card = {} + ;(card.backgroundImage = { + url: image.imageSizes.large, + title: image.metaData.title, + meta: { + alt: image.metaData.altText, + caption: image.metaData.altText_En, + }, + }), + (card.theme = "image") + grid.push(card) + }) + card = {} + + switch (facility.id) { + case facilityEnum.wellness: + card.theme = "one" + card.id = "wellness-and-exercise" + ;(card.heading = intl.formatMessage({ id: "Sauna and gym" })), + (card.secondaryButton = { + href: `?s=${wellnessAndExercise[lang]}`, + title: intl.formatMessage({ + id: "Read more about wellness & exercise", + }), + isExternal: false, + }) + grid.unshift(card) + break + + case facilityEnum.conference: + card.theme = "primaryDim" + card.id = "meetings-and-conferences" + ;(card.heading = intl.formatMessage({ + id: "Events that make an impression", + })), + (card.secondaryButton = { + href: `?s=${meetingsAndConferences[lang]}`, + title: intl.formatMessage({ id: "About meetings & conferences" }), + isExternal: false, + }) + grid.push(card) + break + + case facilityEnum.restaurant: + card.theme = "primaryDark" + card.id = "restaurant-and-bar" + card.heading = intl.formatMessage({ + id: "Enjoy relaxed restaurant experiences", + }) + card.secondaryButton = { + href: `?s=${restaurantAndBar[lang]}`, + title: intl.formatMessage({ id: "Read more & book a table" }), + isExternal: false, + } + grid.unshift(card) + break + } + cards.push(grid) + }) + return cards +} + +/* lista över potentiella + Restaurant & Bar + Restaurants & bars + Restaurant + Bar + Breakfast restaurant (fallback om det inte finns restaurang eller bar) +*/ diff --git a/utils/imageCard.ts b/utils/imageCard.ts index b66c65954..4c4c99b66 100644 --- a/utils/imageCard.ts +++ b/utils/imageCard.ts @@ -1,10 +1,8 @@ -import type { - Facility, - FacilityCard, -} from "@/types/components/hotelPage/facilities" +import type { Facility } from "@/types/components/hotelPage/facilities" +import type { CardProps } from "@/components/TempDesignSystem/Card/card" export function sortCards(grid: Facility) { - const sortedCards = grid.slice(0).sort((a: FacilityCard, b: FacilityCard) => { + const sortedCards = grid.slice(0).sort((a: CardProps, b: CardProps) => { if (!a.backgroundImage && b.backgroundImage) { return 1 } From 369710b0a7872db8bd2a2d17820f423752e5084f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matilda=20Landstr=C3=B6m?= Date: Tue, 17 Sep 2024 15:35:53 +0200 Subject: [PATCH 06/30] fix(SW-302): add fallback title --- utils/facilityCards.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/utils/facilityCards.ts b/utils/facilityCards.ts index 9387817fb..1daa2da76 100644 --- a/utils/facilityCards.ts +++ b/utils/facilityCards.ts @@ -59,17 +59,18 @@ export async function setFacilityCards(facilities: Array) { let cards: Facilities = [], card: CardProps, + img: CardProps, grid: Array facilities.map((facility) => { card = {} grid = [] - card.scriptedTopTitle = facility.headingText + card.scriptedTopTitle = facility.headingText ?? "Fallback title" facility.heroImages.map((image) => { - card = {} - ;(card.backgroundImage = { + img = {} + ;(img.backgroundImage = { url: image.imageSizes.large, title: image.metaData.title, meta: { @@ -77,10 +78,9 @@ export async function setFacilityCards(facilities: Array) { caption: image.metaData.altText_En, }, }), - (card.theme = "image") - grid.push(card) + (img.theme = "image") + grid.push(img) }) - card = {} switch (facility.id) { case facilityEnum.wellness: From 02cb03f1549a2c33c2dfb83a119a868d54d6ce97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matilda=20Landstr=C3=B6m?= Date: Tue, 17 Sep 2024 15:42:15 +0200 Subject: [PATCH 07/30] refactor(SW-302): update naming --- .../Facilities/CardGrid/cardGrid.module.css | 1 - server/routers/hotels/query.ts | 8 ++++---- types/components/hotelPage/facilities.ts | 8 ++++---- utils/facilityCards.ts | 12 ++++++------ utils/imageCard.ts | 6 +++--- 5 files changed, 17 insertions(+), 18 deletions(-) diff --git a/components/ContentType/HotelPage/Facilities/CardGrid/cardGrid.module.css b/components/ContentType/HotelPage/Facilities/CardGrid/cardGrid.module.css index 9cf0e4e50..0d453b437 100644 --- a/components/ContentType/HotelPage/Facilities/CardGrid/cardGrid.module.css +++ b/components/ContentType/HotelPage/Facilities/CardGrid/cardGrid.module.css @@ -24,7 +24,6 @@ display: grid; gap: var(--Spacing-x1); grid-template-columns: repeat(3, 1fr); - grid-auto-flow: dense; } .mobileGrid { diff --git a/server/routers/hotels/query.ts b/server/routers/hotels/query.ts index 685e7f195..5abe2881e 100644 --- a/server/routers/hotels/query.ts +++ b/server/routers/hotels/query.ts @@ -41,7 +41,7 @@ import { TWENTYFOUR_HOURS, } from "./utils" -import { facilityEnum } from "@/types/components/hotelPage/facilities" +import { FacilityEnum } from "@/types/components/hotelPage/facilities" import { AvailabilityEnum } from "@/types/components/hotelReservation/selectHotel/selectHotel" import type { RequestOptionsWithOutBody } from "@/types/fetch" import type { GetHotelPageData } from "@/types/trpc/routers/contentstack/hotelPage" @@ -216,15 +216,15 @@ export const hotelQueryRouter = router({ const facilities: Array = [ { ...apiJson.data.attributes.restaurantImages, - id: facilityEnum.restaurant, + id: FacilityEnum.restaurant, }, { ...apiJson.data.attributes.conferencesAndMeetings, - id: facilityEnum.conference, + id: FacilityEnum.conference, }, { ...apiJson.data.attributes.healthAndWellness, - id: facilityEnum.wellness, + id: FacilityEnum.wellness, }, ] diff --git a/types/components/hotelPage/facilities.ts b/types/components/hotelPage/facilities.ts index 1594c22b4..71babc174 100644 --- a/types/components/hotelPage/facilities.ts +++ b/types/components/hotelPage/facilities.ts @@ -1,18 +1,18 @@ import type { CardProps } from "@/components/TempDesignSystem/Card/card" -export type Facility = Array +export type FacilityCards = Array -export type Facilities = Array +export type Facilities = Array export type FacilityProps = { facilities: Facilities } export type CardGridProps = { - facility: Facility + facility: FacilityCards } -export enum facilityEnum { +export enum FacilityEnum { wellness = "wellness-and-exercise", conference = "meetings-and-conferences", restaurant = "restaurant-and-bar", diff --git a/utils/facilityCards.ts b/utils/facilityCards.ts index 1daa2da76..d0d2c0e5a 100644 --- a/utils/facilityCards.ts +++ b/utils/facilityCards.ts @@ -9,8 +9,8 @@ import { getLang } from "@/i18n/serverContext" import { type Facilities, - type Facility as f, - facilityEnum, + type FacilityCards, + FacilityEnum, } from "@/types/components/hotelPage/facilities" import type { ImageVaultAsset } from "@/types/components/imageVault" import type { CardProps } from "@/components/TempDesignSystem/Card/card" @@ -25,7 +25,7 @@ type ActivityCard = { contentPage: Array<{ href: string }> } -export function setActivityCard(activitiesCard: ActivityCard): f { +export function setActivityCard(activitiesCard: ActivityCard): FacilityCards { const hasImage = activitiesCard.background_image return [ { @@ -83,7 +83,7 @@ export async function setFacilityCards(facilities: Array) { }) switch (facility.id) { - case facilityEnum.wellness: + case FacilityEnum.wellness: card.theme = "one" card.id = "wellness-and-exercise" ;(card.heading = intl.formatMessage({ id: "Sauna and gym" })), @@ -97,7 +97,7 @@ export async function setFacilityCards(facilities: Array) { grid.unshift(card) break - case facilityEnum.conference: + case FacilityEnum.conference: card.theme = "primaryDim" card.id = "meetings-and-conferences" ;(card.heading = intl.formatMessage({ @@ -111,7 +111,7 @@ export async function setFacilityCards(facilities: Array) { grid.push(card) break - case facilityEnum.restaurant: + case FacilityEnum.restaurant: card.theme = "primaryDark" card.id = "restaurant-and-bar" card.heading = intl.formatMessage({ diff --git a/utils/imageCard.ts b/utils/imageCard.ts index 4c4c99b66..84a75da18 100644 --- a/utils/imageCard.ts +++ b/utils/imageCard.ts @@ -1,8 +1,8 @@ -import type { Facility } from "@/types/components/hotelPage/facilities" +import type { FacilityCards } from "@/types/components/hotelPage/facilities" import type { CardProps } from "@/components/TempDesignSystem/Card/card" -export function sortCards(grid: Facility) { - const sortedCards = grid.slice(0).sort((a: CardProps, b: CardProps) => { +export function sortCards(cards: FacilityCards) { + const sortedCards = cards.slice(0).sort((a: CardProps, b: CardProps) => { if (!a.backgroundImage && b.backgroundImage) { return 1 } From ea11d3d9b046538fd13ae3b7c7051999312f09b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matilda=20Landstr=C3=B6m?= Date: Tue, 17 Sep 2024 17:43:28 +0200 Subject: [PATCH 08/30] fix(SW-302): update translations --- i18n/dictionaries/da.json | 1 + i18n/dictionaries/fi.json | 1 + i18n/dictionaries/no.json | 1 + i18n/dictionaries/sv.json | 1 + 4 files changed, 4 insertions(+) diff --git a/i18n/dictionaries/da.json b/i18n/dictionaries/da.json index 21097a538..71566409e 100644 --- a/i18n/dictionaries/da.json +++ b/i18n/dictionaries/da.json @@ -84,6 +84,7 @@ "FAQ": "Ofte stillede spørgsmål", "Failed to delete credit card, please try again later.": "Kunne ikke slette kreditkort. Prøv venligst igen senere.", "Fair": "Messe", + "FAQ": "FAQ", "Find booking": "Find booking", "Find hotels": "Find hotel", "Flexibility": "Fleksibilitet", diff --git a/i18n/dictionaries/fi.json b/i18n/dictionaries/fi.json index ab17e3f83..3be690ca0 100644 --- a/i18n/dictionaries/fi.json +++ b/i18n/dictionaries/fi.json @@ -84,6 +84,7 @@ "FAQ": "UKK", "Failed to delete credit card, please try again later.": "Luottokortin poistaminen epäonnistui, yritä myöhemmin uudelleen.", "Fair": "Messukeskus", + "FAQ": "FAQ", "Find booking": "Etsi varaus", "Find hotels": "Etsi hotelleja", "Flexibility": "Joustavuus", diff --git a/i18n/dictionaries/no.json b/i18n/dictionaries/no.json index 9f56be568..dcd51350b 100644 --- a/i18n/dictionaries/no.json +++ b/i18n/dictionaries/no.json @@ -83,6 +83,7 @@ "FAQ": "FAQ", "Failed to delete credit card, please try again later.": "Kunne ikke slette kredittkortet, prøv igjen senere.", "Fair": "Messe", + "FAQ": "FAQ", "Find booking": "Finn booking", "Find hotels": "Finn hotell", "Flexibility": "Fleksibilitet", diff --git a/i18n/dictionaries/sv.json b/i18n/dictionaries/sv.json index e1f48b548..d1327d0b7 100644 --- a/i18n/dictionaries/sv.json +++ b/i18n/dictionaries/sv.json @@ -84,6 +84,7 @@ "FAQ": "FAQ", "Failed to delete credit card, please try again later.": "Det gick inte att ta bort kreditkortet, försök igen senare.", "Fair": "Mässa", + "FAQ": "FAQ", "Find booking": "Hitta bokning", "Find hotels": "Hitta hotell", "Flexibility": "Flexibilitet", From 6c88d3431a78b3e322e974db26448e25b11784d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matilda=20Landstr=C3=B6m?= Date: Tue, 17 Sep 2024 17:56:19 +0200 Subject: [PATCH 09/30] chore(SW-302): add dynamic restaurant title --- .../HotelPage/TabNavigation/index.tsx | 41 ++++++++++++----- components/ContentType/HotelPage/index.tsx | 16 +++++-- constants/routes/hotelPageParams.js | 32 ++++++++++++- types/components/hotelPage/tabNavigation.ts | 7 ++- utils/facilityCards.ts | 46 +++++++++++++++---- 5 files changed, 115 insertions(+), 27 deletions(-) diff --git a/components/ContentType/HotelPage/TabNavigation/index.tsx b/components/ContentType/HotelPage/TabNavigation/index.tsx index e594d757c..220139770 100644 --- a/components/ContentType/HotelPage/TabNavigation/index.tsx +++ b/components/ContentType/HotelPage/TabNavigation/index.tsx @@ -6,21 +6,40 @@ import useHash from "@/hooks/useHash" import styles from "./tabNavigation.module.css" -import { HotelHashValues } from "@/types/components/hotelPage/tabNavigation" +import { + HotelHashValues, + type TabNavigationProps, +} from "@/types/components/hotelPage/tabNavigation" -export default function TabNavigation() { +export default function TabNavigation({ + restaurantRefData, +}: TabNavigationProps) { const hash = useHash() const intl = useIntl() - const hotelTabLinks: { href: HotelHashValues; text: string }[] = [ - // TODO these titles will need to reflect the facility card titles, which will vary between hotels - { href: HotelHashValues.overview, text: "Overview" }, - { href: HotelHashValues.rooms, text: "Rooms" }, - { href: HotelHashValues.restaurant, text: "Restaurant & Bar" }, - { href: HotelHashValues.meetings, text: "Meetings & Conferences" }, - { href: HotelHashValues.wellness, text: "Wellness & Exercise" }, - { href: HotelHashValues.activities, text: "Activities" }, - { href: HotelHashValues.faq, text: "FAQ" }, + const hotelTabLinks: { href: HotelHashValues | string; text: string }[] = [ + { + href: HotelHashValues.overview, + text: intl.formatMessage({ id: "Overview" }), + }, + { href: HotelHashValues.rooms, text: intl.formatMessage({ id: "Rooms" }) }, + { + href: "#" + restaurantRefData.href.en, + text: intl.formatMessage({ id: restaurantRefData.title }), + }, + { + href: HotelHashValues.meetings, + text: intl.formatMessage({ id: "Meetings & Conferences" }), + }, + { + href: HotelHashValues.wellness, + text: intl.formatMessage({ id: "Wellness & Exercise" }), + }, + { + href: HotelHashValues.activities, + text: intl.formatMessage({ id: "Activities" }), + }, + { href: HotelHashValues.faq, text: intl.formatMessage({ id: "FAQ" }) }, ] return ( diff --git a/components/ContentType/HotelPage/index.tsx b/components/ContentType/HotelPage/index.tsx index 1fcbb4a10..d6130acbc 100644 --- a/components/ContentType/HotelPage/index.tsx +++ b/components/ContentType/HotelPage/index.tsx @@ -7,7 +7,12 @@ import SidePeek from "@/components/TempDesignSystem/SidePeek" import { getIntl } from "@/i18n" import { getLang } from "@/i18n/serverContext" -import { setActivityCard, setFacilityCards } from "@/utils/facilityCards" +import { + getRestaurantDynamicTitles, + setActivityCard, + setFacilityCards, +} from "@/utils/facilityCards" + import DynamicMap from "./Map/DynamicMap" import MapCard from "./Map/MapCard" import MobileMapToggle from "./Map/MobileMapToggle" @@ -47,7 +52,10 @@ export default async function HotelPage() { facilityCards, } = hotelData - const facilities = await setFacilityCards(facilityCards) + const facilities = await setFacilityCards( + facilityCards, + hotelDetailedFacilities + ) activitiesCard && facilities.push(setActivityCard(activitiesCard)) const topThreePois = pointsOfInterest.slice(0, 3) @@ -61,7 +69,9 @@ export default async function HotelPage() {
- +
) { +export async function setFacilityCards( + facilities: Array, + amenities: HotelData["data"]["attributes"]["detailedFacilities"] +) { const lang = getLang() const intl = await getIntl() @@ -112,13 +119,14 @@ export async function setFacilityCards(facilities: Array) { break case FacilityEnum.restaurant: + const { href, title } = getRestaurantDynamicTitles(amenities) card.theme = "primaryDark" - card.id = "restaurant-and-bar" + card.id = href[lang] card.heading = intl.formatMessage({ id: "Enjoy relaxed restaurant experiences", }) card.secondaryButton = { - href: `?s=${restaurantAndBar[lang]}`, + href: `?s=${href[lang]}`, title: intl.formatMessage({ id: "Read more & book a table" }), isExternal: false, } @@ -130,10 +138,28 @@ export async function setFacilityCards(facilities: Array) { return cards } -/* lista över potentiella - Restaurant & Bar - Restaurants & bars - Restaurant - Bar - Breakfast restaurant (fallback om det inte finns restaurang eller bar) -*/ +export function getRestaurantDynamicTitles( + amenities: HotelData["data"]["attributes"]["detailedFacilities"] +) { + const hasBar = amenities.some( + (facility) => facility.id == 1606 || facility.id == 1014 // bar & rooftop bar id + ) + const hasRestaurant = amenities.some((facility) => facility.id == 1383) // restaurant id + + let href, title: string + if (hasBar && hasRestaurant) { + href = restaurantAndBar + title = "Restaurant & Bar" + } else if (hasBar) { + href = bar + title = "Bar" + } else if (hasRestaurant) { + href = restaurant + title = "Restaurant" + } else { + href = breakfastRestaurant + title = "Breakfast restaurant" + } + + return { href, title } +} From 2438d04f43dd2bb71423ff2919699b381a141d1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matilda=20Landstr=C3=B6m?= Date: Tue, 17 Sep 2024 22:25:35 +0200 Subject: [PATCH 10/30] refactor(SW-302): cleanup --- .../HotelPage/TabNavigation/index.tsx | 8 ++--- components/ContentType/HotelPage/index.tsx | 5 ++-- constants/routes/hotelPageParams.js | 8 ++--- types/components/hotelPage/tabNavigation.ts | 3 +- utils/facilityCards.ts | 29 +++++++++---------- 5 files changed, 24 insertions(+), 29 deletions(-) diff --git a/components/ContentType/HotelPage/TabNavigation/index.tsx b/components/ContentType/HotelPage/TabNavigation/index.tsx index 220139770..b14476189 100644 --- a/components/ContentType/HotelPage/TabNavigation/index.tsx +++ b/components/ContentType/HotelPage/TabNavigation/index.tsx @@ -11,9 +11,7 @@ import { type TabNavigationProps, } from "@/types/components/hotelPage/tabNavigation" -export default function TabNavigation({ - restaurantRefData, -}: TabNavigationProps) { +export default function TabNavigation({ restaurantTitle }: TabNavigationProps) { const hash = useHash() const intl = useIntl() @@ -24,8 +22,8 @@ export default function TabNavigation({ }, { href: HotelHashValues.rooms, text: intl.formatMessage({ id: "Rooms" }) }, { - href: "#" + restaurantRefData.href.en, - text: intl.formatMessage({ id: restaurantRefData.title }), + href: HotelHashValues.restaurant, + text: intl.formatMessage({ id: restaurantTitle }), }, { href: HotelHashValues.meetings, diff --git a/components/ContentType/HotelPage/index.tsx b/components/ContentType/HotelPage/index.tsx index d6130acbc..9b27a4c12 100644 --- a/components/ContentType/HotelPage/index.tsx +++ b/components/ContentType/HotelPage/index.tsx @@ -6,9 +6,8 @@ import SidePeekProvider from "@/components/SidePeekProvider" import SidePeek from "@/components/TempDesignSystem/SidePeek" import { getIntl } from "@/i18n" import { getLang } from "@/i18n/serverContext" - import { - getRestaurantDynamicTitles, + getRestaurantHeading, setActivityCard, setFacilityCards, } from "@/utils/facilityCards" @@ -70,7 +69,7 @@ export default async function HotelPage() {
diff --git a/constants/routes/hotelPageParams.js b/constants/routes/hotelPageParams.js index c37b59869..97c51b4b5 100644 --- a/constants/routes/hotelPageParams.js +++ b/constants/routes/hotelPageParams.js @@ -52,7 +52,7 @@ export const restaurantAndBar = { de: "Restaurant-und-Bar", } -export const restaurant = { +/*export const restaurant = { en: "restaurant", sv: "restaurant", no: "restaurant", @@ -78,7 +78,7 @@ export const breakfastRestaurant = { fi: "aamiaisravintola", de: "Frühstücksrestaurant", } - +*/ const params = { about, amenities, @@ -86,9 +86,9 @@ const params = { activities, meetingsAndConferences, restaurantAndBar, - bar, + /*bar, restaurant, - breakfastRestaurant, + breakfastRestaurant,*/ } export default params diff --git a/types/components/hotelPage/tabNavigation.ts b/types/components/hotelPage/tabNavigation.ts index b6368934c..c16f6c1ab 100644 --- a/types/components/hotelPage/tabNavigation.ts +++ b/types/components/hotelPage/tabNavigation.ts @@ -1,6 +1,7 @@ export enum HotelHashValues { // Should these be translated? overview = "#overview", rooms = "#rooms-section", + restaurant = "#restaurant-and-bar", meetings = "#meetings-and-conferences", wellness = "#wellness-and-exercise", activities = "#activities", @@ -8,5 +9,5 @@ export enum HotelHashValues { // Should these be translated? } export type TabNavigationProps = { - restaurantRefData: { href: any; title: string } + restaurantTitle: string } diff --git a/utils/facilityCards.ts b/utils/facilityCards.ts index 6d4ce6801..3e9fd0d67 100644 --- a/utils/facilityCards.ts +++ b/utils/facilityCards.ts @@ -1,8 +1,5 @@ import { - bar, - breakfastRestaurant, meetingsAndConferences, - restaurant, restaurantAndBar, wellnessAndExercise, } from "@/constants/routes/hotelPageParams" @@ -92,7 +89,7 @@ export async function setFacilityCards( switch (facility.id) { case FacilityEnum.wellness: card.theme = "one" - card.id = "wellness-and-exercise" + card.id = wellnessAndExercise[lang] ;(card.heading = intl.formatMessage({ id: "Sauna and gym" })), (card.secondaryButton = { href: `?s=${wellnessAndExercise[lang]}`, @@ -106,7 +103,7 @@ export async function setFacilityCards( case FacilityEnum.conference: card.theme = "primaryDim" - card.id = "meetings-and-conferences" + card.id = meetingsAndConferences[lang] ;(card.heading = intl.formatMessage({ id: "Events that make an impression", })), @@ -119,14 +116,14 @@ export async function setFacilityCards( break case FacilityEnum.restaurant: - const { href, title } = getRestaurantDynamicTitles(amenities) + const title = getRestaurantHeading(amenities) card.theme = "primaryDark" - card.id = href[lang] + card.id = restaurantAndBar[lang] card.heading = intl.formatMessage({ id: "Enjoy relaxed restaurant experiences", }) card.secondaryButton = { - href: `?s=${href[lang]}`, + href: `?s=${restaurantAndBar[lang]}`, title: intl.formatMessage({ id: "Read more & book a table" }), isExternal: false, } @@ -138,7 +135,7 @@ export async function setFacilityCards( return cards } -export function getRestaurantDynamicTitles( +export function getRestaurantHeading( amenities: HotelData["data"]["attributes"]["detailedFacilities"] ) { const hasBar = amenities.some( @@ -146,20 +143,20 @@ export function getRestaurantDynamicTitles( ) const hasRestaurant = amenities.some((facility) => facility.id == 1383) // restaurant id - let href, title: string + //let href, + let title: string if (hasBar && hasRestaurant) { - href = restaurantAndBar + //href = restaurantAndBar title = "Restaurant & Bar" } else if (hasBar) { - href = bar + //href = bar title = "Bar" } else if (hasRestaurant) { - href = restaurant + //href = restaurant title = "Restaurant" } else { - href = breakfastRestaurant + //href = breakfastRestaurant title = "Breakfast restaurant" } - - return { href, title } + return title } From 72c961eabf17970159157d0d8ba0f7af12eb9705 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matilda=20Landstr=C3=B6m?= Date: Thu, 19 Sep 2024 13:26:05 +0200 Subject: [PATCH 11/30] refactor(SW-302): code cleanup --- .../HotelPage/AmenitiesList/index.tsx | 4 +-- .../HotelPage/Facilities/CardGrid/index.tsx | 33 ++++++++++++------- .../HotelPage/Facilities/index.tsx | 9 +++-- .../TempDesignSystem/Card/CardImage/index.tsx | 10 ++++-- server/routers/hotels/output.ts | 2 +- server/routers/hotels/query.ts | 4 +-- types/components/hotelPage/facilities.ts | 13 ++++++-- types/hotel.ts | 4 +++ utils/facilityCards.ts | 23 +++++++------ 9 files changed, 65 insertions(+), 37 deletions(-) diff --git a/components/ContentType/HotelPage/AmenitiesList/index.tsx b/components/ContentType/HotelPage/AmenitiesList/index.tsx index 20bad025d..06483f434 100644 --- a/components/ContentType/HotelPage/AmenitiesList/index.tsx +++ b/components/ContentType/HotelPage/AmenitiesList/index.tsx @@ -10,12 +10,12 @@ import { getLang } from "@/i18n/serverContext" import styles from "./amenitiesList.module.css" -import { HotelData } from "@/types/hotel" +import type { Amenities } from "@/types/hotel" export default async function AmenitiesList({ detailedFacilities, }: { - detailedFacilities: HotelData["data"]["attributes"]["detailedFacilities"] + detailedFacilities: Amenities }) { const intl = await getIntl() const sortedAmenities = detailedFacilities diff --git a/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx b/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx index 1f1b9cc58..924d2c1ed 100644 --- a/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx +++ b/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx @@ -6,31 +6,40 @@ import { sortCards } from "@/utils/imageCard" import styles from "./cardGrid.module.css" import type { CardGridProps } from "@/types/components/hotelPage/facilities" +import type { CardProps } from "@/components/TempDesignSystem/Card/card" -export default async function CardGrid({ facility }: CardGridProps) { - const imageCard = sortCards(facility) - const nrCards = facility.length +export default async function CardGrid({ facilities }: CardGridProps) { + const imageCard = sortCards(facilities) + const nrCards = facilities.length + + function getCardClassName(card: CardProps): string { + if (nrCards === 1) { + return styles.spanThree + } else if (nrCards === 2 && card.backgroundImage) { + return styles.spanTwo + } + return styles.spanOne + } return (
- {facility.map((card: any, idx: number) => ( + {facilities.map((card: CardProps, idx: number) => ( ))} diff --git a/components/ContentType/HotelPage/Facilities/index.tsx b/components/ContentType/HotelPage/Facilities/index.tsx index 8775d0de2..04245c573 100644 --- a/components/ContentType/HotelPage/Facilities/index.tsx +++ b/components/ContentType/HotelPage/Facilities/index.tsx @@ -4,13 +4,16 @@ import CardGrid from "./CardGrid" import styles from "./facilities.module.css" -import type { FacilityProps } from "@/types/components/hotelPage/facilities" +import type { + FacilityCards, + FacilityProps, +} from "@/types/components/hotelPage/facilities" export default async function Facilities({ facilities }: FacilityProps) { return ( - {facilities.map((facility: any, idx: number) => ( - + {facilities.map((facilityCards: FacilityCards, idx: number) => ( + ))} ) diff --git a/components/TempDesignSystem/Card/CardImage/index.tsx b/components/TempDesignSystem/Card/CardImage/index.tsx index 2ee17f37d..876316c8c 100644 --- a/components/TempDesignSystem/Card/CardImage/index.tsx +++ b/components/TempDesignSystem/Card/CardImage/index.tsx @@ -15,10 +15,16 @@ export default function CardImage({
{imageCards.map( - ({ backgroundImage }) => + ({ backgroundImage }, idx: Number) => backgroundImage && ( {backgroundImage.title} = [ + const facilities: Facility[] = [ { ...apiJson.data.attributes.restaurantImages, id: FacilityEnum.restaurant, diff --git a/types/components/hotelPage/facilities.ts b/types/components/hotelPage/facilities.ts index 71babc174..0e539615a 100644 --- a/types/components/hotelPage/facilities.ts +++ b/types/components/hotelPage/facilities.ts @@ -1,15 +1,15 @@ import type { CardProps } from "@/components/TempDesignSystem/Card/card" -export type FacilityCards = Array +export type FacilityCards = CardProps[] -export type Facilities = Array +export type Facilities = FacilityCards[] export type FacilityProps = { facilities: Facilities } export type CardGridProps = { - facility: FacilityCards + facilities: FacilityCards } export enum FacilityEnum { @@ -17,3 +17,10 @@ export enum FacilityEnum { conference = "meetings-and-conferences", restaurant = "restaurant-and-bar", } + +export enum RestaurantHeadings { + restaurantAndBar = "Restaurant & Bar", + bar = "Bar", + restaurant = "Restaurant", + breakfastRestaurant = "Breakfast restaurant", +} diff --git a/types/hotel.ts b/types/hotel.ts index f4436fb6c..203e2423f 100644 --- a/types/hotel.ts +++ b/types/hotel.ts @@ -1,6 +1,7 @@ import { z } from "zod" import { + facilitySchema, getHotelDataSchema, parkingSchema, pointOfInterestSchema, @@ -13,6 +14,8 @@ export type Hotel = HotelData["data"]["attributes"] export type HotelAddress = HotelData["data"]["attributes"]["address"] export type HotelLocation = HotelData["data"]["attributes"]["location"] +export type Amenities = HotelData["data"]["attributes"]["detailedFacilities"] + type HotelRatings = HotelData["data"]["attributes"]["ratings"] export type HotelTripAdvisor = | NonNullable["tripAdvisor"] @@ -52,3 +55,4 @@ export enum PointOfInterestGroupEnum { } export type ParkingData = z.infer +export type Facility = z.infer & { id: string } diff --git a/utils/facilityCards.ts b/utils/facilityCards.ts index 3e9fd0d67..e8143de74 100644 --- a/utils/facilityCards.ts +++ b/utils/facilityCards.ts @@ -11,11 +11,11 @@ import { type Facilities, type FacilityCards, FacilityEnum, + RestaurantHeadings, } from "@/types/components/hotelPage/facilities" import type { ImageVaultAsset } from "@/types/components/imageVault" -import type { HotelData } from "@/types/hotel" +import type { Amenities, Facility } from "@/types/hotel" import type { CardProps } from "@/components/TempDesignSystem/Card/card" -import type { Facility } from "@/server/routers/hotels/output" type ActivityCard = { background_image?: ImageVaultAsset @@ -55,8 +55,8 @@ export function setActivityCard(activitiesCard: ActivityCard): FacilityCards { } export async function setFacilityCards( - facilities: Array, - amenities: HotelData["data"]["attributes"]["detailedFacilities"] + facilities: Facility[], + amenities: Amenities ) { const lang = getLang() const intl = await getIntl() @@ -135,28 +135,27 @@ export async function setFacilityCards( return cards } -export function getRestaurantHeading( - amenities: HotelData["data"]["attributes"]["detailedFacilities"] -) { +export function getRestaurantHeading(amenities: Amenities): RestaurantHeadings { const hasBar = amenities.some( (facility) => facility.id == 1606 || facility.id == 1014 // bar & rooftop bar id ) const hasRestaurant = amenities.some((facility) => facility.id == 1383) // restaurant id //let href, - let title: string + let title: RestaurantHeadings + if (hasBar && hasRestaurant) { //href = restaurantAndBar - title = "Restaurant & Bar" + title = RestaurantHeadings.restaurantAndBar } else if (hasBar) { //href = bar - title = "Bar" + title = RestaurantHeadings.bar } else if (hasRestaurant) { //href = restaurant - title = "Restaurant" + title = RestaurantHeadings.restaurant } else { //href = breakfastRestaurant - title = "Breakfast restaurant" + title = RestaurantHeadings.breakfastRestaurant } return title } From 32c9e73ba9e2be80d50d5ff171cae4fc63455a39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matilda=20Landstr=C3=B6m?= Date: Thu, 19 Sep 2024 13:29:03 +0200 Subject: [PATCH 12/30] fix(SW-302): remove comments --- utils/facilityCards.ts | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/utils/facilityCards.ts b/utils/facilityCards.ts index e8143de74..724598453 100644 --- a/utils/facilityCards.ts +++ b/utils/facilityCards.ts @@ -141,21 +141,12 @@ export function getRestaurantHeading(amenities: Amenities): RestaurantHeadings { ) const hasRestaurant = amenities.some((facility) => facility.id == 1383) // restaurant id - //let href, - let title: RestaurantHeadings - if (hasBar && hasRestaurant) { - //href = restaurantAndBar - title = RestaurantHeadings.restaurantAndBar + return RestaurantHeadings.restaurantAndBar } else if (hasBar) { - //href = bar - title = RestaurantHeadings.bar + return RestaurantHeadings.bar } else if (hasRestaurant) { - //href = restaurant - title = RestaurantHeadings.restaurant - } else { - //href = breakfastRestaurant - title = RestaurantHeadings.breakfastRestaurant + return RestaurantHeadings.restaurant } - return title + return RestaurantHeadings.breakfastRestaurant } From a12eea5493876b103e7797be36133bd927abe64b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matilda=20Landstr=C3=B6m?= Date: Sat, 21 Sep 2024 11:19:38 +0200 Subject: [PATCH 13/30] refactor(SW-302): split upp function into two --- .../Facilities/CardGrid/cardGrid.module.css | 8 +- server/routers/hotels/output.ts | 2 +- utils/facilityCards.ts | 91 ++++++++++--------- 3 files changed, 51 insertions(+), 50 deletions(-) diff --git a/components/ContentType/HotelPage/Facilities/CardGrid/cardGrid.module.css b/components/ContentType/HotelPage/Facilities/CardGrid/cardGrid.module.css index 0d453b437..515b772e3 100644 --- a/components/ContentType/HotelPage/Facilities/CardGrid/cardGrid.module.css +++ b/components/ContentType/HotelPage/Facilities/CardGrid/cardGrid.module.css @@ -11,22 +11,22 @@ } .desktopGrid { - display: none; + display: none !important; } .mobileGrid { - display: grid; + display: grid !important; gap: var(--Spacing-x-quarter); } @media screen and (min-width: 768px) { .desktopGrid { - display: grid; + display: grid !important; gap: var(--Spacing-x1); grid-template-columns: repeat(3, 1fr); } .mobileGrid { - display: none; + display: none !important; } } diff --git a/server/routers/hotels/output.ts b/server/routers/hotels/output.ts index 5183ad02c..1856f2243 100644 --- a/server/routers/hotels/output.ts +++ b/server/routers/hotels/output.ts @@ -165,7 +165,7 @@ const detailedFacilitySchema = z.object({ }) export const facilitySchema = z.object({ - headingText: z.string().optional(), // TODO: Should not be optional, remove when we get meetingsAndConferences headingText + headingText: z.string(), heroImages: z.array( z.object({ metaData: imageMetaDataSchema, diff --git a/utils/facilityCards.ts b/utils/facilityCards.ts index 724598453..87893399d 100644 --- a/utils/facilityCards.ts +++ b/utils/facilityCards.ts @@ -54,26 +54,36 @@ export function setActivityCard(activitiesCard: ActivityCard): FacilityCards { ] } -export async function setFacilityCards( - facilities: Facility[], - amenities: Amenities +async function setCardProps( + theme: CardProps["theme"], + heading: string, + buttonText: string, + href: string ) { - const lang = getLang() const intl = await getIntl() + const card: CardProps = {} - let cards: Facilities = [], - card: CardProps, - img: CardProps, - grid: Array + card.theme = theme + card.id = href + card.heading = intl.formatMessage({ id: heading }) + card.secondaryButton = { + href: `?s=${href}`, + title: intl.formatMessage({ id: buttonText }), + isExternal: false, + } + return card +} - facilities.map((facility) => { - card = {} - grid = [] +export function setFacilityCards(facilities: Facility[], amenities: Amenities) { + const lang = getLang() + const cards: Facilities = [] - card.scriptedTopTitle = facility.headingText ?? "Fallback title" + facilities.forEach(async (facility) => { + const grid: Array = [] + let card: CardProps = {} - facility.heroImages.map((image) => { - img = {} + facility.heroImages.forEach((image) => { + const img: CardProps = {} ;(img.backgroundImage = { url: image.imageSizes.large, title: image.metaData.title, @@ -88,45 +98,36 @@ export async function setFacilityCards( switch (facility.id) { case FacilityEnum.wellness: - card.theme = "one" - card.id = wellnessAndExercise[lang] - ;(card.heading = intl.formatMessage({ id: "Sauna and gym" })), - (card.secondaryButton = { - href: `?s=${wellnessAndExercise[lang]}`, - title: intl.formatMessage({ - id: "Read more about wellness & exercise", - }), - isExternal: false, - }) + card = await setCardProps( + "one", + "Sauna and gym", + "Read more about wellness & exercise", + wellnessAndExercise[lang] + ) + card.scriptedTopTitle = facility.headingText grid.unshift(card) break case FacilityEnum.conference: - card.theme = "primaryDim" - card.id = meetingsAndConferences[lang] - ;(card.heading = intl.formatMessage({ - id: "Events that make an impression", - })), - (card.secondaryButton = { - href: `?s=${meetingsAndConferences[lang]}`, - title: intl.formatMessage({ id: "About meetings & conferences" }), - isExternal: false, - }) + card = await setCardProps( + "primaryDim", + "Events that make an impression", + "About meetings & conferences", + meetingsAndConferences[lang] + ) + card.scriptedTopTitle = facility.headingText grid.push(card) break case FacilityEnum.restaurant: - const title = getRestaurantHeading(amenities) - card.theme = "primaryDark" - card.id = restaurantAndBar[lang] - card.heading = intl.formatMessage({ - id: "Enjoy relaxed restaurant experiences", - }) - card.secondaryButton = { - href: `?s=${restaurantAndBar[lang]}`, - title: intl.formatMessage({ id: "Read more & book a table" }), - isExternal: false, - } + //const title = getRestaurantHeading(amenities) // TODO will be used later + card = await setCardProps( + "primaryDark", + "Enjoy relaxed restaurant experiences", + "Read more & book a table", + restaurantAndBar[lang] + ) + card.scriptedTopTitle = facility.headingText grid.unshift(card) break } From 1d8319bfcb89661cf7b02ece3289005ebf3ad27c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matilda=20Landstr=C3=B6m?= Date: Tue, 1 Oct 2024 10:57:22 +0200 Subject: [PATCH 14/30] fix(SW-302): fixes after rebase --- .../ContentType/HotelPage/Facilities/utils.ts | 35 ------------------- components/ContentType/HotelPage/index.tsx | 2 +- components/TempDesignSystem/Card/index.tsx | 8 +++-- i18n/dictionaries/da.json | 1 - i18n/dictionaries/fi.json | 1 - i18n/dictionaries/no.json | 1 - i18n/dictionaries/sv.json | 1 - server/routers/hotels/query.ts | 2 +- utils/facilityCards.ts | 5 ++- 9 files changed, 11 insertions(+), 45 deletions(-) delete mode 100644 components/ContentType/HotelPage/Facilities/utils.ts diff --git a/components/ContentType/HotelPage/Facilities/utils.ts b/components/ContentType/HotelPage/Facilities/utils.ts deleted file mode 100644 index 1086e7430..000000000 --- a/components/ContentType/HotelPage/Facilities/utils.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { Facility } from "@/types/components/hotelPage/facilities" -import type { ActivityCard } from "@/types/trpc/routers/contentstack/hotelPage" - -export function setActivityCard(activitiesCard: ActivityCard): Facility { - const hasImage = !!activitiesCard.background_image - return [ - { - id: "activities", - theme: hasImage ? "image" : "primaryDark", - scriptedTopTitle: activitiesCard.scripted_title, - heading: activitiesCard.heading, - bodyText: activitiesCard.body_text, - backgroundImage: hasImage ? activitiesCard.background_image : undefined, - primaryButton: hasImage - ? { - href: activitiesCard.contentPage.href, - title: activitiesCard.cta_text, - isExternal: false, - } - : undefined, - secondaryButton: hasImage - ? undefined - : { - href: activitiesCard.contentPage.href, - title: activitiesCard.cta_text, - isExternal: false, - }, - columnSpan: "three", - }, - ] -} - -export function getCardTheme() { - // TODO -} diff --git a/components/ContentType/HotelPage/index.tsx b/components/ContentType/HotelPage/index.tsx index 9b27a4c12..66b5bb46d 100644 --- a/components/ContentType/HotelPage/index.tsx +++ b/components/ContentType/HotelPage/index.tsx @@ -55,7 +55,7 @@ export default async function HotelPage() { facilityCards, hotelDetailedFacilities ) - activitiesCard && facilities.push(setActivityCard(activitiesCard)) + //activitiesCard && facilities.push(setActivityCard(activitiesCard)) const topThreePois = pointsOfInterest.slice(0, 3) const coordinates = { diff --git a/components/TempDesignSystem/Card/index.tsx b/components/TempDesignSystem/Card/index.tsx index 94cc08773..f3a8f3594 100644 --- a/components/TempDesignSystem/Card/index.tsx +++ b/components/TempDesignSystem/Card/index.tsx @@ -11,6 +11,7 @@ import { cardVariants } from "./variants" import styles from "./card.module.css" +import type { ImageVaultAsset } from "@/types/components/imageVault" import type { CardProps } from "./card" export default function Card({ @@ -30,12 +31,13 @@ export default function Card({ const buttonTheme = getTheme(theme) imageHeight = imageHeight || 320 - imageWidth = + + /*imageWidth = imageWidth || (backgroundImage ? backgroundImage.dimensions.aspectRatio * imageHeight : 420) - +*/ return (
diff --git a/i18n/dictionaries/da.json b/i18n/dictionaries/da.json index 71566409e..21097a538 100644 --- a/i18n/dictionaries/da.json +++ b/i18n/dictionaries/da.json @@ -84,7 +84,6 @@ "FAQ": "Ofte stillede spørgsmål", "Failed to delete credit card, please try again later.": "Kunne ikke slette kreditkort. Prøv venligst igen senere.", "Fair": "Messe", - "FAQ": "FAQ", "Find booking": "Find booking", "Find hotels": "Find hotel", "Flexibility": "Fleksibilitet", diff --git a/i18n/dictionaries/fi.json b/i18n/dictionaries/fi.json index 3be690ca0..ab17e3f83 100644 --- a/i18n/dictionaries/fi.json +++ b/i18n/dictionaries/fi.json @@ -84,7 +84,6 @@ "FAQ": "UKK", "Failed to delete credit card, please try again later.": "Luottokortin poistaminen epäonnistui, yritä myöhemmin uudelleen.", "Fair": "Messukeskus", - "FAQ": "FAQ", "Find booking": "Etsi varaus", "Find hotels": "Etsi hotelleja", "Flexibility": "Joustavuus", diff --git a/i18n/dictionaries/no.json b/i18n/dictionaries/no.json index dcd51350b..8bc1eafb2 100644 --- a/i18n/dictionaries/no.json +++ b/i18n/dictionaries/no.json @@ -80,7 +80,6 @@ "Explore all levels and benefits": "Utforsk alle nivåer og fordeler", "Explore nearby": "Utforsk i nærheten", "Extras to your booking": "Tilvalg til bestillingen din", - "FAQ": "FAQ", "Failed to delete credit card, please try again later.": "Kunne ikke slette kredittkortet, prøv igjen senere.", "Fair": "Messe", "FAQ": "FAQ", diff --git a/i18n/dictionaries/sv.json b/i18n/dictionaries/sv.json index d1327d0b7..e1f48b548 100644 --- a/i18n/dictionaries/sv.json +++ b/i18n/dictionaries/sv.json @@ -84,7 +84,6 @@ "FAQ": "FAQ", "Failed to delete credit card, please try again later.": "Det gick inte att ta bort kreditkortet, försök igen senare.", "Fair": "Mässa", - "FAQ": "FAQ", "Find booking": "Hitta bokning", "Find hotels": "Hitta hotell", "Flexibility": "Flexibilitet", diff --git a/server/routers/hotels/query.ts b/server/routers/hotels/query.ts index 08b1c59e5..0fae3ff79 100644 --- a/server/routers/hotels/query.ts +++ b/server/routers/hotels/query.ts @@ -245,7 +245,7 @@ export const hotelQueryRouter = router({ hotelImages: images, pointsOfInterest: hotelAttributes.pointsOfInterest, roomCategories, - activitiesCard: activities, + activitiesCard: activities?.upcoming_activities_card, facilityCards: facilities, } }), diff --git a/utils/facilityCards.ts b/utils/facilityCards.ts index 87893399d..0d6ea64c2 100644 --- a/utils/facilityCards.ts +++ b/utils/facilityCards.ts @@ -74,7 +74,10 @@ async function setCardProps( return card } -export function setFacilityCards(facilities: Facility[], amenities: Amenities) { +export async function setFacilityCards( + facilities: Facility[], + amenities: Amenities +) { const lang = getLang() const cards: Facilities = [] From d78218801fabfb839af771eb36ee4359cd3bb934 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matilda=20Landstr=C3=B6m?= Date: Tue, 1 Oct 2024 11:02:59 +0200 Subject: [PATCH 15/30] fix(SW-302): add facility ID enum --- types/components/hotelPage/facilities.ts | 6 ++++++ utils/facilityCards.ts | 8 ++++++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/types/components/hotelPage/facilities.ts b/types/components/hotelPage/facilities.ts index 0e539615a..dbe27ea6a 100644 --- a/types/components/hotelPage/facilities.ts +++ b/types/components/hotelPage/facilities.ts @@ -24,3 +24,9 @@ export enum RestaurantHeadings { restaurant = "Restaurant", breakfastRestaurant = "Breakfast restaurant", } + +export enum FacilityIds { + bar = 1606, + rooftopBar = 1014, + restaurant = 1383, +} diff --git a/utils/facilityCards.ts b/utils/facilityCards.ts index 0d6ea64c2..fb02ea9c0 100644 --- a/utils/facilityCards.ts +++ b/utils/facilityCards.ts @@ -11,6 +11,7 @@ import { type Facilities, type FacilityCards, FacilityEnum, + FacilityIds, RestaurantHeadings, } from "@/types/components/hotelPage/facilities" import type { ImageVaultAsset } from "@/types/components/imageVault" @@ -141,9 +142,12 @@ export async function setFacilityCards( export function getRestaurantHeading(amenities: Amenities): RestaurantHeadings { const hasBar = amenities.some( - (facility) => facility.id == 1606 || facility.id == 1014 // bar & rooftop bar id + (facility) => + facility.id == FacilityIds.bar || facility.id == FacilityIds.rooftopBar + ) + const hasRestaurant = amenities.some( + (facility) => facility.id == FacilityIds.restaurant ) - const hasRestaurant = amenities.some((facility) => facility.id == 1383) // restaurant id if (hasBar && hasRestaurant) { return RestaurantHeadings.restaurantAndBar From d55644db7cf26c6c5ddbe8c8e690b9207be9dfe1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matilda=20Landstr=C3=B6m?= Date: Tue, 1 Oct 2024 12:11:33 +0200 Subject: [PATCH 16/30] fix(SW-302): plural translations --- i18n/dictionaries/da.json | 6 ++---- i18n/dictionaries/de.json | 6 ++---- i18n/dictionaries/en.json | 6 ++---- i18n/dictionaries/fi.json | 6 ++---- i18n/dictionaries/no.json | 6 ++---- i18n/dictionaries/sv.json | 6 ++---- 6 files changed, 12 insertions(+), 24 deletions(-) diff --git a/i18n/dictionaries/da.json b/i18n/dictionaries/da.json index 21097a538..b373e531f 100644 --- a/i18n/dictionaries/da.json +++ b/i18n/dictionaries/da.json @@ -22,8 +22,7 @@ "At the hotel": "På hotellet", "Attractions": "Attraktioner", "Back to scandichotels.com": "Tilbage til scandichotels.com", - "Bar": "Bar", - "Bars": "Bars", + "Bar": "{bars, plural, one {#bar} other {#bars}}", "Bed type": "Seng type", "Book": "Book", "Book reward night": "Book bonusnat", @@ -192,9 +191,8 @@ "Read more about the hotel": "Læs mere om hotellet", "Read more about wellness & exercise": "Read more about wellness & exercise", "Remove card from member profile": "Fjern kortet fra medlemsprofilen", - "Restaurant": "Restaurant", + "Restaurant": "{restaurants, plural, one {#restaurant} other {#restaurants}}", "Restaurant & Bar": "Restaurant & Bar", - "Restaurants": "Restaurants", "Restaurants & Bars": "Restaurants & Bars", "Retype new password": "Gentag den nye adgangskode", "Room & Terms": "Værelse & Vilkår", diff --git a/i18n/dictionaries/de.json b/i18n/dictionaries/de.json index fa88d5c7f..8fc7fa563 100644 --- a/i18n/dictionaries/de.json +++ b/i18n/dictionaries/de.json @@ -23,8 +23,7 @@ "At the hotel": "Im Hotel", "Attractions": "Attraktionen", "Back to scandichotels.com": "Zurück zu scandichotels.com", - "Bar": "Bar", - "Bars": "Bars", + "Bar": "{bars, plural, one {#bar} other {#bars}}", "Bed type": "Bettentyp", "Book": "Buchen", "Book reward night": "Bonusnacht buchen", @@ -202,9 +201,8 @@ "Read more about the hotel": "Lesen Sie mehr über das Hotel", "Read more about wellness & exercise": "Read more about wellness & exercise", "Remove card from member profile": "Karte aus dem Mitgliedsprofil entfernen", - "Restaurant": "Restaurant", + "Restaurant": "{restaurants, plural, one {#restaurant} other {#restaurants}}", "Restaurant & Bar": "Restaurant & Bar", - "Restaurants": "Restaurants", "Restaurants & Bars": "Restaurants & Bars", "Retype new password": "Neues Passwort erneut eingeben", "Room & Terms": "Zimmer & Bedingungen", diff --git a/i18n/dictionaries/en.json b/i18n/dictionaries/en.json index 7fa569f76..444f0890b 100644 --- a/i18n/dictionaries/en.json +++ b/i18n/dictionaries/en.json @@ -22,8 +22,7 @@ "At the hotel": "At the hotel", "Attractions": "Attractions", "Back to scandichotels.com": "Back to scandichotels.com", - "Bar": "Bar", - "Bars": "Bars", + "Bar": "{bars, plural, one {#bar} other {#bars}}", "Bed type": "Bed type", "Book": "Book", "Book reward night": "Book reward night", @@ -198,9 +197,8 @@ "Read more about the hotel": "Read more about the hotel", "Read more about wellness & exercise": "Read more about wellness & exercise", "Remove card from member profile": "Remove card from member profile", - "Restaurant": "Restaurant", + "Restaurant": "{restaurants, plural, one {#restaurant} other {#restaurants}}", "Restaurant & Bar": "Restaurant & Bar", - "Restaurants": "Restaurants", "Restaurants & Bars": "Restaurants & Bars", "Retype new password": "Retype new password", "Room & Terms": "Room & Terms", diff --git a/i18n/dictionaries/fi.json b/i18n/dictionaries/fi.json index ab17e3f83..db5ddf0a0 100644 --- a/i18n/dictionaries/fi.json +++ b/i18n/dictionaries/fi.json @@ -22,8 +22,7 @@ "At the hotel": "Hotellissa", "Attractions": "Nähtävyydet", "Back to scandichotels.com": "Takaisin scandichotels.com", - "Bar": "Bar", - "Bars": "Bars", + "Bar": "{bars, plural, one {#bar} other {#bars}}", "Bed type": "Vuodetyyppi", "Book": "Varaa", "Book reward night": "Kirjapalkinto-ilta", @@ -192,9 +191,8 @@ "Read more about the hotel": "Lue lisää hotellista", "Read more about wellness & exercise": "Read more about wellness & exercise", "Remove card from member profile": "Poista kortti jäsenprofiilista", - "Restaurant": "Ravintola", + "Restaurant": "{restaurants, plural, one {#ravintola} other {#restaurants}}", "Restaurant & Bar": "Ravintola & Baari", - "Restaurants": "Restaurants", "Restaurants & Bars": "Restaurants & Bars", "Retype new password": "Kirjoita uusi salasana uudelleen", "Room & Terms": "Huone & Ehdot", diff --git a/i18n/dictionaries/no.json b/i18n/dictionaries/no.json index 8bc1eafb2..3d9d06b4a 100644 --- a/i18n/dictionaries/no.json +++ b/i18n/dictionaries/no.json @@ -22,8 +22,7 @@ "At the hotel": "På hotellet", "Attractions": "Attraksjoner", "Back to scandichotels.com": "Tilbake til scandichotels.com", - "Bar": "Bar", - "Bars": "Bars", + "Bar": "{bars, plural, one {#bar} other {#bars}}", "Bed type": "Seng type", "Book": "Bestill", "Book reward night": "Bestill belønningskveld", @@ -191,9 +190,8 @@ "Read more about the hotel": "Les mer om hotellet", "Read more about wellness & exercise": "Read more about wellness & exercise", "Remove card from member profile": "Fjern kortet fra medlemsprofilen", - "Restaurant": "Restaurant", + "Restaurant": "{restaurants, plural, one {#restaurant} other {#restaurants}}", "Restaurant & Bar": "Restaurant & Bar", - "Restaurants": "Restaurants", "Restaurants & Bars": "Restaurants & Bars", "Retype new password": "Skriv inn nytt passord på nytt", "Room & Terms": "Rom & Vilkår", diff --git a/i18n/dictionaries/sv.json b/i18n/dictionaries/sv.json index e1f48b548..f6b502b00 100644 --- a/i18n/dictionaries/sv.json +++ b/i18n/dictionaries/sv.json @@ -22,8 +22,7 @@ "At the hotel": "På hotellet", "Attractions": "Sevärdheter", "Back to scandichotels.com": "Tillbaka till scandichotels.com", - "Bar": "Bar", - "Bars": "Bars", + "Bar": "{bars, plural, one {#bar} other {#bars}}", "Bed type": "Sängtyp", "Book": "Boka", "Book reward night": "Boka frinatt", @@ -193,9 +192,8 @@ "Read more about the hotel": "Läs mer om hotellet", "Read more about wellness & exercise": "Read more about wellness & exercise", "Remove card from member profile": "Ta bort kortet från medlemsprofilen", - "Restaurant": "Restaurang", + "Restaurant": "{restaurants, plural, one {#restaurang} other {#restauranger}}", "Restaurant & Bar": "Restaurang & Bar", - "Restaurants": "Restaurants", "Restaurants & Bars": "Restaurants & Bars", "Retype new password": "Upprepa nytt lösenord", "Room & Terms": "Rum & Villkor", From 40c6ed0f20f5b5cc505c499cd949f86037e9db65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matilda=20Landstr=C3=B6m?= Date: Tue, 1 Oct 2024 12:25:12 +0200 Subject: [PATCH 17/30] fix(SW-302): small translation typo --- constants/routes/hotelPageParams.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/constants/routes/hotelPageParams.js b/constants/routes/hotelPageParams.js index 97c51b4b5..5ee71737d 100644 --- a/constants/routes/hotelPageParams.js +++ b/constants/routes/hotelPageParams.js @@ -54,7 +54,7 @@ export const restaurantAndBar = { /*export const restaurant = { en: "restaurant", - sv: "restaurant", + sv: "restaurang", no: "restaurant", da: "restaurant", fi: "ravintola", From c3fbd35cff6d3e2ec2e1f4ed531e566303970472 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matilda=20Landstr=C3=B6m?= Date: Tue, 1 Oct 2024 12:55:40 +0200 Subject: [PATCH 18/30] fix(SW-302): add back imageWidth fix --- components/TempDesignSystem/Card/index.tsx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/components/TempDesignSystem/Card/index.tsx b/components/TempDesignSystem/Card/index.tsx index f3a8f3594..223574ded 100644 --- a/components/TempDesignSystem/Card/index.tsx +++ b/components/TempDesignSystem/Card/index.tsx @@ -11,7 +11,6 @@ import { cardVariants } from "./variants" import styles from "./card.module.css" -import type { ImageVaultAsset } from "@/types/components/imageVault" import type { CardProps } from "./card" export default function Card({ @@ -32,12 +31,12 @@ export default function Card({ imageHeight = imageHeight || 320 - /*imageWidth = + imageWidth = imageWidth || - (backgroundImage + (backgroundImage && "dimensions" in backgroundImage ? backgroundImage.dimensions.aspectRatio * imageHeight : 420) -*/ + return (
From e7f6cc72681208bc8469938116ac9cf8c4fa3321 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matilda=20Landstr=C3=B6m?= Date: Tue, 1 Oct 2024 13:54:34 +0200 Subject: [PATCH 19/30] fix(SW-302): show max. 2 images per grid --- utils/facilityCards.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/utils/facilityCards.ts b/utils/facilityCards.ts index fb02ea9c0..578237f55 100644 --- a/utils/facilityCards.ts +++ b/utils/facilityCards.ts @@ -86,7 +86,8 @@ export async function setFacilityCards( const grid: Array = [] let card: CardProps = {} - facility.heroImages.forEach((image) => { + facility.heroImages.slice(0, 2).forEach((image) => { + // Can be a maximum 2 images per grid const img: CardProps = {} ;(img.backgroundImage = { url: image.imageSizes.large, From 42cf49deaec6951c78a7f62beae3a24003e70978 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matilda=20Landstr=C3=B6m?= Date: Tue, 1 Oct 2024 14:02:22 +0200 Subject: [PATCH 20/30] fix(SW-302): add Card image gradient as prop --- components/Header/MainMenu/NavigationMenu/MegaMenu/index.tsx | 1 + components/TempDesignSystem/Card/card.ts | 1 + components/TempDesignSystem/Card/index.tsx | 3 ++- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/components/Header/MainMenu/NavigationMenu/MegaMenu/index.tsx b/components/Header/MainMenu/NavigationMenu/MegaMenu/index.tsx index 2b981d635..ab400ac38 100644 --- a/components/Header/MainMenu/NavigationMenu/MegaMenu/index.tsx +++ b/components/Header/MainMenu/NavigationMenu/MegaMenu/index.tsx @@ -103,6 +103,7 @@ export default function MegaMenu({ scriptedTopTitle={card.scripted_top_title} onPrimaryButtonClick={handleNavigate} onSecondaryButtonClick={handleNavigate} + imageGradient theme="image" />
diff --git a/components/TempDesignSystem/Card/card.ts b/components/TempDesignSystem/Card/card.ts index 03c633d6c..ac2bc66af 100644 --- a/components/TempDesignSystem/Card/card.ts +++ b/components/TempDesignSystem/Card/card.ts @@ -25,6 +25,7 @@ export interface CardProps bodyText?: string | null imageHeight?: number imageWidth?: number + imageGradient?: boolean onPrimaryButtonClick?: () => void onSecondaryButtonClick?: () => void backgroundImage?: ImageVaultAsset | ApiImage diff --git a/components/TempDesignSystem/Card/index.tsx b/components/TempDesignSystem/Card/index.tsx index 223574ded..547ab5bea 100644 --- a/components/TempDesignSystem/Card/index.tsx +++ b/components/TempDesignSystem/Card/index.tsx @@ -24,6 +24,7 @@ export default function Card({ backgroundImage, imageHeight, imageWidth, + imageGradient, onPrimaryButtonClick, onSecondaryButtonClick, }: CardProps) { @@ -45,7 +46,7 @@ export default function Card({ })} > {backgroundImage && ( -
+
Date: Tue, 1 Oct 2024 14:13:18 +0200 Subject: [PATCH 21/30] fix(SW-302): remove unused translation --- i18n/dictionaries/da.json | 4 ++-- i18n/dictionaries/de.json | 4 ++-- i18n/dictionaries/en.json | 4 ++-- i18n/dictionaries/fi.json | 4 ++-- i18n/dictionaries/no.json | 4 ++-- i18n/dictionaries/sv.json | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/i18n/dictionaries/da.json b/i18n/dictionaries/da.json index b373e531f..ed2cce0d8 100644 --- a/i18n/dictionaries/da.json +++ b/i18n/dictionaries/da.json @@ -22,7 +22,7 @@ "At the hotel": "På hotellet", "Attractions": "Attraktioner", "Back to scandichotels.com": "Tilbage til scandichotels.com", - "Bar": "{bars, plural, one {#bar} other {#bars}}", + "Bar": "Bar", "Bed type": "Seng type", "Book": "Book", "Book reward night": "Book bonusnat", @@ -191,7 +191,7 @@ "Read more about the hotel": "Læs mere om hotellet", "Read more about wellness & exercise": "Read more about wellness & exercise", "Remove card from member profile": "Fjern kortet fra medlemsprofilen", - "Restaurant": "{restaurants, plural, one {#restaurant} other {#restaurants}}", + "Restaurant": "{count, plural, one {#Restaurant} other {#Restaurants}}", "Restaurant & Bar": "Restaurant & Bar", "Restaurants & Bars": "Restaurants & Bars", "Retype new password": "Gentag den nye adgangskode", diff --git a/i18n/dictionaries/de.json b/i18n/dictionaries/de.json index 8fc7fa563..90b0e76b8 100644 --- a/i18n/dictionaries/de.json +++ b/i18n/dictionaries/de.json @@ -23,7 +23,7 @@ "At the hotel": "Im Hotel", "Attractions": "Attraktionen", "Back to scandichotels.com": "Zurück zu scandichotels.com", - "Bar": "{bars, plural, one {#bar} other {#bars}}", + "Bar": "Bar", "Bed type": "Bettentyp", "Book": "Buchen", "Book reward night": "Bonusnacht buchen", @@ -201,7 +201,7 @@ "Read more about the hotel": "Lesen Sie mehr über das Hotel", "Read more about wellness & exercise": "Read more about wellness & exercise", "Remove card from member profile": "Karte aus dem Mitgliedsprofil entfernen", - "Restaurant": "{restaurants, plural, one {#restaurant} other {#restaurants}}", + "Restaurant": "{count, plural, one {#Restaurant} other {#Restaurants}}", "Restaurant & Bar": "Restaurant & Bar", "Restaurants & Bars": "Restaurants & Bars", "Retype new password": "Neues Passwort erneut eingeben", diff --git a/i18n/dictionaries/en.json b/i18n/dictionaries/en.json index 444f0890b..6e38a05e7 100644 --- a/i18n/dictionaries/en.json +++ b/i18n/dictionaries/en.json @@ -22,7 +22,7 @@ "At the hotel": "At the hotel", "Attractions": "Attractions", "Back to scandichotels.com": "Back to scandichotels.com", - "Bar": "{bars, plural, one {#bar} other {#bars}}", + "Bar": "Bar", "Bed type": "Bed type", "Book": "Book", "Book reward night": "Book reward night", @@ -197,7 +197,7 @@ "Read more about the hotel": "Read more about the hotel", "Read more about wellness & exercise": "Read more about wellness & exercise", "Remove card from member profile": "Remove card from member profile", - "Restaurant": "{restaurants, plural, one {#restaurant} other {#restaurants}}", + "Restaurant": "{count, plural, one {#Restaurant} other {#Restaurants}}", "Restaurant & Bar": "Restaurant & Bar", "Restaurants & Bars": "Restaurants & Bars", "Retype new password": "Retype new password", diff --git a/i18n/dictionaries/fi.json b/i18n/dictionaries/fi.json index db5ddf0a0..7a7ed2ae8 100644 --- a/i18n/dictionaries/fi.json +++ b/i18n/dictionaries/fi.json @@ -22,7 +22,7 @@ "At the hotel": "Hotellissa", "Attractions": "Nähtävyydet", "Back to scandichotels.com": "Takaisin scandichotels.com", - "Bar": "{bars, plural, one {#bar} other {#bars}}", + "Bar": "Bar", "Bed type": "Vuodetyyppi", "Book": "Varaa", "Book reward night": "Kirjapalkinto-ilta", @@ -191,7 +191,7 @@ "Read more about the hotel": "Lue lisää hotellista", "Read more about wellness & exercise": "Read more about wellness & exercise", "Remove card from member profile": "Poista kortti jäsenprofiilista", - "Restaurant": "{restaurants, plural, one {#ravintola} other {#restaurants}}", + "Restaurant": "{count, plural, one {#Ravintola} other {#Restaurants}}", "Restaurant & Bar": "Ravintola & Baari", "Restaurants & Bars": "Restaurants & Bars", "Retype new password": "Kirjoita uusi salasana uudelleen", diff --git a/i18n/dictionaries/no.json b/i18n/dictionaries/no.json index 3d9d06b4a..adac63ba0 100644 --- a/i18n/dictionaries/no.json +++ b/i18n/dictionaries/no.json @@ -22,7 +22,7 @@ "At the hotel": "På hotellet", "Attractions": "Attraksjoner", "Back to scandichotels.com": "Tilbake til scandichotels.com", - "Bar": "{bars, plural, one {#bar} other {#bars}}", + "Bar": "Bar", "Bed type": "Seng type", "Book": "Bestill", "Book reward night": "Bestill belønningskveld", @@ -190,7 +190,7 @@ "Read more about the hotel": "Les mer om hotellet", "Read more about wellness & exercise": "Read more about wellness & exercise", "Remove card from member profile": "Fjern kortet fra medlemsprofilen", - "Restaurant": "{restaurants, plural, one {#restaurant} other {#restaurants}}", + "Restaurant": "{count, plural, one {#Restaurant} other {#Restaurants}}", "Restaurant & Bar": "Restaurant & Bar", "Restaurants & Bars": "Restaurants & Bars", "Retype new password": "Skriv inn nytt passord på nytt", diff --git a/i18n/dictionaries/sv.json b/i18n/dictionaries/sv.json index f6b502b00..d257ec189 100644 --- a/i18n/dictionaries/sv.json +++ b/i18n/dictionaries/sv.json @@ -22,7 +22,7 @@ "At the hotel": "På hotellet", "Attractions": "Sevärdheter", "Back to scandichotels.com": "Tillbaka till scandichotels.com", - "Bar": "{bars, plural, one {#bar} other {#bars}}", + "Bar": "Bar", "Bed type": "Sängtyp", "Book": "Boka", "Book reward night": "Boka frinatt", @@ -192,7 +192,7 @@ "Read more about the hotel": "Läs mer om hotellet", "Read more about wellness & exercise": "Read more about wellness & exercise", "Remove card from member profile": "Ta bort kortet från medlemsprofilen", - "Restaurant": "{restaurants, plural, one {#restaurang} other {#restauranger}}", + "Restaurant": "{count, plural, one {#Restaurang} other {#Restauranger}}", "Restaurant & Bar": "Restaurang & Bar", "Restaurants & Bars": "Restaurants & Bars", "Retype new password": "Upprepa nytt lösenord", From c7146e01a7058fbaed2925cdfd54d7d145534e00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matilda=20Landstr=C3=B6m?= Date: Tue, 1 Oct 2024 15:43:56 +0200 Subject: [PATCH 22/30] fix(SW-302): update handling of activity card --- .../ContentType/HotelPage/Facilities/index.tsx | 13 +++++++++++++ .../ContentType/HotelPage/TabNavigation/index.tsx | 2 +- components/ContentType/HotelPage/index.tsx | 8 +++----- lib/graphql/Query/HotelPage/HotelPage.graphql | 15 +++++---------- utils/facilityCards.ts | 15 +++++++-------- 5 files changed, 29 insertions(+), 24 deletions(-) diff --git a/components/ContentType/HotelPage/Facilities/index.tsx b/components/ContentType/HotelPage/Facilities/index.tsx index 04245c573..2b74c629d 100644 --- a/components/ContentType/HotelPage/Facilities/index.tsx +++ b/components/ContentType/HotelPage/Facilities/index.tsx @@ -1,4 +1,7 @@ +import { activities } from "@/constants/routes/hotelPageParams" + import SectionContainer from "@/components/Section/Container" +import { getLang } from "@/i18n/serverContext" import CardGrid from "./CardGrid" @@ -10,6 +13,16 @@ import type { } from "@/types/components/hotelPage/facilities" export default async function Facilities({ facilities }: FacilityProps) { + const lang = getLang() + + // Put activities card at the end + const activitiesIdx = facilities.findIndex( + (facility) => facility[0].id == activities[lang] + ) + if (activitiesIdx != -1) { + facilities.push(facilities.splice(activitiesIdx, 1)[0]) + } + return ( {facilities.map((facilityCards: FacilityCards, idx: number) => ( diff --git a/components/ContentType/HotelPage/TabNavigation/index.tsx b/components/ContentType/HotelPage/TabNavigation/index.tsx index b14476189..346db0521 100644 --- a/components/ContentType/HotelPage/TabNavigation/index.tsx +++ b/components/ContentType/HotelPage/TabNavigation/index.tsx @@ -23,7 +23,7 @@ export default function TabNavigation({ restaurantTitle }: TabNavigationProps) { { href: HotelHashValues.rooms, text: intl.formatMessage({ id: "Rooms" }) }, { href: HotelHashValues.restaurant, - text: intl.formatMessage({ id: restaurantTitle }), + text: intl.formatMessage({ id: restaurantTitle }, { count: 1 }), }, { href: HotelHashValues.meetings, diff --git a/components/ContentType/HotelPage/index.tsx b/components/ContentType/HotelPage/index.tsx index 66b5bb46d..b48f97b62 100644 --- a/components/ContentType/HotelPage/index.tsx +++ b/components/ContentType/HotelPage/index.tsx @@ -51,11 +51,9 @@ export default async function HotelPage() { facilityCards, } = hotelData - const facilities = await setFacilityCards( - facilityCards, - hotelDetailedFacilities - ) - //activitiesCard && facilities.push(setActivityCard(activitiesCard)) + const facilities = setFacilityCards(facilityCards, hotelDetailedFacilities) + + activitiesCard && facilities.push(setActivityCard(activitiesCard)) const topThreePois = pointsOfInterest.slice(0, 3) const coordinates = { diff --git a/lib/graphql/Query/HotelPage/HotelPage.graphql b/lib/graphql/Query/HotelPage/HotelPage.graphql index dee41c6a8..9e90f069c 100644 --- a/lib/graphql/Query/HotelPage/HotelPage.graphql +++ b/lib/graphql/Query/HotelPage/HotelPage.graphql @@ -1,11 +1,13 @@ +#import "../../Fragments/PageLink/ContentPageLink.graphql" + query GetHotelPage($locale: String!, $uid: String!) { hotel_page(locale: $locale, uid: $uid) { hotel_page_id title url content { + __typename ... on HotelPageContentUpcomingActivitiesCard { - __typename upcoming_activities_card { background_image cta_text @@ -16,15 +18,8 @@ query GetHotelPage($locale: String!, $uid: String!) { hotel_page_activities_content_pageConnection { edges { node { - ... on ContentPage { - url - web { - original_url - } - system { - locale - } - } + __typename + ...ContentPageLink } } } diff --git a/utils/facilityCards.ts b/utils/facilityCards.ts index 578237f55..051679e9a 100644 --- a/utils/facilityCards.ts +++ b/utils/facilityCards.ts @@ -1,4 +1,5 @@ import { + activities, meetingsAndConferences, restaurantAndBar, wellnessAndExercise, @@ -24,14 +25,15 @@ type ActivityCard = { heading: string body_text: string cta_text: string - contentPage: Array<{ href: string }> + contentPage: { href: string } } export function setActivityCard(activitiesCard: ActivityCard): FacilityCards { + const lang = getLang() const hasImage = activitiesCard.background_image return [ { - id: "activities", + id: activities[lang], theme: hasImage ? "image" : "primaryDark", scriptedTopTitle: activitiesCard.scripted_title, heading: activitiesCard.heading, @@ -39,7 +41,7 @@ export function setActivityCard(activitiesCard: ActivityCard): FacilityCards { backgroundImage: hasImage ? activitiesCard.background_image : undefined, primaryButton: hasImage ? { - href: activitiesCard.contentPage[0].href, + href: activitiesCard.contentPage.href, title: activitiesCard.cta_text, isExternal: false, } @@ -47,7 +49,7 @@ export function setActivityCard(activitiesCard: ActivityCard): FacilityCards { secondaryButton: hasImage ? undefined : { - href: activitiesCard.contentPage[0].href, + href: activitiesCard.contentPage.href, title: activitiesCard.cta_text, isExternal: false, }, @@ -75,10 +77,7 @@ async function setCardProps( return card } -export async function setFacilityCards( - facilities: Facility[], - amenities: Amenities -) { +export function setFacilityCards(facilities: Facility[], amenities: Amenities) { const lang = getLang() const cards: Facilities = [] From 22f3656b92c87fc1263bf73d9d6ad0fe57d48f47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matilda=20Landstr=C3=B6m?= Date: Wed, 2 Oct 2024 10:07:28 +0200 Subject: [PATCH 23/30] refactor(SW-296) --- .../ContentType/HotelPage/AmenitiesList/index.tsx | 6 ++---- .../HotelPage/Facilities/CardGrid/index.tsx | 9 ++------- components/ContentType/HotelPage/Facilities/index.tsx | 8 ++++---- components/ContentType/HotelPage/index.tsx | 4 ++-- components/TempDesignSystem/Card/CardImage/index.tsx | 10 ++-------- server/routers/hotels/output.ts | 1 - types/components/cardImage.ts | 2 +- types/components/hotelPage/amenities.ts | 5 +++++ types/components/image.ts | 1 + utils/facilityCards.ts | 8 +++++--- 10 files changed, 24 insertions(+), 30 deletions(-) create mode 100644 types/components/hotelPage/amenities.ts diff --git a/components/ContentType/HotelPage/AmenitiesList/index.tsx b/components/ContentType/HotelPage/AmenitiesList/index.tsx index 06483f434..ff4ef9110 100644 --- a/components/ContentType/HotelPage/AmenitiesList/index.tsx +++ b/components/ContentType/HotelPage/AmenitiesList/index.tsx @@ -10,13 +10,11 @@ import { getLang } from "@/i18n/serverContext" import styles from "./amenitiesList.module.css" -import type { Amenities } from "@/types/hotel" +import type { AmentiesListProps } from "@/types/components/hotelPage/amenities" export default async function AmenitiesList({ detailedFacilities, -}: { - detailedFacilities: Amenities -}) { +}: AmentiesListProps) { const intl = await getIntl() const sortedAmenities = detailedFacilities .sort((a, b) => b.sortOrder - a.sortOrder) diff --git a/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx b/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx index 924d2c1ed..4a587d1ae 100644 --- a/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx +++ b/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx @@ -24,15 +24,10 @@ export default async function CardGrid({ facilities }: CardGridProps) { return (
- {facilities.map((card: CardProps, idx: number) => ( + {facilities.map((card: CardProps) => ( facility[0].id == activities[lang] + (facility) => facility[0].id === activities[lang] ) - if (activitiesIdx != -1) { + if (activitiesIdx !== -1) { facilities.push(facilities.splice(activitiesIdx, 1)[0]) } return ( - {facilities.map((facilityCards: FacilityCards, idx: number) => ( - + {facilities.map((facilityCards: FacilityCards) => ( + ))} ) diff --git a/components/ContentType/HotelPage/index.tsx b/components/ContentType/HotelPage/index.tsx index b48f97b62..a66a7afb7 100644 --- a/components/ContentType/HotelPage/index.tsx +++ b/components/ContentType/HotelPage/index.tsx @@ -51,9 +51,9 @@ export default async function HotelPage() { facilityCards, } = hotelData - const facilities = setFacilityCards(facilityCards, hotelDetailedFacilities) - + const facilities = setFacilityCards(facilityCards) activitiesCard && facilities.push(setActivityCard(activitiesCard)) + const topThreePois = pointsOfInterest.slice(0, 3) const coordinates = { diff --git a/components/TempDesignSystem/Card/CardImage/index.tsx b/components/TempDesignSystem/Card/CardImage/index.tsx index 876316c8c..dc9c4f7f9 100644 --- a/components/TempDesignSystem/Card/CardImage/index.tsx +++ b/components/TempDesignSystem/Card/CardImage/index.tsx @@ -15,16 +15,10 @@ export default function CardImage({
{imageCards.map( - ({ backgroundImage }, idx: Number) => + ({ backgroundImage }) => backgroundImage && ( {backgroundImage.title} & { id: string } diff --git a/types/components/cardImage.ts b/types/components/cardImage.ts index 6ba7838eb..0693fad65 100644 --- a/types/components/cardImage.ts +++ b/types/components/cardImage.ts @@ -1,6 +1,6 @@ import type { CardProps } from "@/components/TempDesignSystem/Card/card" export interface CardImageProps extends React.HTMLAttributes { - card: CardProps | undefined + card?: CardProps imageCards: Pick[] } diff --git a/types/components/hotelPage/amenities.ts b/types/components/hotelPage/amenities.ts new file mode 100644 index 000000000..419a850a3 --- /dev/null +++ b/types/components/hotelPage/amenities.ts @@ -0,0 +1,5 @@ +import type { Amenities } from "@/types/hotel" + +export type AmentiesListProps = { + detailedFacilities: Amenities +} diff --git a/types/components/image.ts b/types/components/image.ts index 0284eaa29..972c521d6 100644 --- a/types/components/image.ts +++ b/types/components/image.ts @@ -1,4 +1,5 @@ export type ApiImage = { + id: string url: string title: string meta: { diff --git a/utils/facilityCards.ts b/utils/facilityCards.ts index 051679e9a..d2897d1df 100644 --- a/utils/facilityCards.ts +++ b/utils/facilityCards.ts @@ -77,7 +77,7 @@ async function setCardProps( return card } -export function setFacilityCards(facilities: Facility[], amenities: Amenities) { +export function setFacilityCards(facilities: Facility[]) { const lang = getLang() const cards: Facilities = [] @@ -88,6 +88,7 @@ export function setFacilityCards(facilities: Facility[], amenities: Amenities) { facility.heroImages.slice(0, 2).forEach((image) => { // Can be a maximum 2 images per grid const img: CardProps = {} + img.id = image.imageSizes.large ;(img.backgroundImage = { url: image.imageSizes.large, title: image.metaData.title, @@ -95,6 +96,7 @@ export function setFacilityCards(facilities: Facility[], amenities: Amenities) { alt: image.metaData.altText, caption: image.metaData.altText_En, }, + id: image.imageSizes.large, }), (img.theme = "image") grid.push(img) @@ -143,10 +145,10 @@ export function setFacilityCards(facilities: Facility[], amenities: Amenities) { export function getRestaurantHeading(amenities: Amenities): RestaurantHeadings { const hasBar = amenities.some( (facility) => - facility.id == FacilityIds.bar || facility.id == FacilityIds.rooftopBar + facility.id === FacilityIds.bar || facility.id === FacilityIds.rooftopBar ) const hasRestaurant = amenities.some( - (facility) => facility.id == FacilityIds.restaurant + (facility) => facility.id === FacilityIds.restaurant ) if (hasBar && hasRestaurant) { From 0fa8251cd33a55be63e36c822537fcf2d0edd9e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matilda=20Landstr=C3=B6m?= Date: Thu, 3 Oct 2024 16:42:53 +0200 Subject: [PATCH 24/30] refactor(SW-302 --- .../HotelPage/Facilities/CardGrid/index.tsx | 8 +- .../HotelPage/Facilities/index.tsx | 46 +++++++---- components/ContentType/HotelPage/index.tsx | 13 +--- server/routers/hotels/query.ts | 2 +- types/components/hotelPage/facilities.ts | 9 ++- utils/facilityCards.ts | 78 ++++++++----------- 6 files changed, 78 insertions(+), 78 deletions(-) diff --git a/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx b/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx index 4a587d1ae..fdf40e35f 100644 --- a/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx +++ b/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx @@ -8,9 +8,9 @@ import styles from "./cardGrid.module.css" import type { CardGridProps } from "@/types/components/hotelPage/facilities" import type { CardProps } from "@/components/TempDesignSystem/Card/card" -export default async function CardGrid({ facilities }: CardGridProps) { - const imageCard = sortCards(facilities) - const nrCards = facilities.length +export default function CardGrid({ facilityCardGid }: CardGridProps) { + const imageCard = sortCards(facilityCardGid) + const nrCards = facilityCardGid.length function getCardClassName(card: CardProps): string { if (nrCards === 1) { @@ -24,7 +24,7 @@ export default async function CardGrid({ facilities }: CardGridProps) { return (
- {facilities.map((card: CardProps) => ( + {facilityCardGid.map((card: CardProps) => ( facility[0].id === activities[lang] - ) - if (activitiesIdx !== -1) { - facilities.push(facilities.splice(activitiesIdx, 1)[0]) - } + const facilityCardGrids = setFacilityCardGrids(facilities) + const updatedActivitiesCard = + activitiesCard && setActivityCard(activitiesCard) + + facilityCardGrids.map((cardGrid: FacilityCards) => { + cardGrid.map((card: CardProps) => { + card.heading = card.heading && intl.formatMessage({ id: card.heading }) + card.secondaryButton + ? (card.secondaryButton.title = intl.formatMessage({ + id: card.secondaryButton.title, + })) + : null + }) + }) return ( - {facilities.map((facilityCards: FacilityCards) => ( - + {facilityCardGrids.map((cardGrid: FacilityCards) => ( + ))} + {updatedActivitiesCard && ( + + )} ) } diff --git a/components/ContentType/HotelPage/index.tsx b/components/ContentType/HotelPage/index.tsx index a66a7afb7..04a56a865 100644 --- a/components/ContentType/HotelPage/index.tsx +++ b/components/ContentType/HotelPage/index.tsx @@ -6,11 +6,7 @@ import SidePeekProvider from "@/components/SidePeekProvider" import SidePeek from "@/components/TempDesignSystem/SidePeek" import { getIntl } from "@/i18n" import { getLang } from "@/i18n/serverContext" -import { - getRestaurantHeading, - setActivityCard, - setFacilityCards, -} from "@/utils/facilityCards" +import { getRestaurantHeading } from "@/utils/facilityCards" import DynamicMap from "./Map/DynamicMap" import MapCard from "./Map/MapCard" @@ -48,12 +44,9 @@ export default async function HotelPage() { roomCategories, activitiesCard, pointsOfInterest, - facilityCards, + facilities, } = hotelData - const facilities = setFacilityCards(facilityCards) - activitiesCard && facilities.push(setActivityCard(activitiesCard)) - const topThreePois = pointsOfInterest.slice(0, 3) const coordinates = { @@ -126,7 +119,7 @@ export default async function HotelPage() {
- + {googleMapsApiKey ? ( <> diff --git a/server/routers/hotels/query.ts b/server/routers/hotels/query.ts index 0fae3ff79..2f30ae397 100644 --- a/server/routers/hotels/query.ts +++ b/server/routers/hotels/query.ts @@ -246,7 +246,7 @@ export const hotelQueryRouter = router({ pointsOfInterest: hotelAttributes.pointsOfInterest, roomCategories, activitiesCard: activities?.upcoming_activities_card, - facilityCards: facilities, + facilities, } }), availability: router({ diff --git a/types/components/hotelPage/facilities.ts b/types/components/hotelPage/facilities.ts index dbe27ea6a..41308837f 100644 --- a/types/components/hotelPage/facilities.ts +++ b/types/components/hotelPage/facilities.ts @@ -1,15 +1,18 @@ +import type { Facility } from "@/types/hotel" +import type { ActivityCard } from "@/types/trpc/routers/contentstack/hotelPage" import type { CardProps } from "@/components/TempDesignSystem/Card/card" export type FacilityCards = CardProps[] export type Facilities = FacilityCards[] -export type FacilityProps = { - facilities: Facilities +export type FacilitiesProps = { + facilities: Facility[] + activitiesCard?: ActivityCard } export type CardGridProps = { - facilities: FacilityCards + facilityCardGid: FacilityCards } export enum FacilityEnum { diff --git a/utils/facilityCards.ts b/utils/facilityCards.ts index d2897d1df..82b859b8b 100644 --- a/utils/facilityCards.ts +++ b/utils/facilityCards.ts @@ -5,79 +5,67 @@ import { wellnessAndExercise, } from "@/constants/routes/hotelPageParams" -import { getIntl } from "@/i18n" import { getLang } from "@/i18n/serverContext" import { type Facilities, - type FacilityCards, FacilityEnum, FacilityIds, RestaurantHeadings, } from "@/types/components/hotelPage/facilities" -import type { ImageVaultAsset } from "@/types/components/imageVault" import type { Amenities, Facility } from "@/types/hotel" +import { ActivityCard } from "@/types/trpc/routers/contentstack/hotelPage" import type { CardProps } from "@/components/TempDesignSystem/Card/card" -type ActivityCard = { - background_image?: ImageVaultAsset - scripted_title?: string - heading: string - body_text: string - cta_text: string - contentPage: { href: string } -} - -export function setActivityCard(activitiesCard: ActivityCard): FacilityCards { +export function setActivityCard(activitiesCard: ActivityCard): CardProps { const lang = getLang() const hasImage = activitiesCard.background_image - return [ - { - id: activities[lang], - theme: hasImage ? "image" : "primaryDark", - scriptedTopTitle: activitiesCard.scripted_title, - heading: activitiesCard.heading, - bodyText: activitiesCard.body_text, - backgroundImage: hasImage ? activitiesCard.background_image : undefined, - primaryButton: hasImage - ? { - href: activitiesCard.contentPage.href, - title: activitiesCard.cta_text, - isExternal: false, - } - : undefined, - secondaryButton: hasImage - ? undefined - : { - href: activitiesCard.contentPage.href, - title: activitiesCard.cta_text, - isExternal: false, - }, - }, - ] + + const updatedCard: CardProps = { + id: activities[lang], + theme: hasImage ? "image" : "primaryDark", + scriptedTopTitle: activitiesCard.scripted_title, + heading: activitiesCard.heading, + bodyText: activitiesCard.body_text, + backgroundImage: hasImage ? activitiesCard.background_image : undefined, + primaryButton: hasImage + ? { + href: activitiesCard.contentPage.href, + title: activitiesCard.cta_text, + isExternal: false, + } + : undefined, + secondaryButton: hasImage + ? undefined + : { + href: activitiesCard.contentPage.href, + title: activitiesCard.cta_text, + isExternal: false, + }, + } + return updatedCard } -async function setCardProps( +function setCardProps( theme: CardProps["theme"], heading: string, buttonText: string, href: string ) { - const intl = await getIntl() const card: CardProps = {} card.theme = theme card.id = href - card.heading = intl.formatMessage({ id: heading }) + card.heading = heading card.secondaryButton = { href: `?s=${href}`, - title: intl.formatMessage({ id: buttonText }), + title: buttonText, isExternal: false, } return card } -export function setFacilityCards(facilities: Facility[]) { +export function setFacilityCardGrids(facilities: Facility[]): Facilities { const lang = getLang() const cards: Facilities = [] @@ -104,7 +92,7 @@ export function setFacilityCards(facilities: Facility[]) { switch (facility.id) { case FacilityEnum.wellness: - card = await setCardProps( + card = setCardProps( "one", "Sauna and gym", "Read more about wellness & exercise", @@ -115,7 +103,7 @@ export function setFacilityCards(facilities: Facility[]) { break case FacilityEnum.conference: - card = await setCardProps( + card = setCardProps( "primaryDim", "Events that make an impression", "About meetings & conferences", @@ -127,7 +115,7 @@ export function setFacilityCards(facilities: Facility[]) { case FacilityEnum.restaurant: //const title = getRestaurantHeading(amenities) // TODO will be used later - card = await setCardProps( + card = setCardProps( "primaryDark", "Enjoy relaxed restaurant experiences", "Read more & book a table", From cdb51bae736882a802bafa62dd568acbd2316c39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matilda=20Landstr=C3=B6m?= Date: Mon, 7 Oct 2024 13:47:23 +0200 Subject: [PATCH 25/30] refactor(SW-302): update typings --- .../CardGrid/ActivitiesCardGrid.tsx | 49 +++++++++ .../Facilities/CardGrid/cardGrid.module.css | 16 +-- .../HotelPage/Facilities/CardGrid/index.tsx | 32 +++--- .../HotelPage/Facilities/index.tsx | 41 ++++---- .../TempDesignSystem/Card/CardImage/index.tsx | 2 +- types/components/cardImage.ts | 6 +- types/components/hotelPage/facilities.ts | 29 +++++- utils/facilityCards.ts | 99 ++++++++----------- utils/imageCard.ts | 37 ++++--- 9 files changed, 186 insertions(+), 125 deletions(-) create mode 100644 components/ContentType/HotelPage/Facilities/CardGrid/ActivitiesCardGrid.tsx diff --git a/components/ContentType/HotelPage/Facilities/CardGrid/ActivitiesCardGrid.tsx b/components/ContentType/HotelPage/Facilities/CardGrid/ActivitiesCardGrid.tsx new file mode 100644 index 000000000..f8984cfc0 --- /dev/null +++ b/components/ContentType/HotelPage/Facilities/CardGrid/ActivitiesCardGrid.tsx @@ -0,0 +1,49 @@ +import { activities } from "@/constants/routes/hotelPageParams" + +import Card from "@/components/TempDesignSystem/Card" +import CardImage from "@/components/TempDesignSystem/Card/CardImage" +import Grids from "@/components/TempDesignSystem/Grids" +import { getLang } from "@/i18n/serverContext" + +import styles from "./cardGrid.module.css" + +import type { ActivityCard } from "@/types/trpc/routers/contentstack/hotelPage" +import type { CardProps } from "@/components/TempDesignSystem/Card/card" + +export default function ActivitiesCardGrid(activitiesCard: ActivityCard) { + const lang = getLang() + const hasImage = activitiesCard.background_image + + const updatedCard: CardProps = { + id: activities[lang], + theme: hasImage ? "image" : "primaryDark", + scriptedTopTitle: activitiesCard.scripted_title, + heading: activitiesCard.heading, + bodyText: activitiesCard.body_text, + backgroundImage: hasImage ? activitiesCard.background_image : undefined, + primaryButton: hasImage + ? { + href: activitiesCard.contentPage.href, + title: activitiesCard.cta_text, + isExternal: false, + } + : undefined, + secondaryButton: hasImage + ? undefined + : { + href: activitiesCard.contentPage.href, + title: activitiesCard.cta_text, + isExternal: false, + }, + } + return ( +
+ + + + + + +
+ ) +} diff --git a/components/ContentType/HotelPage/Facilities/CardGrid/cardGrid.module.css b/components/ContentType/HotelPage/Facilities/CardGrid/cardGrid.module.css index 515b772e3..7c97fb3bd 100644 --- a/components/ContentType/HotelPage/Facilities/CardGrid/cardGrid.module.css +++ b/components/ContentType/HotelPage/Facilities/CardGrid/cardGrid.module.css @@ -10,23 +10,23 @@ grid-column: span 3; } -.desktopGrid { - display: none !important; +section .desktopGrid { + display: none; } -.mobileGrid { - display: grid !important; +section .mobileGrid { + display: grid; gap: var(--Spacing-x-quarter); } @media screen and (min-width: 768px) { - .desktopGrid { - display: grid !important; + section .desktopGrid { + display: grid; gap: var(--Spacing-x1); grid-template-columns: repeat(3, 1fr); } - .mobileGrid { - display: none !important; + section .mobileGrid { + display: none; } } diff --git a/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx b/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx index fdf40e35f..464fadd4c 100644 --- a/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx +++ b/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx @@ -1,39 +1,39 @@ import Card from "@/components/TempDesignSystem/Card" import CardImage from "@/components/TempDesignSystem/Card/CardImage" import Grids from "@/components/TempDesignSystem/Grids" +import { isFacilityCard } from "@/utils/facilityCards" import { sortCards } from "@/utils/imageCard" import styles from "./cardGrid.module.css" -import type { CardGridProps } from "@/types/components/hotelPage/facilities" -import type { CardProps } from "@/components/TempDesignSystem/Card/card" +import type { + CardGridProps, + FacilityCardType, +} from "@/types/components/hotelPage/facilities" -export default function CardGrid({ facilityCardGid }: CardGridProps) { - const imageCard = sortCards(facilityCardGid) - const nrCards = facilityCardGid.length +export default function FacilitiesCardGrid({ + facilitiesCardGrid, +}: CardGridProps) { + const imageCard = sortCards(facilitiesCardGrid) + const nrCards = facilitiesCardGrid.length - function getCardClassName(card: CardProps): string { + function getCardClassName(card: FacilityCardType): string { if (nrCards === 1) { return styles.spanThree - } else if (nrCards === 2 && card.backgroundImage) { + } else if (nrCards === 2 && !isFacilityCard(card)) { return styles.spanTwo } return styles.spanOne } return ( -
+
- {facilityCardGid.map((card: CardProps) => ( + {facilitiesCardGrid.map((card: FacilityCardType) => ( ))} diff --git a/components/ContentType/HotelPage/Facilities/index.tsx b/components/ContentType/HotelPage/Facilities/index.tsx index 2ecc42670..ab8f6a87f 100644 --- a/components/ContentType/HotelPage/Facilities/index.tsx +++ b/components/ContentType/HotelPage/Facilities/index.tsx @@ -1,16 +1,17 @@ import SectionContainer from "@/components/Section/Container" import { getIntl } from "@/i18n" -import { setActivityCard, setFacilityCardGrids } from "@/utils/facilityCards" +import { isFacilityCard, setFacilityCardGrids } from "@/utils/facilityCards" -import CardGrid from "./CardGrid" +import ActivitiesCardGrid from "./CardGrid/ActivitiesCardGrid" +import FacilitiesCardGrid from "./CardGrid" import styles from "./facilities.module.css" import type { FacilitiesProps, - FacilityCards, + FacilityCardType, + FacilityGrid, } from "@/types/components/hotelPage/facilities" -import type { CardProps } from "@/components/TempDesignSystem/Card/card" export default async function Facilities({ facilities, @@ -19,31 +20,27 @@ export default async function Facilities({ const intl = await getIntl() const facilityCardGrids = setFacilityCardGrids(facilities) - const updatedActivitiesCard = - activitiesCard && setActivityCard(activitiesCard) - facilityCardGrids.map((cardGrid: FacilityCards) => { - cardGrid.map((card: CardProps) => { - card.heading = card.heading && intl.formatMessage({ id: card.heading }) - card.secondaryButton - ? (card.secondaryButton.title = intl.formatMessage({ - id: card.secondaryButton.title, - })) - : null + facilityCardGrids.map((cardGrid: FacilityGrid) => { + cardGrid.map((card: FacilityCardType) => { + if (isFacilityCard(card)) { + card.heading = intl.formatMessage({ id: card.heading }) + card.secondaryButton.title = intl.formatMessage({ + id: card.secondaryButton.title, + }) + } }) }) return ( - {facilityCardGrids.map((cardGrid: FacilityCards) => ( - - ))} - {updatedActivitiesCard && ( - ( + - )} + ))} + {activitiesCard && } ) } diff --git a/components/TempDesignSystem/Card/CardImage/index.tsx b/components/TempDesignSystem/Card/CardImage/index.tsx index dc9c4f7f9..9c3233e87 100644 --- a/components/TempDesignSystem/Card/CardImage/index.tsx +++ b/components/TempDesignSystem/Card/CardImage/index.tsx @@ -14,7 +14,7 @@ export default function CardImage({ return (
- {imageCards.map( + {imageCards?.map( ({ backgroundImage }) => backgroundImage && ( { - card?: CardProps - imageCards: Pick[] + card: FacilityCard | CardProps + imageCards?: FacilityImage[] } diff --git a/types/components/hotelPage/facilities.ts b/types/components/hotelPage/facilities.ts index 41308837f..98a6a444d 100644 --- a/types/components/hotelPage/facilities.ts +++ b/types/components/hotelPage/facilities.ts @@ -2,17 +2,36 @@ import type { Facility } from "@/types/hotel" import type { ActivityCard } from "@/types/trpc/routers/contentstack/hotelPage" import type { CardProps } from "@/components/TempDesignSystem/Card/card" -export type FacilityCards = CardProps[] - -export type Facilities = FacilityCards[] - export type FacilitiesProps = { facilities: Facility[] activitiesCard?: ActivityCard } +export type FacilityImage = { + backgroundImage: CardProps["backgroundImage"] + theme: CardProps["theme"] + id: string +} + +export type FacilityCard = { + secondaryButton: { + href: string + title: string + openInNewTab?: boolean + isExternal: boolean + } + heading: string + scriptedTopTitle: string + theme: CardProps["theme"] + id: string +} + +export type FacilityCardType = FacilityImage | FacilityCard +export type FacilityGrid = FacilityCardType[] +export type Facilities = FacilityGrid[] + export type CardGridProps = { - facilityCardGid: FacilityCards + facilitiesCardGrid: FacilityGrid } export enum FacilityEnum { diff --git a/utils/facilityCards.ts b/utils/facilityCards.ts index 82b859b8b..eb002c93b 100644 --- a/utils/facilityCards.ts +++ b/utils/facilityCards.ts @@ -1,5 +1,4 @@ import { - activities, meetingsAndConferences, restaurantAndBar, wellnessAndExercise, @@ -9,60 +8,43 @@ import { getLang } from "@/i18n/serverContext" import { type Facilities, + type FacilityCard, + type FacilityCardType, FacilityEnum, + type FacilityGrid, FacilityIds, + type FacilityImage, RestaurantHeadings, } from "@/types/components/hotelPage/facilities" import type { Amenities, Facility } from "@/types/hotel" -import { ActivityCard } from "@/types/trpc/routers/contentstack/hotelPage" import type { CardProps } from "@/components/TempDesignSystem/Card/card" -export function setActivityCard(activitiesCard: ActivityCard): CardProps { - const lang = getLang() - const hasImage = activitiesCard.background_image +export function isFacilityCard(card: FacilityCardType): card is FacilityCard { + return (card as FacilityCard).heading != undefined +} - const updatedCard: CardProps = { - id: activities[lang], - theme: hasImage ? "image" : "primaryDark", - scriptedTopTitle: activitiesCard.scripted_title, - heading: activitiesCard.heading, - bodyText: activitiesCard.body_text, - backgroundImage: hasImage ? activitiesCard.background_image : undefined, - primaryButton: hasImage - ? { - href: activitiesCard.contentPage.href, - title: activitiesCard.cta_text, - isExternal: false, - } - : undefined, - secondaryButton: hasImage - ? undefined - : { - href: activitiesCard.contentPage.href, - title: activitiesCard.cta_text, - isExternal: false, - }, - } - return updatedCard +export function isFacilityImage(card: FacilityCardType): card is FacilityCard { + return (card as FacilityImage).backgroundImage != undefined } function setCardProps( theme: CardProps["theme"], heading: string, buttonText: string, - href: string -) { - const card: CardProps = {} - - card.theme = theme - card.id = href - card.heading = heading - card.secondaryButton = { - href: `?s=${href}`, - title: buttonText, - isExternal: false, + href: string, + scriptedTopTitle: string +): FacilityCard { + return { + theme: theme, + id: href, + heading: heading, + scriptedTopTitle: scriptedTopTitle, + secondaryButton: { + href: `?s=${href}`, + title: buttonText, + isExternal: false, + }, } - return card } export function setFacilityCardGrids(facilities: Facility[]): Facilities { @@ -70,23 +52,24 @@ export function setFacilityCardGrids(facilities: Facility[]): Facilities { const cards: Facilities = [] facilities.forEach(async (facility) => { - const grid: Array = [] - let card: CardProps = {} + const grid: FacilityGrid = [] + let card: FacilityCard facility.heroImages.slice(0, 2).forEach((image) => { // Can be a maximum 2 images per grid - const img: CardProps = {} - img.id = image.imageSizes.large - ;(img.backgroundImage = { - url: image.imageSizes.large, - title: image.metaData.title, - meta: { - alt: image.metaData.altText, - caption: image.metaData.altText_En, + const img: FacilityImage = { + backgroundImage: { + url: image.imageSizes.large, + title: image.metaData.title, + meta: { + alt: image.metaData.altText, + caption: image.metaData.altText_En, + }, + id: image.imageSizes.large, }, + theme: "image", id: image.imageSizes.large, - }), - (img.theme = "image") + } grid.push(img) }) @@ -96,9 +79,9 @@ export function setFacilityCardGrids(facilities: Facility[]): Facilities { "one", "Sauna and gym", "Read more about wellness & exercise", - wellnessAndExercise[lang] + wellnessAndExercise[lang], + facility.headingText ) - card.scriptedTopTitle = facility.headingText grid.unshift(card) break @@ -107,9 +90,9 @@ export function setFacilityCardGrids(facilities: Facility[]): Facilities { "primaryDim", "Events that make an impression", "About meetings & conferences", - meetingsAndConferences[lang] + meetingsAndConferences[lang], + facility.headingText ) - card.scriptedTopTitle = facility.headingText grid.push(card) break @@ -119,9 +102,9 @@ export function setFacilityCardGrids(facilities: Facility[]): Facilities { "primaryDark", "Enjoy relaxed restaurant experiences", "Read more & book a table", - restaurantAndBar[lang] + restaurantAndBar[lang], + facility.headingText ) - card.scriptedTopTitle = facility.headingText grid.unshift(card) break } diff --git a/utils/imageCard.ts b/utils/imageCard.ts index 84a75da18..ae646fb76 100644 --- a/utils/imageCard.ts +++ b/utils/imageCard.ts @@ -1,16 +1,27 @@ -import type { FacilityCards } from "@/types/components/hotelPage/facilities" -import type { CardProps } from "@/components/TempDesignSystem/Card/card" +import { isFacilityImage } from "./facilityCards" -export function sortCards(cards: FacilityCards) { - const sortedCards = cards.slice(0).sort((a: CardProps, b: CardProps) => { - if (!a.backgroundImage && b.backgroundImage) { - return 1 - } - if (a.backgroundImage && !b.backgroundImage) { - return -1 - } - return 0 - }) +import type { + FacilityCard, + FacilityCardType, + FacilityGrid, + FacilityImage, +} from "@/types/components/hotelPage/facilities" - return { card: sortedCards.pop(), images: sortedCards } +export function sortCards(cards: FacilityGrid) { + const sortedCards = cards + .slice(0) + .sort((a: FacilityCardType, b: FacilityCardType) => { + if (!isFacilityImage(a) && isFacilityImage(b)) { + return 1 + } + if (isFacilityImage(a) && !isFacilityImage(b)) { + return -1 + } + return 0 + }) + + return { + card: sortedCards.pop() as FacilityCard, + images: sortedCards as FacilityImage[], + } } From 038fa81de28f1fa6108bd091860b6b337854f9ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matilda=20Landstr=C3=B6m?= Date: Mon, 7 Oct 2024 13:58:11 +0200 Subject: [PATCH 26/30] refactor(SW-302) --- .../Facilities/CardGrid/ActivitiesCardGrid.tsx | 11 ++++------- .../contentstack/schemas/blocks/activitiesCard.ts | 10 +++++----- 2 files changed, 9 insertions(+), 12 deletions(-) diff --git a/components/ContentType/HotelPage/Facilities/CardGrid/ActivitiesCardGrid.tsx b/components/ContentType/HotelPage/Facilities/CardGrid/ActivitiesCardGrid.tsx index f8984cfc0..c1bf12c31 100644 --- a/components/ContentType/HotelPage/Facilities/CardGrid/ActivitiesCardGrid.tsx +++ b/components/ContentType/HotelPage/Facilities/CardGrid/ActivitiesCardGrid.tsx @@ -12,19 +12,16 @@ import type { CardProps } from "@/components/TempDesignSystem/Card/card" export default function ActivitiesCardGrid(activitiesCard: ActivityCard) { const lang = getLang() - const hasImage = activitiesCard.background_image + const hasImage = activitiesCard.backgroundImage const updatedCard: CardProps = { + ...activitiesCard, id: activities[lang], theme: hasImage ? "image" : "primaryDark", - scriptedTopTitle: activitiesCard.scripted_title, - heading: activitiesCard.heading, - bodyText: activitiesCard.body_text, - backgroundImage: hasImage ? activitiesCard.background_image : undefined, primaryButton: hasImage ? { href: activitiesCard.contentPage.href, - title: activitiesCard.cta_text, + title: activitiesCard.ctaText, isExternal: false, } : undefined, @@ -32,7 +29,7 @@ export default function ActivitiesCardGrid(activitiesCard: ActivityCard) { ? undefined : { href: activitiesCard.contentPage.href, - title: activitiesCard.cta_text, + title: activitiesCard.ctaText, isExternal: false, }, } diff --git a/server/routers/contentstack/schemas/blocks/activitiesCard.ts b/server/routers/contentstack/schemas/blocks/activitiesCard.ts index d98e985a7..0d4fba2b1 100644 --- a/server/routers/contentstack/schemas/blocks/activitiesCard.ts +++ b/server/routers/contentstack/schemas/blocks/activitiesCard.ts @@ -47,13 +47,13 @@ export const activitiesCard = z.object({ } } return { - background_image: data.background_image, - body_text: data.body_text, + backgroundImage: data.background_image, + bodyText: data.body_text, contentPage, - cta_text: data.cta_text, + ctaText: data.cta_text, heading: data.heading, - open_in_new_tab: !!data.open_in_new_tab, - scripted_title: data.scripted_title, + openInNewTab: !!data.open_in_new_tab, + scriptedTopTitle: data.scripted_title, } }), }) From df5b6be4f8c2ffbf018252c814f8c8e50216a375 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matilda=20Landstr=C3=B6m?= Date: Mon, 7 Oct 2024 14:13:17 +0200 Subject: [PATCH 27/30] refactor(SW-203): remove unneccesary code --- .../ContentType/HotelPage/Facilities/CardGrid/index.tsx | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx b/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx index 464fadd4c..7ed3452b0 100644 --- a/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx +++ b/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx @@ -30,12 +30,7 @@ export default function FacilitiesCardGrid({
{facilitiesCardGrid.map((card: FacilityCardType) => ( - + ))} From 150f0f0e4eeb9724f228bdca75e02ac95b58b1d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matilda=20Landstr=C3=B6m?= Date: Mon, 7 Oct 2024 17:30:24 +0200 Subject: [PATCH 28/30] refactor(SW-302) --- .../HotelPage/AmenitiesList/index.tsx | 4 +-- .../HotelPage/Facilities/CardGrid/index.tsx | 5 ++- .../HotelPage/Facilities/index.tsx | 32 ++++++++++++------- types/components/hotelPage/amenities.ts | 2 +- utils/facilityCards.ts | 32 ++++++++++++------- utils/imageCard.ts | 27 ---------------- 6 files changed, 46 insertions(+), 56 deletions(-) delete mode 100644 utils/imageCard.ts diff --git a/components/ContentType/HotelPage/AmenitiesList/index.tsx b/components/ContentType/HotelPage/AmenitiesList/index.tsx index ff4ef9110..27448827d 100644 --- a/components/ContentType/HotelPage/AmenitiesList/index.tsx +++ b/components/ContentType/HotelPage/AmenitiesList/index.tsx @@ -10,11 +10,11 @@ import { getLang } from "@/i18n/serverContext" import styles from "./amenitiesList.module.css" -import type { AmentiesListProps } from "@/types/components/hotelPage/amenities" +import type { AmenitiesListProps } from "@/types/components/hotelPage/amenities" export default async function AmenitiesList({ detailedFacilities, -}: AmentiesListProps) { +}: AmenitiesListProps) { const intl = await getIntl() const sortedAmenities = detailedFacilities .sort((a, b) => b.sortOrder - a.sortOrder) diff --git a/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx b/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx index 7ed3452b0..8bb1dff40 100644 --- a/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx +++ b/components/ContentType/HotelPage/Facilities/CardGrid/index.tsx @@ -1,8 +1,7 @@ import Card from "@/components/TempDesignSystem/Card" import CardImage from "@/components/TempDesignSystem/Card/CardImage" import Grids from "@/components/TempDesignSystem/Grids" -import { isFacilityCard } from "@/utils/facilityCards" -import { sortCards } from "@/utils/imageCard" +import { filterFacilityCards, isFacilityCard } from "@/utils/facilityCards" import styles from "./cardGrid.module.css" @@ -14,7 +13,7 @@ import type { export default function FacilitiesCardGrid({ facilitiesCardGrid, }: CardGridProps) { - const imageCard = sortCards(facilitiesCardGrid) + const imageCard = filterFacilityCards(facilitiesCardGrid) const nrCards = facilitiesCardGrid.length function getCardClassName(card: FacilityCardType): string { diff --git a/components/ContentType/HotelPage/Facilities/index.tsx b/components/ContentType/HotelPage/Facilities/index.tsx index ab8f6a87f..3f43cc328 100644 --- a/components/ContentType/HotelPage/Facilities/index.tsx +++ b/components/ContentType/HotelPage/Facilities/index.tsx @@ -8,6 +8,7 @@ import FacilitiesCardGrid from "./CardGrid" import styles from "./facilities.module.css" import type { + Facilities, FacilitiesProps, FacilityCardType, FacilityGrid, @@ -21,20 +22,29 @@ export default async function Facilities({ const facilityCardGrids = setFacilityCardGrids(facilities) - facilityCardGrids.map((cardGrid: FacilityGrid) => { - cardGrid.map((card: FacilityCardType) => { - if (isFacilityCard(card)) { - card.heading = intl.formatMessage({ id: card.heading }) - card.secondaryButton.title = intl.formatMessage({ - id: card.secondaryButton.title, - }) - } - }) - }) + const translatedFacilityGrids: Facilities = facilityCardGrids.map( + (cardGrid: FacilityGrid) => { + return cardGrid.map((card: FacilityCardType) => { + if (isFacilityCard(card)) { + return { + ...card, + heading: intl.formatMessage({ id: card.heading }), + secondaryButton: { + ...card.secondaryButton, + title: intl.formatMessage({ + id: card.secondaryButton.title, + }), + }, + } + } + return card + }) + } + ) return ( - {facilityCardGrids.map((cardGrid: FacilityGrid) => ( + {translatedFacilityGrids.map((cardGrid: FacilityGrid) => ( { - const grid: FacilityGrid = [] + const cards: Facilities = facilities.map((facility) => { let card: FacilityCard - facility.heroImages.slice(0, 2).forEach((image) => { + const grid: FacilityGrid = facility.heroImages.slice(0, 2).map((image) => { // Can be a maximum 2 images per grid const img: FacilityImage = { backgroundImage: { @@ -70,7 +68,7 @@ export function setFacilityCardGrids(facilities: Facility[]): Facilities { theme: "image", id: image.imageSizes.large, } - grid.push(img) + return img }) switch (facility.id) { @@ -108,7 +106,7 @@ export function setFacilityCardGrids(facilities: Facility[]): Facilities { grid.unshift(card) break } - cards.push(grid) + return grid }) return cards } @@ -131,3 +129,13 @@ export function getRestaurantHeading(amenities: Amenities): RestaurantHeadings { } return RestaurantHeadings.breakfastRestaurant } + +export function filterFacilityCards(cards: FacilityGrid) { + const card = cards.filter((card) => isFacilityCard(card)) + const images = cards.filter((card) => isFacilityImage(card)) + + return { + card: card[0] as FacilityCard, + images: images as FacilityImage[], + } +} diff --git a/utils/imageCard.ts b/utils/imageCard.ts deleted file mode 100644 index ae646fb76..000000000 --- a/utils/imageCard.ts +++ /dev/null @@ -1,27 +0,0 @@ -import { isFacilityImage } from "./facilityCards" - -import type { - FacilityCard, - FacilityCardType, - FacilityGrid, - FacilityImage, -} from "@/types/components/hotelPage/facilities" - -export function sortCards(cards: FacilityGrid) { - const sortedCards = cards - .slice(0) - .sort((a: FacilityCardType, b: FacilityCardType) => { - if (!isFacilityImage(a) && isFacilityImage(b)) { - return 1 - } - if (isFacilityImage(a) && !isFacilityImage(b)) { - return -1 - } - return 0 - }) - - return { - card: sortedCards.pop() as FacilityCard, - images: sortedCards as FacilityImage[], - } -} From e6b22b81f4506ce9589ef3f0e9a7f92f1e9b7049 Mon Sep 17 00:00:00 2001 From: Simon Emanuelsson Date: Thu, 3 Oct 2024 11:12:36 +0200 Subject: [PATCH 29/30] feat: select bed type --- .../hotelreservation/[section]/page.tsx | 17 ++-- .../(live)/@bookingwidget/loading.module.css | 4 + app/[lang]/(live)/@bookingwidget/loading.tsx | 11 +++ .../BedType/bedOptions.module.css | 7 ++ .../EnterDetails/BedType/index.tsx | 75 ++++++++++++++++++ .../EnterDetails/BedType/schema.ts | 7 ++ .../EnterDetails/Details/index.tsx | 3 +- components/Icons/KingBed.tsx | 27 +++++++ components/Icons/index.tsx | 1 + .../TempDesignSystem/Form/Card/Checkbox.tsx | 7 ++ .../TempDesignSystem/Form/Card/Radio.tsx | 7 ++ .../Form/{Checkbox => }/Card/card.module.css | 62 +++++++-------- components/TempDesignSystem/Form/Card/card.ts | 35 +++++++++ .../TempDesignSystem/Form/Card/index.tsx | 77 +++++++++++++++++++ .../Form/Checkbox/Card/card.ts | 14 ---- .../Form/Checkbox/Card/index.tsx | 65 ---------------- i18n/dictionaries/da.json | 18 ++++- i18n/dictionaries/de.json | 77 +++++++++++-------- i18n/dictionaries/en.json | 16 ++-- i18n/dictionaries/fi.json | 18 ++++- i18n/dictionaries/no.json | 18 ++++- i18n/dictionaries/sv.json | 18 ++++- .../icons/UI - Enter details/bed king.svg | 3 + types/components/enterDetails/bedType.ts | 5 ++ types/components/search.ts | 6 +- types/enums/bedType.ts | 4 + 26 files changed, 433 insertions(+), 169 deletions(-) create mode 100644 app/[lang]/(live)/@bookingwidget/loading.module.css create mode 100644 app/[lang]/(live)/@bookingwidget/loading.tsx create mode 100644 components/HotelReservation/EnterDetails/BedType/bedOptions.module.css create mode 100644 components/HotelReservation/EnterDetails/BedType/index.tsx create mode 100644 components/HotelReservation/EnterDetails/BedType/schema.ts create mode 100644 components/Icons/KingBed.tsx create mode 100644 components/TempDesignSystem/Form/Card/Checkbox.tsx create mode 100644 components/TempDesignSystem/Form/Card/Radio.tsx rename components/TempDesignSystem/Form/{Checkbox => }/Card/card.module.css (50%) create mode 100644 components/TempDesignSystem/Form/Card/card.ts create mode 100644 components/TempDesignSystem/Form/Card/index.tsx delete mode 100644 components/TempDesignSystem/Form/Checkbox/Card/card.ts delete mode 100644 components/TempDesignSystem/Form/Checkbox/Card/index.tsx create mode 100644 public/_static/icons/UI - Enter details/bed king.svg create mode 100644 types/components/enterDetails/bedType.ts create mode 100644 types/enums/bedType.ts diff --git a/app/[lang]/(live)/(public)/hotelreservation/[section]/page.tsx b/app/[lang]/(live)/(public)/hotelreservation/[section]/page.tsx index 3ebb491e5..9f91bee96 100644 --- a/app/[lang]/(live)/(public)/hotelreservation/[section]/page.tsx +++ b/app/[lang]/(live)/(public)/hotelreservation/[section]/page.tsx @@ -3,9 +3,9 @@ import { notFound } from "next/navigation" import { getProfileSafely } from "@/lib/trpc/memoizedRequests" import { serverClient } from "@/lib/trpc/server" +import BedType from "@/components/HotelReservation/EnterDetails/BedType" import Details from "@/components/HotelReservation/EnterDetails/Details" import HotelSelectionHeader from "@/components/HotelReservation/HotelSelectionHeader" -import BedSelection from "@/components/HotelReservation/SelectRate/BedSelection" import BreakfastSelection from "@/components/HotelReservation/SelectRate/BreakfastSelection" import Payment from "@/components/HotelReservation/SelectRate/Payment" import RoomSelection from "@/components/HotelReservation/SelectRate/RoomSelection" @@ -104,7 +104,7 @@ export default async function SectionsPage({ const selectedBreakfast = searchParams.breakfast ? breakfastAlternatives.find((a) => a.value === searchParams.breakfast) - ?.name + ?.name : undefined const selectedRoom = searchParams.roomClass @@ -132,9 +132,9 @@ export default async function SectionsPage({ selection={ selectedRoom ? [ - selectedRoom, - intl.formatMessage({ id: selectedFlexibility }), - ] + selectedRoom, + intl.formatMessage({ id: selectedFlexibility }), + ] : undefined } path={`select-rate?${currentSearchParams}`} @@ -155,12 +155,7 @@ export default async function SectionsPage({ selection={selectedBed} path={`select-bed?${currentSearchParams}`} > - {params.section === "select-bed" && ( - - )} + {params.section === "select-bed" ? : null} + +
+ ) +} diff --git a/components/HotelReservation/EnterDetails/BedType/bedOptions.module.css b/components/HotelReservation/EnterDetails/BedType/bedOptions.module.css new file mode 100644 index 000000000..81fd223b9 --- /dev/null +++ b/components/HotelReservation/EnterDetails/BedType/bedOptions.module.css @@ -0,0 +1,7 @@ +.form { + display: grid; + gap: var(--Spacing-x2); + grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); + padding-bottom: var(--Spacing-x3); + width: min(600px, 100%); +} diff --git a/components/HotelReservation/EnterDetails/BedType/index.tsx b/components/HotelReservation/EnterDetails/BedType/index.tsx new file mode 100644 index 000000000..97835a285 --- /dev/null +++ b/components/HotelReservation/EnterDetails/BedType/index.tsx @@ -0,0 +1,75 @@ +"use client" + +import { zodResolver } from "@hookform/resolvers/zod" +import { FormProvider, useForm } from "react-hook-form" +import { useIntl } from "react-intl" + +import { KingBedIcon } from "@/components/Icons" +import RadioCard from "@/components/TempDesignSystem/Form/Card/Radio" + +import { bedTypeSchema } from "./schema" + +import styles from "./bedOptions.module.css" + +import type { BedTypeSchema } from "@/types/components/enterDetails/bedType" +import { bedTypeEnum } from "@/types/enums/bedType" + +export default function BedType() { + const intl = useIntl() + + const methods = useForm({ + defaultValues: { + bed: bedTypeEnum.KING, + }, + criteriaMode: "all", + mode: "all", + resolver: zodResolver(bedTypeSchema), + reValidateMode: "onChange", + }) + + // @ts-expect-error - Types mismatch docs as this is + // a pattern that is allowed https://formatjs.io/docs/react-intl/api#usage + const text = intl.formatMessage( + { id: "Included (based on availability)" }, + { b: (str) => {str} } + ) + + return ( + +
+ + + +
+ ) +} diff --git a/components/HotelReservation/EnterDetails/BedType/schema.ts b/components/HotelReservation/EnterDetails/BedType/schema.ts new file mode 100644 index 000000000..bd819b986 --- /dev/null +++ b/components/HotelReservation/EnterDetails/BedType/schema.ts @@ -0,0 +1,7 @@ +import { z } from "zod" + +import { bedTypeEnum } from "@/types/enums/bedType" + +export const bedTypeSchema = z.object({ + bed: z.nativeEnum(bedTypeEnum), +}) diff --git a/components/HotelReservation/EnterDetails/Details/index.tsx b/components/HotelReservation/EnterDetails/Details/index.tsx index 731e3b205..2dd1b1cdb 100644 --- a/components/HotelReservation/EnterDetails/Details/index.tsx +++ b/components/HotelReservation/EnterDetails/Details/index.tsx @@ -4,7 +4,7 @@ import { FormProvider, useForm } from "react-hook-form" import { useIntl } from "react-intl" import Button from "@/components/TempDesignSystem/Button" -import CheckboxCard from "@/components/TempDesignSystem/Form/Checkbox/Card" +import CheckboxCard from "@/components/TempDesignSystem/Form/Card/Checkbox" import CountrySelect from "@/components/TempDesignSystem/Form/Country" import Input from "@/components/TempDesignSystem/Form/Input" import Phone from "@/components/TempDesignSystem/Form/Phone" @@ -36,6 +36,7 @@ export default function Details({ user }: DetailsProps) { lastname: user?.lastName ?? "", phoneNumber: user?.phoneNumber ?? "", }, + criteriaMode: "all", mode: "all", resolver: zodResolver(user ? signedInDetailsSchema : detailsSchema), reValidateMode: "onChange", diff --git a/components/Icons/KingBed.tsx b/components/Icons/KingBed.tsx new file mode 100644 index 000000000..d4df0f225 --- /dev/null +++ b/components/Icons/KingBed.tsx @@ -0,0 +1,27 @@ +import { iconVariants } from "./variants" + +import type { IconProps } from "@/types/components/icon" + +export default function KingBedIcon({ className, color, ...props }: IconProps) { + const classNames = iconVariants({ className, color }) + return ( + + + + + + ) +} diff --git a/components/Icons/index.tsx b/components/Icons/index.tsx index 04f167061..73b554342 100644 --- a/components/Icons/index.tsx +++ b/components/Icons/index.tsx @@ -34,6 +34,7 @@ export { default as HeartIcon } from "./Heart" export { default as HouseIcon } from "./House" export { default as ImageIcon } from "./Image" export { default as InfoCircleIcon } from "./InfoCircle" +export { default as KingBedIcon } from "./KingBed" export { default as LocationIcon } from "./Location" export { default as LockIcon } from "./Lock" export { default as MapIcon } from "./Map" diff --git a/components/TempDesignSystem/Form/Card/Checkbox.tsx b/components/TempDesignSystem/Form/Card/Checkbox.tsx new file mode 100644 index 000000000..7f0ea428a --- /dev/null +++ b/components/TempDesignSystem/Form/Card/Checkbox.tsx @@ -0,0 +1,7 @@ +import Card from "." + +import type { CheckboxProps } from "./card" + +export default function CheckboxCard(props: CheckboxProps) { + return +} diff --git a/components/TempDesignSystem/Form/Card/Radio.tsx b/components/TempDesignSystem/Form/Card/Radio.tsx new file mode 100644 index 000000000..c1de94782 --- /dev/null +++ b/components/TempDesignSystem/Form/Card/Radio.tsx @@ -0,0 +1,7 @@ +import Card from "." + +import type { RadioProps } from "./card" + +export default function RadioCard(props: RadioProps) { + return +} diff --git a/components/TempDesignSystem/Form/Checkbox/Card/card.module.css b/components/TempDesignSystem/Form/Card/card.module.css similarity index 50% rename from components/TempDesignSystem/Form/Checkbox/Card/card.module.css rename to components/TempDesignSystem/Form/Card/card.module.css index bd44b7b45..1044596f6 100644 --- a/components/TempDesignSystem/Form/Checkbox/Card/card.module.css +++ b/components/TempDesignSystem/Form/Card/card.module.css @@ -1,70 +1,72 @@ -.checkbox { +.label { + align-self: flex-start; background-color: var(--Base-Surface-Primary-light-Normal); border: 1px solid var(--Base-Border-Subtle); border-radius: var(--Corner-radius-Large); cursor: pointer; - display: flex; - flex-direction: column; - gap: var(--Spacing-x1); + display: grid; + grid-template-columns: 1fr auto; padding: var(--Spacing-x-one-and-half) var(--Spacing-x2); transition: all 200ms ease; width: min(100%, 600px); } -.checkbox:hover { +.label:hover { background-color: var(--Base-Surface-Secondary-light-Hover); } -.checkbox:has(:checked) { +.label:has(:checked) { background-color: var(--Primary-Light-Surface-Normal); border-color: var(--Base-Border-Hover); } -.header { - align-items: center; - display: grid; - gap: 0px var(--Spacing-x1); - grid-template-areas: - "title icon" - "subtitle icon"; -} - .icon { - grid-area: icon; + align-self: center; + grid-column: 2/3; + grid-row: 1/3; justify-self: flex-end; transition: fill 200ms ease; } -.checkbox:hover .icon, -.checkbox:hover .icon *, -.checkbox:has(:checked) .icon, -.checkbox:has(:checked) .icon * { +.label:hover .icon, +.label:hover .icon *, +.label:has(:checked) .icon, +.label:has(:checked) .icon * { fill: var(--Base-Text-Medium-contrast); } -.checkbox[data-declined="true"]:hover .icon, -.checkbox[data-declined="true"]:hover .icon *, -.checkbox[data-declined="true"]:has(:checked) .icon, -.checkbox[data-declined="true"]:has(:checked) .icon * { +.label[data-declined="true"]:hover .icon, +.label[data-declined="true"]:hover .icon *, +.label[data-declined="true"]:has(:checked) .icon, +.label[data-declined="true"]:has(:checked) .icon * { fill: var(--Base-Text-Disabled); } .subtitle { - grid-area: subtitle; + grid-column: 1 / 2; + grid-row: 2; } .title { - grid-area: title; + grid-column: 1 / 2; } -.list { - list-style: none; - margin: 0; - padding: 0; +.label .text { + margin-top: var(--Spacing-x1); + grid-column: 1/-1; } .listItem { align-items: center; display: flex; gap: var(--Spacing-x-quarter); + grid-column: 1/-1; +} + +.listItem:first-of-type { + margin-top: var(--Spacing-x1); +} + +.listItem:nth-of-type(n + 2) { + margin-top: var(--Spacing-x-quarter); } diff --git a/components/TempDesignSystem/Form/Card/card.ts b/components/TempDesignSystem/Form/Card/card.ts new file mode 100644 index 000000000..167595164 --- /dev/null +++ b/components/TempDesignSystem/Form/Card/card.ts @@ -0,0 +1,35 @@ +import type { IconProps } from "@/types/components/icon" + +interface BaseCardProps extends React.LabelHTMLAttributes { + Icon?: (props: IconProps) => JSX.Element + declined?: boolean + iconHeight?: number + iconWidth?: number + name?: string + saving?: boolean + subtitle?: string + title: string + type: "checkbox" | "radio" + value?: string +} + +interface ListCardProps extends BaseCardProps { + list: { + title: string + }[] + text?: never +} + +interface TextCardProps extends BaseCardProps { + list?: never + text: string +} + +export type CardProps = ListCardProps | TextCardProps + +export type CheckboxProps = + | Omit + | Omit +export type RadioProps = + | Omit + | Omit diff --git a/components/TempDesignSystem/Form/Card/index.tsx b/components/TempDesignSystem/Form/Card/index.tsx new file mode 100644 index 000000000..82f99e80d --- /dev/null +++ b/components/TempDesignSystem/Form/Card/index.tsx @@ -0,0 +1,77 @@ +"use client" + +import { CheckIcon, CloseIcon, HeartIcon } from "@/components/Icons" +import Caption from "@/components/TempDesignSystem/Text/Caption" +import Footnote from "@/components/TempDesignSystem/Text/Footnote" + +import styles from "./card.module.css" + +import type { CardProps } from "./card" + +export default function Card({ + Icon = HeartIcon, + iconHeight = 32, + iconWidth = 32, + declined = false, + id, + list, + name = "join", + saving = false, + subtitle, + text, + title, + type, + value, +}: CardProps) { + return ( + + ) +} diff --git a/components/TempDesignSystem/Form/Checkbox/Card/card.ts b/components/TempDesignSystem/Form/Checkbox/Card/card.ts deleted file mode 100644 index 438c9b729..000000000 --- a/components/TempDesignSystem/Form/Checkbox/Card/card.ts +++ /dev/null @@ -1,14 +0,0 @@ -import type { IconProps } from "@/types/components/icon" - -export interface CheckboxCardProps { - Icon?: (props: IconProps) => JSX.Element - declined?: boolean - list?: { - title: string - }[] - name?: string - saving?: boolean - subtitle?: string - text?: string - title: string -} diff --git a/components/TempDesignSystem/Form/Checkbox/Card/index.tsx b/components/TempDesignSystem/Form/Checkbox/Card/index.tsx deleted file mode 100644 index 77158c531..000000000 --- a/components/TempDesignSystem/Form/Checkbox/Card/index.tsx +++ /dev/null @@ -1,65 +0,0 @@ -"use client" - -import { CheckIcon, CloseIcon, HeartIcon } from "@/components/Icons" -import Caption from "@/components/TempDesignSystem/Text/Caption" -import Footnote from "@/components/TempDesignSystem/Text/Footnote" - -import styles from "./card.module.css" - -import type { CheckboxCardProps } from "./card" - -export default function CheckboxCard({ - Icon = HeartIcon, - declined = false, - list, - name = "join", - saving = false, - subtitle, - text, - title, -}: CheckboxCardProps) { - return ( - - ) -} diff --git a/i18n/dictionaries/da.json b/i18n/dictionaries/da.json index ed2cce0d8..dd139b105 100644 --- a/i18n/dictionaries/da.json +++ b/i18n/dictionaries/da.json @@ -1,4 +1,5 @@ { + "Included (based on availability)": "Inkluderet (baseret på tilgængelighed)", "A destination or hotel name is needed to be able to search for a hotel room.": "Et destinations- eller hotelnavn er nødvendigt for at kunne søge efter et hotelværelse.", "A photo of the room": "Et foto af værelset", "About meetings & conferences": "About meetings & conferences", @@ -64,6 +65,7 @@ "Date of Birth": "Fødselsdato", "Day": "Dag", "Description": "Beskrivelse", + "Destination": "Destination", "Destinations & hotels": "Destinationer & hoteller", "Discard changes": "Kassér ændringer", "Discard unsaved changes?": "Slette ændringer, der ikke er gemt?", @@ -74,6 +76,7 @@ "Edit": "Redigere", "Edit profile": "Rediger profil", "Email": "E-mail", + "Email address": "E-mailadresse", "Enter destination or hotel": "Indtast destination eller hotel", "Enjoy relaxed restaurant experiences": "Enjoy relaxed restaurant experiences", "Events that make an impression": "Events that make an impression", @@ -85,6 +88,7 @@ "Fair": "Messe", "Find booking": "Find booking", "Find hotels": "Find hotel", + "Firstname": "Fornavn", "Flexibility": "Fleksibilitet", "Former Scandic Hotel": "Tidligere Scandic Hotel", "Free cancellation": "Gratis afbestilling", @@ -94,6 +98,7 @@ "Get member benefits & offers": "Få medlemsfordele og tilbud", "Go back to edit": "Gå tilbage til redigering", "Go back to overview": "Gå tilbage til oversigten", + "Guest information": "Gæsteinformation", "Guests & Rooms": "Gæster & værelser", "Hi": "Hei", "Highest level": "Højeste niveau", @@ -108,7 +113,9 @@ "It is not posible to manage your communication preferences right now, please try again later or contact support if the problem persists.": "Det er ikke muligt at administrere dine kommunikationspræferencer lige nu, prøv venligst igen senere eller kontakt support, hvis problemet fortsætter.", "Join Scandic Friends": "Tilmeld dig Scandic Friends", "Join at no cost": "Tilmeld dig uden omkostninger", + "King bed": "Kingsize-seng", "Language": "Sprog", + "Lastname": "Efternavn", "Latest searches": "Seneste søgninger", "Level": "Niveau", "Level 1": "Niveau 1", @@ -184,8 +191,10 @@ "Points needed to level up": "Point nødvendige for at stige i niveau", "Points needed to stay on level": "Point nødvendige for at holde sig på niveau", "Previous victories": "Tidligere sejre", + "Proceed to payment method": "Fortsæt til betalingsmetode", "Public price from": "Offentlig pris fra", "Public transport": "Offentlig transport", + "Queen bed": "Queensize-seng", "Read more": "Læs mere", "Read more & book a table": "Read more & book a table", "Read more about the hotel": "Læs mere om hotellet", @@ -211,6 +220,7 @@ "Select a country": "Vælg et land", "Select country of residence": "Vælg bopælsland", "Select date of birth": "Vælg fødselsdato", + "Select dates": "Vælg datoer", "Select language": "Vælg sprog", "Select your language": "Vælg dit sprog", "Shopping": "Shopping", @@ -280,7 +290,9 @@ "Zoom in": "Zoom ind", "Zoom out": "Zoom ud", "as of today": "fra idag", + "booking.adults": "{totalAdults, plural, one {# voksen} other {# voksne}}", "booking.nights": "{totalNights, plural, one {# nat} other {# nætter}}", + "booking.rooms": "{totalRooms, plural, one {# værelse} other {# værelser}}", "by": "inden", "characters": "tegn", "hotelPages.rooms.roomCard.person": "person", @@ -296,5 +308,7 @@ "special character": "speciel karakter", "spendable points expiring by": "{points} Brugbare point udløber den {date}", "to": "til", - "uppercase letter": "stort bogstav" -} + "uppercase letter": "stort bogstav", + "{difference}{amount} {currency}": "{difference}{amount} {currency}", + "{width} cm × {length} cm": "{width} cm × {length} cm" +} \ No newline at end of file diff --git a/i18n/dictionaries/de.json b/i18n/dictionaries/de.json index 90b0e76b8..cca633251 100644 --- a/i18n/dictionaries/de.json +++ b/i18n/dictionaries/de.json @@ -1,8 +1,9 @@ { + "Included (based on availability)": "Inbegriffen (je nach Verfügbarkeit)", "A destination or hotel name is needed to be able to search for a hotel room.": "Ein Reiseziel oder Hotelname wird benötigt, um nach einem Hotelzimmer suchen zu können.", "A photo of the room": "Ein Foto des Zimmers", - "Activities": "Aktivitäten", "About meetings & conferences": "About meetings & conferences", + "Activities": "Aktivitäten", "Add code": "Code hinzufügen", "Add new card": "Neue Karte hinzufügen", "Address": "Adresse", @@ -10,13 +11,12 @@ "Already a friend?": "Sind wir schon Freunde?", "Amenities": "Annehmlichkeiten", "Amusement park": "Vergnügungspark", - "An error occurred when adding a credit card, please try again later.": "Beim Hinzufügen einer Kreditkarte ist ein Fehler aufgetreten. Bitte versuchen Sie es später erneut.", "An error occurred trying to manage your preferences, please try again later.": "Beim Versuch, Ihre Einstellungen zu verwalten, ist ein Fehler aufgetreten. Bitte versuchen Sie es später erneut.", + "An error occurred when adding a credit card, please try again later.": "Beim Hinzufügen einer Kreditkarte ist ein Fehler aufgetreten. Bitte versuchen Sie es später erneut.", "An error occurred when trying to update profile.": "Beim Versuch, das Profil zu aktualisieren, ist ein Fehler aufgetreten.", "Any changes you've made will be lost.": "Alle Änderungen, die Sie vorgenommen haben, gehen verloren.", "Are you sure you want to remove the card ending with {lastFourDigits} from your member profile?": "Möchten Sie die Karte mit der Endung {lastFourDigits} wirklich aus Ihrem Mitgliedsprofil entfernen?", "Arrival date": "Ankunftsdatum", - "as of today": "Stand heute", "As our": "Als unser {level}", "As our Close Friend": "Als unser enger Freund", "At latest": "Spätestens", @@ -28,16 +28,13 @@ "Book": "Buchen", "Book reward night": "Bonusnacht buchen", "Booking number": "Buchungsnummer", - "booking.nights": "{totalNights, plural, one {# nacht} other {# Nächte}}", "Breakfast": "Frühstück", "Breakfast excluded": "Frühstück nicht inbegriffen", "Breakfast included": "Frühstück inbegriffen", + "Breakfast restaurant": "Breakfast restaurant", "Bus terminal": "Busbahnhof", "Business": "Geschäft", - "by": "bis", - "Breakfast restaurant": "Breakfast restaurant", "Cancel": "Stornieren", - "characters": "figuren", "Check in": "Einchecken", "Check out": "Auschecken", "Check out the credit cards saved to your profile. Pay with a saved card when signed in for a smoother web experience.": "Sehen Sie sich die in Ihrem Profil gespeicherten Kreditkarten an. Bezahlen Sie mit einer gespeicherten Karte, wenn Sie angemeldet sind, für ein reibungsloseres Web-Erlebnis.", @@ -68,34 +65,40 @@ "Date of Birth": "Geburtsdatum", "Day": "Tag", "Description": "Beschreibung", + "Destination": "Bestimmungsort", "Destinations & hotels": "Reiseziele & Hotels", "Discard changes": "Änderungen verwerfen", "Discard unsaved changes?": "Nicht gespeicherte Änderungen verwerfen?", "Distance to city centre": "{number}km zum Stadtzentrum", "Do you want to start the day with Scandics famous breakfast buffé?": "Möchten Sie den Tag mit Scandics berühmtem Frühstücksbuffet beginnen?", "Download the Scandic app": "Laden Sie die Scandic-App herunter", + "Earn bonus nights & points": "Sammeln Sie Bonusnächte und -punkte", "Edit": "Bearbeiten", "Edit profile": "Profil bearbeiten", "Email": "Email", - "Enter destination or hotel": "Reiseziel oder Hotel eingeben", + "Email address": "E-Mail-Adresse", "Enjoy relaxed restaurant experiences": "Enjoy relaxed restaurant experiences", + "Enter destination or hotel": "Reiseziel oder Hotel eingeben", "Events that make an impression": "Events that make an impression", "Explore all levels and benefits": "Entdecken Sie alle Levels und Vorteile", "Explore nearby": "Erkunden Sie die Umgebung", "Extras to your booking": "Extras zu Ihrer Buchung", + "FAQ": "Häufig gestellte Fragen", "Failed to delete credit card, please try again later.": "Kreditkarte konnte nicht gelöscht werden. Bitte versuchen Sie es später noch einmal.", "Fair": "Messe", - "FAQ": "Häufig gestellte Fragen", "Find booking": "Buchung finden", "Find hotels": "Hotels finden", + "Firstname": "Vorname", "Flexibility": "Flexibilität", "Former Scandic Hotel": "Ehemaliges Scandic Hotel", "Free cancellation": "Kostenlose Stornierung", "Free rebooking": "Kostenlose Umbuchung", "From": "Fromm", "Get inspired": "Lassen Sie sich inspieren", + "Get member benefits & offers": "Holen Sie sich Vorteile und Angebote für Mitglieder", "Go back to edit": "Zurück zum Bearbeiten", "Go back to overview": "Zurück zur Übersicht", + "Guest information": "Informationen für Gäste", "Guests & Rooms": "Gäste & Zimmer", "Hi": "Hallo", "Highest level": "Höchstes Level", @@ -103,17 +106,16 @@ "Hotel": "Hotel", "Hotel facilities": "Hotel-Infos", "Hotel surroundings": "Umgebung des Hotels", - "hotelPages.rooms.roomCard.person": "person", - "hotelPages.rooms.roomCard.persons": "personen", - "hotelPages.rooms.roomCard.seeRoomDetails": "Zimmerdetails ansehen", "Hotels": "Hotels", "How do you want to sleep?": "Wie möchtest du schlafen?", "How it works": "Wie es funktioniert", "Image gallery": "Bildergalerie", "It is not posible to manage your communication preferences right now, please try again later or contact support if the problem persists.": "Es ist derzeit nicht möglich, Ihre Kommunikationseinstellungen zu verwalten. Bitte versuchen Sie es später erneut oder wenden Sie sich an den Support, wenn das Problem weiterhin besteht.", "Join Scandic Friends": "Treten Sie Scandic Friends bei", - "km to city center": "km bis zum Stadtzentrum", + "Join at no cost": "Kostenlos beitreten", + "King bed": "Kingsize-Bett", "Language": "Sprache", + "Lastname": "Nachname", "Latest searches": "Letzte Suchanfragen", "Level": "Level", "Level 1": "Level 1", @@ -139,9 +141,9 @@ "Member price": "Mitgliederpreis", "Member price from": "Mitgliederpreis ab", "Members": "Mitglieder", - "Membership cards": "Mitgliedskarten", "Membership ID": "Mitglieds-ID", "Membership ID copied to clipboard": "Mitglieds-ID in die Zwischenablage kopiert", + "Membership cards": "Mitgliedskarten", "Menu": "Menu", "Modify": "Ändern", "Month": "Monat", @@ -156,9 +158,6 @@ "Nearby companies": "Nahe gelegene Unternehmen", "New password": "Neues Kennwort", "Next": "Nächste", - "next level:": "Nächstes Level:", - "night": "nacht", - "nights": "Nächte", "Nights needed to level up": "Nächte, die zum Levelaufstieg benötigt werden", "No content published": "Kein Inhalt veröffentlicht", "No matching location found": "Kein passender Standort gefunden", @@ -169,16 +168,15 @@ "Non-refundable": "Nicht erstattungsfähig", "Not found": "Nicht gefunden", "Nr night, nr adult": "{nights, number} Nacht, {adults, number} Erwachsener", - "number": "nummer", "On your journey": "Auf deiner Reise", "Open": "Offen", "Open language menu": "Sprachmenü öffnen", "Open menu": "Menü öffnen", "Open my pages menu": "Meine Seiten Menü öffnen", - "or": "oder", "Overview": "Übersicht", "Parking": "Parken", "Parking / Garage": "Parken / Garage", + "Password": "Passwort", "Pay later": "Später bezahlen", "Pay now": "Jetzt bezahlen", "Payment info": "Zahlungsinformationen", @@ -186,7 +184,6 @@ "Phone is required": "Telefon ist erforderlich", "Phone number": "Telefonnummer", "Please enter a valid phone number": "Bitte geben Sie eine gültige Telefonnummer ein", - "points": "Punkte", "Points": "Punkte", "Points being calculated": "Punkte werden berechnet", "Points earned prior to May 1, 2021": "Zusammengeführte Punkte vor dem 1. Mai 2021", @@ -194,8 +191,10 @@ "Points needed to level up": "Punkte, die zum Levelaufstieg benötigt werden", "Points needed to stay on level": "Erforderliche Punkte, um auf diesem Level zu bleiben", "Previous victories": "Bisherige Siege", + "Proceed to payment method": "Weiter zur Zahlungsmethode", "Public price from": "Öffentlicher Preis ab", "Public transport": "Öffentliche Verkehrsmittel", + "Queen bed": "Queensize-Bett", "Read more": "Mehr lesen", "Read more & book a table": "Read more & book a table", "Read more about the hotel": "Lesen Sie mehr über das Hotel", @@ -221,6 +220,7 @@ "Select a country": "Wähle ein Land", "Select country of residence": "Wählen Sie das Land Ihres Wohnsitzes aus", "Select date of birth": "Geburtsdatum auswählen", + "Select dates": "Datum auswählen", "Select language": "Sprache auswählen", "Select your language": "Wählen Sie Ihre Sprache", "Shopping": "Einkaufen", @@ -234,29 +234,25 @@ "Something went wrong and we couldn't add your card. Please try again later.": "Ein Fehler ist aufgetreten und wir konnten Ihre Karte nicht hinzufügen. Bitte versuchen Sie es später erneut.", "Something went wrong and we couldn't remove your card. Please try again later.": "Ein Fehler ist aufgetreten und wir konnten Ihre Karte nicht entfernen. Bitte versuchen Sie es später noch einmal.", "Something went wrong!": "Etwas ist schief gelaufen!", - "special character": "sonderzeichen", - "spendable points expiring by": "{points} Einlösbare punkte verfallen bis zum {date}", "Sports": "Sport", "Standard price": "Standardpreis", "Street": "Straße", "Successfully updated profile!": "Profil erfolgreich aktualisiert!", "Summary": "Zusammenfassung", + "TUI Points": "TUI Points", "Tell us what information and updates you'd like to receive, and how, by clicking the link below.": "Teilen Sie uns mit, welche Informationen und Updates Sie wie erhalten möchten, indem Sie auf den unten stehenden Link klicken.", "Thank you": "Danke", "Theatre": "Theater", "There are no transactions to display": "Es sind keine Transaktionen zum Anzeigen vorhanden", "Things nearby HOTEL_NAME": "Dinge in der Nähe von {hotelName}", - "to": "zu", "Total Points": "Gesamtpunktzahl", "Tourist": "Tourist", "Transaction date": "Transaktionsdatum", "Transactions": "Transaktionen", "Transportations": "Transportmittel", "Tripadvisor reviews": "{rating} ({count} Bewertungen auf Tripadvisor)", - "TUI Points": "TUI Points", "Type of bed": "Bettentyp", "Type of room": "Zimmerart", - "uppercase letter": "großbuchstabe", "Use bonus cheque": "Bonusscheck nutzen", "User information": "Nutzerinformation", "View as list": "Als Liste anzeigen", @@ -282,18 +278,37 @@ "You canceled adding a new credit card.": "Sie haben das Hinzufügen einer neuen Kreditkarte abgebrochen.", "You have no previous stays.": "Sie haben keine vorherigen Aufenthalte.", "You have no upcoming stays.": "Sie haben keine bevorstehenden Aufenthalte.", + "Your Challenges Conquer & Earn!": "Meistern Sie Ihre Herausforderungen und verdienen Sie Geld!", "Your card was successfully removed!": "Ihre Karte wurde erfolgreich entfernt!", "Your card was successfully saved!": "Ihre Karte wurde erfolgreich gespeichert!", - "Your Challenges Conquer & Earn!": "Meistern Sie Ihre Herausforderungen und verdienen Sie Geld!", "Your current level": "Ihr aktuelles Level", "Your details": "Ihre Angaben", "Your level": "Dein level", "Your points to spend": "Meine Punkte", "Zip code": "PLZ", "Zoo": "Zoo", - "Earn bonus nights & points": "Sammeln Sie Bonusnächte und -punkte", - "Get member benefits & offers": "Holen Sie sich Vorteile und Angebote für Mitglieder", - "Join at no cost": "Kostenlos beitreten", "Zoom in": "Vergrößern", - "Zoom out": "Verkleinern" -} + "Zoom out": "Verkleinern", + "as of today": "Stand heute", + "booking.adults": "{totalAdults, plural, one {# erwachsene} other {# erwachsene}}", + "booking.nights": "{totalNights, plural, one {# nacht} other {# Nächte}}", + "booking.rooms": "{totalRooms, plural, one {# zimmer} other {# räume}}", + "by": "bis", + "characters": "figuren", + "hotelPages.rooms.roomCard.person": "person", + "hotelPages.rooms.roomCard.persons": "personen", + "hotelPages.rooms.roomCard.seeRoomDetails": "Zimmerdetails ansehen", + "km to city center": "km bis zum Stadtzentrum", + "next level:": "Nächstes Level:", + "night": "nacht", + "nights": "Nächte", + "number": "nummer", + "or": "oder", + "points": "Punkte", + "special character": "sonderzeichen", + "spendable points expiring by": "{points} Einlösbare punkte verfallen bis zum {date}", + "to": "zu", + "uppercase letter": "großbuchstabe", + "{difference}{amount} {currency}": "{difference}{amount} {currency}", + "{width} cm × {length} cm": "{width} cm × {length} cm" +} \ No newline at end of file diff --git a/i18n/dictionaries/en.json b/i18n/dictionaries/en.json index 6e38a05e7..f13a60b2c 100644 --- a/i18n/dictionaries/en.json +++ b/i18n/dictionaries/en.json @@ -1,4 +1,5 @@ { + "Included (based on availability)": "Included (based on availability)", "A destination or hotel name is needed to be able to search for a hotel room.": "A destination or hotel name is needed to be able to search for a hotel room.", "A photo of the room": "A photo of the room", "About meetings & conferences": "About meetings & conferences", @@ -10,8 +11,8 @@ "Already a friend?": "Already a friend?", "Amenities": "Amenities", "Amusement park": "Amusement park", - "An error occurred when adding a credit card, please try again later.": "An error occurred when adding a credit card, please try again later.", "An error occurred trying to manage your preferences, please try again later.": "An error occurred trying to manage your preferences, please try again later.", + "An error occurred when adding a credit card, please try again later.": "An error occurred when adding a credit card, please try again later.", "An error occurred when trying to update profile.": "An error occurred when trying to update profile.", "Any changes you've made will be lost.": "Any changes you've made will be lost.", "Are you sure you want to remove the card ending with {lastFourDigits} from your member profile?": "Are you sure you want to remove the card ending with {lastFourDigits} from your member profile?", @@ -30,9 +31,9 @@ "Breakfast": "Breakfast", "Breakfast excluded": "Breakfast excluded", "Breakfast included": "Breakfast included", + "Breakfast restaurant": "Breakfast restaurant", "Bus terminal": "Bus terminal", "Business": "Business", - "Breakfast restaurant": "Breakfast restaurant", "Cancel": "Cancel", "Check in": "Check in", "Check out": "Check out", @@ -76,8 +77,8 @@ "Edit profile": "Edit profile", "Email": "Email", "Email address": "Email address", - "Enter destination or hotel": "Enter destination or hotel", "Enjoy relaxed restaurant experiences": "Enjoy relaxed restaurant experiences", + "Enter destination or hotel": "Enter destination or hotel", "Events that make an impression": "Events that make an impression", "Explore all levels and benefits": "Explore all levels and benefits", "Explore nearby": "Explore nearby", @@ -112,6 +113,7 @@ "It is not posible to manage your communication preferences right now, please try again later or contact support if the problem persists.": "It is not posible to manage your communication preferences right now, please try again later or contact support if the problem persists.", "Join Scandic Friends": "Join Scandic Friends", "Join at no cost": "Join at no cost", + "King bed": "King bed", "Language": "Language", "Lastname": "Lastname", "Latest searches": "Latest searches", @@ -192,6 +194,7 @@ "Proceed to payment method": "Proceed to payment method", "Public price from": "Public price from", "Public transport": "Public transport", + "Queen bed": "Queen bed", "Read more": "Read more", "Read more & book a table": "Read more & book a table", "Read more about the hotel": "Read more about the hotel", @@ -258,7 +261,7 @@ "Visiting address": "Visiting address", "We could not add a card right now, please try again later.": "We could not add a card right now, please try again later.", "We couldn't find a matching location for your search.": "We couldn't find a matching location for your search.", - "We have sent a detailed confirmation of your booking to your email: ": "We have sent a detailed confirmation of your booking to your email: ", + "We have sent a detailed confirmation of your booking to your email:": "We have sent a detailed confirmation of your booking to your email: ", "We look forward to your visit!": "We look forward to your visit!", "Weekdays": "Weekdays", "Weekends": "Weekends", @@ -285,6 +288,7 @@ "Zip code": "Zip code", "Zoo": "Zoo", "Zoom in": "Zoom in", + "Zoom out": "Zoom out", "as of today": "as of today", "booking.adults": "{totalAdults, plural, one {# adult} other {# adults}}", "booking.nights": "{totalNights, plural, one {# night} other {# nights}}", @@ -306,5 +310,5 @@ "to": "to", "uppercase letter": "uppercase letter", "{difference}{amount} {currency}": "{difference}{amount} {currency}", - "Zoom out": "Zoom out" -} + "{width} cm × {length} cm": "{width} cm × {length} cm" +} \ No newline at end of file diff --git a/i18n/dictionaries/fi.json b/i18n/dictionaries/fi.json index 7a7ed2ae8..064cffe7c 100644 --- a/i18n/dictionaries/fi.json +++ b/i18n/dictionaries/fi.json @@ -1,4 +1,5 @@ { + "Included (based on availability)": "Sisältyy (saatavuuden mukaan)", "A destination or hotel name is needed to be able to search for a hotel room.": "Kohteen tai hotellin nimi tarvitaan, jotta hotellihuonetta voidaan hakea.", "A photo of the room": "Kuva huoneesta", "About meetings & conferences": "About meetings & conferences", @@ -64,6 +65,7 @@ "Date of Birth": "Syntymäaika", "Day": "Päivä", "Description": "Kuvaus", + "Destination": "Kohde", "Destinations & hotels": "Kohteet ja hotellit", "Discard changes": "Hylkää muutokset", "Discard unsaved changes?": "Hylkäätkö tallentamattomat muutokset?", @@ -74,6 +76,7 @@ "Edit": "Muokata", "Edit profile": "Muokkaa profiilia", "Email": "Sähköposti", + "Email address": "Sähköpostiosoite", "Enter destination or hotel": "Anna kohde tai hotelli", "Enjoy relaxed restaurant experiences": "Enjoy relaxed restaurant experiences", "Events that make an impression": "Events that make an impression", @@ -85,6 +88,7 @@ "Fair": "Messukeskus", "Find booking": "Etsi varaus", "Find hotels": "Etsi hotelleja", + "Firstname": "Etunimi", "Flexibility": "Joustavuus", "Former Scandic Hotel": "Entinen Scandic-hotelli", "Free cancellation": "Ilmainen peruutus", @@ -94,6 +98,7 @@ "Get member benefits & offers": "Hanki jäsenetuja ja -tarjouksia", "Go back to edit": "Palaa muokkaamaan", "Go back to overview": "Palaa yleiskatsaukseen", + "Guest information": "Vieraan tiedot", "Guests & Rooms": "Vieraat & Huoneet", "Hi": "Hi", "Highest level": "Korkein taso", @@ -108,7 +113,9 @@ "It is not posible to manage your communication preferences right now, please try again later or contact support if the problem persists.": "Viestintäasetuksiasi ei voi hallita juuri nyt. Yritä myöhemmin uudelleen tai ota yhteyttä tukeen, jos ongelma jatkuu.", "Join Scandic Friends": "Liity jäseneksi", "Join at no cost": "Liity maksutta", + "King bed": "King-vuode", "Language": "Kieli", + "Lastname": "Sukunimi", "Latest searches": "Viimeisimmät haut", "Level": "Level", "Level 1": "Taso 1", @@ -184,8 +191,10 @@ "Points needed to level up": "Tarvitset vielä", "Points needed to stay on level": "Tällä tasolla pysymiseen tarvittavat pisteet", "Previous victories": "Edelliset voitot", + "Proceed to payment method": "Siirry maksutavalle", "Public price from": "Julkinen hinta alkaen", "Public transport": "Julkinen liikenne", + "Queen bed": "Queen-vuode", "Read more": "Lue lisää", "Read more & book a table": "Read more & book a table", "Read more about the hotel": "Lue lisää hotellista", @@ -212,6 +221,7 @@ "Select a country": "Valitse maa", "Select country of residence": "Valitse asuinmaa", "Select date of birth": "Valitse syntymäaika", + "Select dates": "Valitse päivämäärät", "Select language": "Valitse kieli", "Select your language": "Valitse kieli", "Shopping": "Ostokset", @@ -281,7 +291,9 @@ "Zoom in": "Lähennä", "Zoom out": "Loitonna", "as of today": "tänään", + "booking.adults": "{totalAdults, plural, one {# aikuinen} other {# aikuiset}}", "booking.nights": "{totalNights, plural, one {# yö} other {# yötä}}", + "booking.rooms": "{totalRooms, plural, one {# huone} other {# sviitti}}", "by": "mennessä", "characters": "hahmoja", "hotelPages.rooms.roomCard.person": "henkilö", @@ -297,5 +309,7 @@ "special character": "erikoishahmo", "spendable points expiring by": "{points} pistettä vanhenee {date} mennessä", "to": "to", - "uppercase letter": "iso kirjain" -} + "uppercase letter": "iso kirjain", + "{difference}{amount} {currency}": "{difference}{amount} {currency}", + "{width} cm × {length} cm": "{width} cm × {length} cm" +} \ No newline at end of file diff --git a/i18n/dictionaries/no.json b/i18n/dictionaries/no.json index adac63ba0..aea1e69a1 100644 --- a/i18n/dictionaries/no.json +++ b/i18n/dictionaries/no.json @@ -1,4 +1,5 @@ { + "Included (based on availability)": "Inkludert (basert på tilgjengelighet)", "A destination or hotel name is needed to be able to search for a hotel room.": "Et reisemål eller hotellnavn er nødvendig for å kunne søke etter et hotellrom.", "A photo of the room": "Et bilde av rommet", "About meetings & conferences": "About meetings & conferences", @@ -63,6 +64,7 @@ "Date of Birth": "Fødselsdato", "Day": "Dag", "Description": "Beskrivelse", + "Destination": "Destinasjon", "Destinations & hotels": "Destinasjoner og hoteller", "Discard changes": "Forkaste endringer", "Discard unsaved changes?": "Forkaste endringer som ikke er lagret?", @@ -73,6 +75,7 @@ "Edit": "Redigere", "Edit profile": "Rediger profil", "Email": "E-post", + "Email address": "E-postadresse", "Enter destination or hotel": "Skriv inn destinasjon eller hotell", "Enjoy relaxed restaurant experiences": "Enjoy relaxed restaurant experiences", "Events that make an impression": "Events that make an impression", @@ -84,6 +87,7 @@ "FAQ": "FAQ", "Find booking": "Finn booking", "Find hotels": "Finn hotell", + "Firstname": "Fornavn", "Flexibility": "Fleksibilitet", "Former Scandic Hotel": "Tidligere Scandic-hotell", "Free cancellation": "Gratis avbestilling", @@ -93,6 +97,7 @@ "Get member benefits & offers": "Få medlemsfordeler og tilbud", "Go back to edit": "Gå tilbake til redigering", "Go back to overview": "Gå tilbake til oversikten", + "Guest information": "Informasjon til gjester", "Guests & Rooms": "Gjester & rom", "Hi": "Hei", "Highest level": "Høyeste nivå", @@ -107,7 +112,9 @@ "It is not posible to manage your communication preferences right now, please try again later or contact support if the problem persists.": "Det er ikke mulig å administrere kommunikasjonspreferansene dine akkurat nå, prøv igjen senere eller kontakt support hvis problemet vedvarer.", "Join Scandic Friends": "Bli med i Scandic Friends", "Join at no cost": "Bli med uten kostnad", + "King bed": "King-size-seng", "Language": "Språk", + "Lastname": "Etternavn", "Latest searches": "Siste søk", "Level": "Nivå", "Level 1": "Nivå 1", @@ -183,8 +190,10 @@ "Points needed to level up": "Poeng som trengs for å komme opp i nivå", "Points needed to stay on level": "Poeng som trengs for å holde seg på nivå", "Previous victories": "Tidligere seire", + "Proceed to payment method": "Fortsett til betalingsmetode", "Public price from": "Offentlig pris fra", "Public transport": "Offentlig transport", + "Queen bed": "Queen-size-seng", "Read more": "Les mer", "Read more & book a table": "Read more & book a table", "Read more about the hotel": "Les mer om hotellet", @@ -210,6 +219,7 @@ "Select a country": "Velg et land", "Select country of residence": "Velg bostedsland", "Select date of birth": "Velg fødselsdato", + "Select dates": "Velg datoer", "Select language": "Velg språk", "Select your language": "Velg språk", "Shopping": "Shopping", @@ -279,7 +289,9 @@ "Zoom in": "Zoom inn", "Zoom out": "Zoom ut", "as of today": "per idag", + "booking.adults": "{totalAdults, plural, one {# voksen} other {# voksne}}", "booking.nights": "{totalNights, plural, one {# natt} other {# netter}}", + "booking.rooms": "{totalRooms, plural, one {# rom} other {# rom}}", "by": "innen", "characters": "tegn", "hotelPages.rooms.roomCard.person": "person", @@ -295,5 +307,7 @@ "special character": "spesiell karakter", "spendable points expiring by": "{points} Brukbare poeng utløper innen {date}", "to": "til", - "uppercase letter": "stor bokstav" -} + "uppercase letter": "stor bokstav", + "{difference}{amount} {currency}": "{difference}{amount} {currency}", + "{width} cm × {length} cm": "{width} cm × {length} cm" +} \ No newline at end of file diff --git a/i18n/dictionaries/sv.json b/i18n/dictionaries/sv.json index d257ec189..f70bb5cf3 100644 --- a/i18n/dictionaries/sv.json +++ b/i18n/dictionaries/sv.json @@ -1,4 +1,5 @@ { + "Included (based on availability)": "Ingår (baserat på tillgänglighet)", "A destination or hotel name is needed to be able to search for a hotel room.": "Ett destinations- eller hotellnamn behövs för att kunna söka efter ett hotellrum.", "A photo of the room": "Ett foto av rummet", "About meetings & conferences": "About meetings & conferences", @@ -64,6 +65,7 @@ "Date of Birth": "Födelsedatum", "Day": "Dag", "Description": "Beskrivning", + "Destination": "Destination", "Destinations & hotels": "Destinationer & hotell", "Discard changes": "Ignorera ändringar", "Discard unsaved changes?": "Vill du ignorera ändringar som inte har sparats?", @@ -74,6 +76,7 @@ "Edit": "Redigera", "Edit profile": "Redigera profil", "Email": "E-post", + "Email address": "E-postadress", "Enter destination or hotel": "Ange destination eller hotell", "Enjoy relaxed restaurant experiences": "Enjoy relaxed restaurant experiences", "Events that make an impression": "Events that make an impression", @@ -85,6 +88,7 @@ "Fair": "Mässa", "Find booking": "Hitta bokning", "Find hotels": "Hitta hotell", + "Firstname": "Förnamn", "Flexibility": "Flexibilitet", "Former Scandic Hotel": "Tidigare Scandichotell", "Free cancellation": "Fri avbokning", @@ -94,6 +98,7 @@ "Get member benefits & offers": "Ta del av medlemsförmåner och erbjudanden", "Go back to edit": "Gå tillbaka till redigeringen", "Go back to overview": "Gå tillbaka till översikten", + "Guest information": "Information till gästerna", "Guests & Rooms": "Gäster & rum", "Hi": "Hej", "Highest level": "Högsta nivå", @@ -109,7 +114,9 @@ "Join Scandic Friends": "Gå med i Scandic Friends", "Join at no cost": "Gå med utan kostnad", + "King bed": "King size-säng", "Language": "Språk", + "Lastname": "Efternamn", "Latest searches": "Senaste sökningarna", "Level": "Nivå", "Level 1": "Nivå 1", @@ -185,8 +192,10 @@ "Points needed to level up": "Poäng som behövs för att gå upp i nivå", "Points needed to stay on level": "Poäng som behövs för att hålla sig på nivå", "Previous victories": "Tidigare segrar", + "Proceed to payment method": "Gå vidare till betalningsmetod", "Public price from": "Offentligt pris från", "Public transport": "Kollektivtrafik", + "Queen bed": "Queen size-säng", "Read more": "Läs mer", "Read more & book a table": "Read more & book a table", "Read more about the hotel": "Läs mer om hotellet", @@ -212,6 +221,7 @@ "Select a country": "Välj ett land", "Select country of residence": "Välj bosättningsland", "Select date of birth": "Välj födelsedatum", + "Select dates": "Välj datum", "Select language": "Välj språk", "Select your language": "Välj ditt språk", "Shopping": "Shopping", @@ -281,7 +291,9 @@ "Zoom in": "Zooma in", "Zoom out": "Zooma ut", "as of today": "från och med idag", + "booking.adults": "{totalAdults, plural, one {# vuxen} other {# vuxna}}", "booking.nights": "{totalNights, plural, one {# natt} other {# nätter}}", + "booking.rooms": "{totalRooms, plural, one {# rum} other {# rum}}", "by": "innan", "characters": "tecken", "hotelPages.rooms.roomCard.person": "person", @@ -297,5 +309,7 @@ "special character": "speciell karaktär", "spendable points expiring by": "{points} poäng förfaller {date}", "to": "till", - "uppercase letter": "stor bokstav" -} + "uppercase letter": "stor bokstav", + "{difference}{amount} {currency}": "{difference}{amount} {currency}", + "{width} cm × {length} cm": "{width} cm × {length} cm" +} \ No newline at end of file diff --git a/public/_static/icons/UI - Enter details/bed king.svg b/public/_static/icons/UI - Enter details/bed king.svg new file mode 100644 index 000000000..0a8804fef --- /dev/null +++ b/public/_static/icons/UI - Enter details/bed king.svg @@ -0,0 +1,3 @@ + + + diff --git a/types/components/enterDetails/bedType.ts b/types/components/enterDetails/bedType.ts new file mode 100644 index 000000000..c4e6e4ff0 --- /dev/null +++ b/types/components/enterDetails/bedType.ts @@ -0,0 +1,5 @@ +import { z } from "zod" + +import { bedTypeSchema } from "@/components/HotelReservation/EnterDetails/BedType/schema" + +export interface BedTypeSchema extends z.output {} diff --git a/types/components/search.ts b/types/components/search.ts index 42401045f..6f1017126 100644 --- a/types/components/search.ts +++ b/types/components/search.ts @@ -39,14 +39,14 @@ export interface ListItemProps export interface DialogProps extends React.PropsWithChildren, - VariantProps, - Pick { + VariantProps, + Pick { className?: string } export interface ErrorDialogProps extends React.PropsWithChildren, - Pick {} + Pick { } export interface ClearSearchButtonProps extends Pick< diff --git a/types/enums/bedType.ts b/types/enums/bedType.ts new file mode 100644 index 000000000..0b4ba284d --- /dev/null +++ b/types/enums/bedType.ts @@ -0,0 +1,4 @@ +export enum bedTypeEnum { + KING = "KING", + QUEEN = "QUEEN", +} From 372ec171f5860376f64a5f4e5c4f7a6545872d09 Mon Sep 17 00:00:00 2001 From: Simon Emanuelsson Date: Fri, 4 Oct 2024 13:22:21 +0200 Subject: [PATCH 30/30] feat: breakfast choice --- .../hotelreservation/[section]/page.tsx | 17 ++--- .../EnterDetails/BedType/index.tsx | 3 - .../Breakfast/breakfast.module.css | 7 ++ .../EnterDetails/Breakfast/index.tsx | 70 +++++++++++++++++++ .../EnterDetails/Breakfast/schema.ts | 7 ++ components/Icons/Breakfast.tsx | 40 +++++++++++ components/Icons/NoBreakfast.tsx | 40 +++++++++++ components/Icons/index.tsx | 2 + i18n/dictionaries/da.json | 8 ++- i18n/dictionaries/de.json | 8 ++- i18n/dictionaries/en.json | 8 ++- i18n/dictionaries/fi.json | 8 ++- i18n/dictionaries/no.json | 8 ++- i18n/dictionaries/sv.json | 8 ++- types/components/enterDetails/breakfast.ts | 5 ++ types/enums/breakfast.ts | 4 ++ 16 files changed, 223 insertions(+), 20 deletions(-) create mode 100644 components/HotelReservation/EnterDetails/Breakfast/breakfast.module.css create mode 100644 components/HotelReservation/EnterDetails/Breakfast/index.tsx create mode 100644 components/HotelReservation/EnterDetails/Breakfast/schema.ts create mode 100644 components/Icons/Breakfast.tsx create mode 100644 components/Icons/NoBreakfast.tsx create mode 100644 types/components/enterDetails/breakfast.ts create mode 100644 types/enums/breakfast.ts diff --git a/app/[lang]/(live)/(public)/hotelreservation/[section]/page.tsx b/app/[lang]/(live)/(public)/hotelreservation/[section]/page.tsx index 9f91bee96..d2f2a5450 100644 --- a/app/[lang]/(live)/(public)/hotelreservation/[section]/page.tsx +++ b/app/[lang]/(live)/(public)/hotelreservation/[section]/page.tsx @@ -4,9 +4,9 @@ import { getProfileSafely } from "@/lib/trpc/memoizedRequests" import { serverClient } from "@/lib/trpc/server" import BedType from "@/components/HotelReservation/EnterDetails/BedType" +import Breakfast from "@/components/HotelReservation/EnterDetails/Breakfast" import Details from "@/components/HotelReservation/EnterDetails/Details" import HotelSelectionHeader from "@/components/HotelReservation/HotelSelectionHeader" -import BreakfastSelection from "@/components/HotelReservation/SelectRate/BreakfastSelection" import Payment from "@/components/HotelReservation/SelectRate/Payment" import RoomSelection from "@/components/HotelReservation/SelectRate/RoomSelection" import SectionAccordion from "@/components/HotelReservation/SelectRate/SectionAccordion" @@ -104,7 +104,7 @@ export default async function SectionsPage({ const selectedBreakfast = searchParams.breakfast ? breakfastAlternatives.find((a) => a.value === searchParams.breakfast) - ?.name + ?.name : undefined const selectedRoom = searchParams.roomClass @@ -132,9 +132,9 @@ export default async function SectionsPage({ selection={ selectedRoom ? [ - selectedRoom, - intl.formatMessage({ id: selectedFlexibility }), - ] + selectedRoom, + intl.formatMessage({ id: selectedFlexibility }), + ] : undefined } path={`select-rate?${currentSearchParams}`} @@ -162,12 +162,7 @@ export default async function SectionsPage({ selection={selectedBreakfast} path={`breakfast?${currentSearchParams}`} > - {params.section === "breakfast" && ( - - )} + {params.section === "breakfast" ? : null} ({ - defaultValues: { - bed: bedTypeEnum.KING, - }, criteriaMode: "all", mode: "all", resolver: zodResolver(bedTypeSchema), diff --git a/components/HotelReservation/EnterDetails/Breakfast/breakfast.module.css b/components/HotelReservation/EnterDetails/Breakfast/breakfast.module.css new file mode 100644 index 000000000..81fd223b9 --- /dev/null +++ b/components/HotelReservation/EnterDetails/Breakfast/breakfast.module.css @@ -0,0 +1,7 @@ +.form { + display: grid; + gap: var(--Spacing-x2); + grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); + padding-bottom: var(--Spacing-x3); + width: min(600px, 100%); +} diff --git a/components/HotelReservation/EnterDetails/Breakfast/index.tsx b/components/HotelReservation/EnterDetails/Breakfast/index.tsx new file mode 100644 index 000000000..b8f00ec83 --- /dev/null +++ b/components/HotelReservation/EnterDetails/Breakfast/index.tsx @@ -0,0 +1,70 @@ +"use client" + +import { zodResolver } from "@hookform/resolvers/zod" +import { FormProvider, useForm } from "react-hook-form" +import { useIntl } from "react-intl" + +import { BreakfastIcon, NoBreakfastIcon } from "@/components/Icons" +import RadioCard from "@/components/TempDesignSystem/Form/Card/Radio" + +import { breakfastSchema } from "./schema" + +import styles from "./breakfast.module.css" + +import type { BreakfastSchema } from "@/types/components/enterDetails/breakfast" +import { breakfastEnum } from "@/types/enums/breakfast" + +export default function Breakfast() { + const intl = useIntl() + + const methods = useForm({ + criteriaMode: "all", + mode: "all", + resolver: zodResolver(breakfastSchema), + reValidateMode: "onChange", + }) + + return ( + +
+ {amount} {currency}/night per adult" }, + { + amount: "150", + b: (str) => {str}, + currency: "SEK", + } + )} + text={intl.formatMessage({ + id: "All our breakfast buffets offer gluten free, vegan, and allergy-friendly options.", + })} + title={intl.formatMessage({ id: "Breakfast buffet" })} + value={breakfastEnum.BREAKFAST} + /> + + +
+ ) +} diff --git a/components/HotelReservation/EnterDetails/Breakfast/schema.ts b/components/HotelReservation/EnterDetails/Breakfast/schema.ts new file mode 100644 index 000000000..34cc5efca --- /dev/null +++ b/components/HotelReservation/EnterDetails/Breakfast/schema.ts @@ -0,0 +1,7 @@ +import { z } from "zod" + +import { breakfastEnum } from "@/types/enums/breakfast" + +export const breakfastSchema = z.object({ + breakfast: z.nativeEnum(breakfastEnum), +}) diff --git a/components/Icons/Breakfast.tsx b/components/Icons/Breakfast.tsx new file mode 100644 index 000000000..dccfc0c39 --- /dev/null +++ b/components/Icons/Breakfast.tsx @@ -0,0 +1,40 @@ +import { iconVariants } from "./variants" + +import type { IconProps } from "@/types/components/icon" + +export default function BreakfastIcon({ + className, + color, + ...props +}: IconProps) { + const classNames = iconVariants({ className, color }) + return ( + + + + + + + + + ) +} diff --git a/components/Icons/NoBreakfast.tsx b/components/Icons/NoBreakfast.tsx new file mode 100644 index 000000000..c09af6616 --- /dev/null +++ b/components/Icons/NoBreakfast.tsx @@ -0,0 +1,40 @@ +import { iconVariants } from "./variants" + +import type { IconProps } from "@/types/components/icon" + +export default function NoBreakfastIcon({ + className, + color, + ...props +}: IconProps) { + const classNames = iconVariants({ className, color }) + return ( + + + + + + + + + ) +} diff --git a/components/Icons/index.tsx b/components/Icons/index.tsx index 73b554342..f26933255 100644 --- a/components/Icons/index.tsx +++ b/components/Icons/index.tsx @@ -4,6 +4,7 @@ export { default as AirplaneIcon } from "./Airplane" export { default as ArrowRightIcon } from "./ArrowRight" export { default as BarIcon } from "./Bar" export { default as BikingIcon } from "./Biking" +export { default as BreakfastIcon } from "./Breakfast" export { default as BusinessIcon } from "./Business" export { default as CalendarIcon } from "./Calendar" export { default as CameraIcon } from "./Camera" @@ -40,6 +41,7 @@ export { default as LockIcon } from "./Lock" export { default as MapIcon } from "./Map" export { default as MinusIcon } from "./Minus" export { default as MuseumIcon } from "./Museum" +export { default as NoBreakfastIcon } from "./NoBreakfast" export { default as ParkingIcon } from "./Parking" export { default as People2Icon } from "./People2" export { default as PersonIcon } from "./Person" diff --git a/i18n/dictionaries/da.json b/i18n/dictionaries/da.json index dd139b105..e29d7cf6d 100644 --- a/i18n/dictionaries/da.json +++ b/i18n/dictionaries/da.json @@ -1,5 +1,6 @@ { "Included (based on availability)": "Inkluderet (baseret på tilgængelighed)", + "{amount} {currency}/night per adult": "{amount} {currency}/nat pr. voksen", "A destination or hotel name is needed to be able to search for a hotel room.": "Et destinations- eller hotelnavn er nødvendigt for at kunne søge efter et hotelværelse.", "A photo of the room": "Et foto af værelset", "About meetings & conferences": "About meetings & conferences", @@ -8,6 +9,7 @@ "Add new card": "Tilføj nyt kort", "Address": "Adresse", "Airport": "Lufthavn", + "All our breakfast buffets offer gluten free, vegan, and allergy-friendly options.": "Alle vores morgenmadsbuffeter tilbyder glutenfrie, veganske og allergivenlige muligheder.", "Already a friend?": "Allerede en ven?", "Amenities": "Faciliteter", "Amusement park": "Forlystelsespark", @@ -29,6 +31,7 @@ "Book reward night": "Book bonusnat", "Booking number": "Bookingnummer", "Breakfast": "Morgenmad", + "Breakfast buffet": "Morgenbuffet", "Breakfast excluded": "Morgenmad ikke inkluderet", "Breakfast included": "Morgenmad inkluderet", "Bus terminal": "Busstation", @@ -159,6 +162,7 @@ "New password": "Nyt kodeord", "Next": "Næste", "Nights needed to level up": "Nætter nødvendige for at komme i niveau", + "No breakfast": "Ingen morgenmad", "No content published": "Intet indhold offentliggjort", "No matching location found": "Der blev ikke fundet nogen matchende placering", "No results": "Ingen resultater", @@ -275,6 +279,7 @@ "Year": "År", "Yes, discard changes": "Ja, kasser ændringer", "Yes, remove my card": "Ja, fjern mit kort", + "You can always change your mind later and add breakfast at the hotel.": "Du kan altid ombestemme dig senere og tilføje morgenmad på hotellet.", "You canceled adding a new credit card.": "Du har annulleret tilføjelsen af et nyt kreditkort.", "You have no previous stays.": "Du har ingen tidligere ophold.", "You have no upcoming stays.": "Du har ingen kommende ophold.", @@ -309,6 +314,7 @@ "spendable points expiring by": "{points} Brugbare point udløber den {date}", "to": "til", "uppercase letter": "stort bogstav", + "{amount} {currency}": "{amount} {currency}", "{difference}{amount} {currency}": "{difference}{amount} {currency}", "{width} cm × {length} cm": "{width} cm × {length} cm" -} \ No newline at end of file +} diff --git a/i18n/dictionaries/de.json b/i18n/dictionaries/de.json index cca633251..ee4bccf96 100644 --- a/i18n/dictionaries/de.json +++ b/i18n/dictionaries/de.json @@ -1,5 +1,6 @@ { "Included (based on availability)": "Inbegriffen (je nach Verfügbarkeit)", + "{amount} {currency}/night per adult": "{amount} {currency}/Nacht pro Erwachsener", "A destination or hotel name is needed to be able to search for a hotel room.": "Ein Reiseziel oder Hotelname wird benötigt, um nach einem Hotelzimmer suchen zu können.", "A photo of the room": "Ein Foto des Zimmers", "About meetings & conferences": "About meetings & conferences", @@ -8,6 +9,7 @@ "Add new card": "Neue Karte hinzufügen", "Address": "Adresse", "Airport": "Flughafen", + "All our breakfast buffets offer gluten free, vegan, and allergy-friendly options.": "Alle unsere Frühstücksbuffets bieten glutenfreie, vegane und allergikerfreundliche Speisen.", "Already a friend?": "Sind wir schon Freunde?", "Amenities": "Annehmlichkeiten", "Amusement park": "Vergnügungspark", @@ -29,6 +31,7 @@ "Book reward night": "Bonusnacht buchen", "Booking number": "Buchungsnummer", "Breakfast": "Frühstück", + "Breakfast buffet": "Frühstücksbuffet", "Breakfast excluded": "Frühstück nicht inbegriffen", "Breakfast included": "Frühstück inbegriffen", "Breakfast restaurant": "Breakfast restaurant", @@ -159,6 +162,7 @@ "New password": "Neues Kennwort", "Next": "Nächste", "Nights needed to level up": "Nächte, die zum Levelaufstieg benötigt werden", + "No breakfast": "Kein Frühstück", "No content published": "Kein Inhalt veröffentlicht", "No matching location found": "Kein passender Standort gefunden", "No results": "Keine Ergebnisse", @@ -275,6 +279,7 @@ "Year": "Jahr", "Yes, discard changes": "Ja, Änderungen verwerfen", "Yes, remove my card": "Ja, meine Karte entfernen", + "You can always change your mind later and add breakfast at the hotel.": "Sie können es sich später jederzeit anders überlegen und das Frühstück im Hotel hinzufügen.", "You canceled adding a new credit card.": "Sie haben das Hinzufügen einer neuen Kreditkarte abgebrochen.", "You have no previous stays.": "Sie haben keine vorherigen Aufenthalte.", "You have no upcoming stays.": "Sie haben keine bevorstehenden Aufenthalte.", @@ -309,6 +314,7 @@ "spendable points expiring by": "{points} Einlösbare punkte verfallen bis zum {date}", "to": "zu", "uppercase letter": "großbuchstabe", + "{amount} {currency}": "{amount} {currency}", "{difference}{amount} {currency}": "{difference}{amount} {currency}", "{width} cm × {length} cm": "{width} cm × {length} cm" -} \ No newline at end of file +} diff --git a/i18n/dictionaries/en.json b/i18n/dictionaries/en.json index f13a60b2c..1e51379f2 100644 --- a/i18n/dictionaries/en.json +++ b/i18n/dictionaries/en.json @@ -1,5 +1,6 @@ { "Included (based on availability)": "Included (based on availability)", + "{amount} {currency}/night per adult": "{amount} {currency}/night per adult", "A destination or hotel name is needed to be able to search for a hotel room.": "A destination or hotel name is needed to be able to search for a hotel room.", "A photo of the room": "A photo of the room", "About meetings & conferences": "About meetings & conferences", @@ -8,6 +9,7 @@ "Add new card": "Add new card", "Address": "Address", "Airport": "Airport", + "All our breakfast buffets offer gluten free, vegan, and allergy-friendly options.": "All our breakfast buffets offer gluten free, vegan, and allergy-friendly options.", "Already a friend?": "Already a friend?", "Amenities": "Amenities", "Amusement park": "Amusement park", @@ -29,6 +31,7 @@ "Book reward night": "Book reward night", "Booking number": "Booking number", "Breakfast": "Breakfast", + "Breakfast buffet": "Breakfast buffet", "Breakfast excluded": "Breakfast excluded", "Breakfast included": "Breakfast included", "Breakfast restaurant": "Breakfast restaurant", @@ -159,6 +162,7 @@ "New password": "New password", "Next": "Next", "Nights needed to level up": "Nights needed to level up", + "No breakfast": "No breakfast", "No content published": "No content published", "No matching location found": "No matching location found", "No results": "No results", @@ -275,6 +279,7 @@ "Year": "Year", "Yes, discard changes": "Yes, discard changes", "Yes, remove my card": "Yes, remove my card", + "You can always change your mind later and add breakfast at the hotel.": "You can always change your mind later and add breakfast at the hotel.", "You canceled adding a new credit card.": "You canceled adding a new credit card.", "You have no previous stays.": "You have no previous stays.", "You have no upcoming stays.": "You have no upcoming stays.", @@ -309,6 +314,7 @@ "spendable points expiring by": "{points} spendable points expiring by {date}", "to": "to", "uppercase letter": "uppercase letter", + "{amount} {currency}": "{amount} {currency}", "{difference}{amount} {currency}": "{difference}{amount} {currency}", "{width} cm × {length} cm": "{width} cm × {length} cm" -} \ No newline at end of file +} diff --git a/i18n/dictionaries/fi.json b/i18n/dictionaries/fi.json index 064cffe7c..5e3ab2fc4 100644 --- a/i18n/dictionaries/fi.json +++ b/i18n/dictionaries/fi.json @@ -1,5 +1,6 @@ { "Included (based on availability)": "Sisältyy (saatavuuden mukaan)", + "{amount} {currency}/night per adult": "{amount} {currency}/yö per aikuinen", "A destination or hotel name is needed to be able to search for a hotel room.": "Kohteen tai hotellin nimi tarvitaan, jotta hotellihuonetta voidaan hakea.", "A photo of the room": "Kuva huoneesta", "About meetings & conferences": "About meetings & conferences", @@ -8,6 +9,7 @@ "Add new card": "Lisää uusi kortti", "Address": "Osoite", "Airport": "Lentokenttä", + "All our breakfast buffets offer gluten free, vegan, and allergy-friendly options.": "Kaikki aamiaisbuffettimme tarjoavat gluteenittomia, vegaanisia ja allergiaystävällisiä vaihtoehtoja.", "Already a friend?": "Oletko jo ystävä?", "Amenities": "Mukavuudet", "Amusement park": "Huvipuisto", @@ -29,6 +31,7 @@ "Book reward night": "Kirjapalkinto-ilta", "Booking number": "Varausnumero", "Breakfast": "Aamiainen", + "Breakfast buffet": "Aamiaisbuffet", "Breakfast excluded": "Aamiainen ei sisälly", "Breakfast included": "Aamiainen sisältyy", "Bus terminal": "Bussiasema", @@ -159,6 +162,7 @@ "New password": "Uusi salasana", "Next": "Seuraava", "Nights needed to level up": "Yöt, joita tarvitaan tasolle", + "No breakfast": "Ei aamiaista", "No content published": "Ei julkaistua sisältöä", "No matching location found": "Vastaavaa sijaintia ei löytynyt", "No results": "Ei tuloksia", @@ -276,6 +280,7 @@ "Year": "Vuosi", "Yes, discard changes": "Kyllä, hylkää muutokset", "Yes, remove my card": "Kyllä, poista korttini", + "You can always change your mind later and add breakfast at the hotel.": "Voit aina muuttaa mieltäsi myöhemmin ja lisätä aamiaisen hotelliin.", "You canceled adding a new credit card.": "Peruutit uuden luottokortin lisäämisen.", "You have no previous stays.": "Sinulla ei ole aiempia majoituksia.", "You have no upcoming stays.": "Sinulla ei ole tulevia majoituksia.", @@ -310,6 +315,7 @@ "spendable points expiring by": "{points} pistettä vanhenee {date} mennessä", "to": "to", "uppercase letter": "iso kirjain", + "{amount} {currency}": "{amount} {currency}", "{difference}{amount} {currency}": "{difference}{amount} {currency}", "{width} cm × {length} cm": "{width} cm × {length} cm" -} \ No newline at end of file +} diff --git a/i18n/dictionaries/no.json b/i18n/dictionaries/no.json index aea1e69a1..1dd97b8f2 100644 --- a/i18n/dictionaries/no.json +++ b/i18n/dictionaries/no.json @@ -1,5 +1,6 @@ { "Included (based on availability)": "Inkludert (basert på tilgjengelighet)", + "{amount} {currency}/night per adult": "{amount} {currency}/natt per voksen", "A destination or hotel name is needed to be able to search for a hotel room.": "Et reisemål eller hotellnavn er nødvendig for å kunne søke etter et hotellrom.", "A photo of the room": "Et bilde av rommet", "About meetings & conferences": "About meetings & conferences", @@ -8,6 +9,7 @@ "Add new card": "Legg til nytt kort", "Address": "Adresse", "Airport": "Flyplass", + "All our breakfast buffets offer gluten free, vegan, and allergy-friendly options.": "Alle våre frokostbufféer tilbyr glutenfrie, veganske og allergivennlige alternativer.", "Already a friend?": "Allerede Friend?", "Amenities": "Fasiliteter", "Amusement park": "Tivoli", @@ -29,6 +31,7 @@ "Book reward night": "Bestill belønningskveld", "Booking number": "Bestillingsnummer", "Breakfast": "Frokost", + "Breakfast buffet": "Breakfast buffet", "Breakfast excluded": "Frokost ekskludert", "Breakfast included": "Frokost inkludert", "Bus terminal": "Bussterminal", @@ -158,6 +161,7 @@ "New password": "Nytt passord", "Next": "Neste", "Nights needed to level up": "Netter som trengs for å komme opp i nivå", + "No breakfast": "Ingen frokost", "No content published": "Ingen innhold publisert", "No matching location found": "Fant ingen samsvarende plassering", "No results": "Ingen resultater", @@ -274,6 +278,7 @@ "Year": "År", "Yes, discard changes": "Ja, forkast endringer", "Yes, remove my card": "Ja, fjern kortet mitt", + "You can always change your mind later and add breakfast at the hotel.": "Du kan alltid ombestemme deg senere og legge til frokost på hotellet.", "You canceled adding a new credit card.": "Du kansellerte å legge til et nytt kredittkort.", "You have no previous stays.": "Du har ingen tidligere opphold.", "You have no upcoming stays.": "Du har ingen kommende opphold.", @@ -308,6 +313,7 @@ "spendable points expiring by": "{points} Brukbare poeng utløper innen {date}", "to": "til", "uppercase letter": "stor bokstav", + "{amount} {currency}": "{amount} {currency}", "{difference}{amount} {currency}": "{difference}{amount} {currency}", "{width} cm × {length} cm": "{width} cm × {length} cm" -} \ No newline at end of file +} diff --git a/i18n/dictionaries/sv.json b/i18n/dictionaries/sv.json index f70bb5cf3..6f5fcd37a 100644 --- a/i18n/dictionaries/sv.json +++ b/i18n/dictionaries/sv.json @@ -1,5 +1,6 @@ { "Included (based on availability)": "Ingår (baserat på tillgänglighet)", + "{amount} {currency}/night per adult": "{amount} {currency}/natt per vuxen", "A destination or hotel name is needed to be able to search for a hotel room.": "Ett destinations- eller hotellnamn behövs för att kunna söka efter ett hotellrum.", "A photo of the room": "Ett foto av rummet", "About meetings & conferences": "About meetings & conferences", @@ -8,6 +9,7 @@ "Add new card": "Lägg till nytt kort", "Address": "Adress", "Airport": "Flygplats", + "All our breakfast buffets offer gluten free, vegan, and allergy-friendly options.": "Alla våra frukostbufféer erbjuder glutenfria, veganska och allergivänliga alternativ.", "Already a friend?": "Är du redan en vän?", "Amenities": "Bekvämligheter", "Amusement park": "Nöjespark", @@ -29,6 +31,7 @@ "Book reward night": "Boka frinatt", "Booking number": "Bokningsnummer", "Breakfast": "Frukost", + "Breakfast buffet": "Frukostbuffé", "Breakfast excluded": "Frukost ingår ej", "Breakfast included": "Frukost ingår", "Bus terminal": "Bussterminal", @@ -160,6 +163,7 @@ "New password": "Nytt lösenord", "Next": "Nästa", "Nights needed to level up": "Nätter som behövs för att gå upp i nivå", + "No breakfast": "Ingen frukost", "No content published": "Inget innehåll publicerat", "No matching location found": "Ingen matchande plats hittades", "No results": "Inga resultat", @@ -276,6 +280,7 @@ "Year": "År", "Yes, discard changes": "Ja, ignorera ändringar", "Yes, remove my card": "Ja, ta bort mitt kort", + "You can always change your mind later and add breakfast at the hotel.": "Du kan alltid ändra dig senare och lägga till frukost på hotellet.", "You canceled adding a new credit card.": "Du avbröt att lägga till ett nytt kreditkort.", "You have no previous stays.": "Du har inga tidigare vistelser.", "You have no upcoming stays.": "Du har inga planerade resor.", @@ -310,6 +315,7 @@ "spendable points expiring by": "{points} poäng förfaller {date}", "to": "till", "uppercase letter": "stor bokstav", + "{amount} {currency}": "{amount} {currency}", "{difference}{amount} {currency}": "{difference}{amount} {currency}", "{width} cm × {length} cm": "{width} cm × {length} cm" -} \ No newline at end of file +} diff --git a/types/components/enterDetails/breakfast.ts b/types/components/enterDetails/breakfast.ts new file mode 100644 index 000000000..868bc96a1 --- /dev/null +++ b/types/components/enterDetails/breakfast.ts @@ -0,0 +1,5 @@ +import { z } from "zod" + +import { breakfastSchema } from "@/components/HotelReservation/EnterDetails/Breakfast/schema" + +export interface BreakfastSchema extends z.output {} diff --git a/types/enums/breakfast.ts b/types/enums/breakfast.ts new file mode 100644 index 000000000..567db2860 --- /dev/null +++ b/types/enums/breakfast.ts @@ -0,0 +1,4 @@ +export enum breakfastEnum { + BREAKFAST = "BREAKFAST", + NO_BREAKFAST = "NO_BREAKFAST", +}