[2026-04-28 10:17:02] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/full_test?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du"}},"response":{"status":200,"type":"text/html; charset=UTF-8","body":"<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"UTF-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n  <title>Document</title>\n  \n  <style>\n    body {\n      background: #d5d2d2 !important;\n      font-family: Arial, sans-serif;\n    }\n    #rooms_list.disabled {\n      pointer-events: none;\n    }\n  </style>\n\n  <!-- You MUST include jQuery 3.4+ before Fomantic -->\n  <script src=\"https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js\"></script>\n  <link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/fomantic-ui/2.9.4/semantic.min.css\">\n  <script src=\"https://cdnjs.cloudflare.com/ajax/libs/fomantic-ui/2.9.4/semantic.min.js\"></script>\n\n  <script src=\"https://pfau-software.de/json-viewer/dist/iife/index.js\"></script>\n  <script>\n    function setActiveMenuItem() {\n      const path = window.location.hash;\n      const menuItems = document.querySelectorAll('.ui.menu .item');\n      menuItems.forEach(item => {\n        if (item.getAttribute('href') === path) {\n          item.classList.add('active');\n        } else {\n          item.classList.remove('active');\n        }\n      });\n    }\n\n    function createInput(id, name, placeholder,type,value) {\n      const input = document.createElement(\"input\");\n      input.id = id;\n      input.name = name;\n      input.placeholder = placeholder;\n      input.className = \"ui input\";\n      input.type = type;\n      input.value = value;\n      return input;\n    }\n\n    function createFormField(id, name, placeholder,type,value,label_text) {\n      const field = document.createElement(\"div\");\n      field.className = \"field\";\n      const label = document.createElement(\"label\");\n      label.htmlFor = id;\n      label.textContent = label_text ?? placeholder;\n      field.appendChild(label);\n      field.appendChild(createInput(id, name, placeholder,type,value));\n      return field;\n    }\n\n    function pings(event) {\n      const jsonViewerContainer = document.getElementById(\"jsonViewerContainer\");\n      jsonViewerContainer.classList.add(\"loading\");\n      jsonViewerContainer.classList.add(\"disabled\");\n      fetch('/Omnibees/ping?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du')\n        .then(response => response.json())\n        .then(data => {\n          jsonViewer.data = data;\n        })\n        .catch(error => console.error('Error:', error))\n        .finally(() => {\n          jsonViewerContainer.classList.remove(\"loading\");\n          jsonViewerContainer.classList.remove(\"disabled\");\n          event.target.classList.add(\"active\");\n          setActiveMenuItem();\n        });\n    }\n\n    function hotelSearch(event) {\n      const jsonViewerContainer = document.getElementById(\"jsonViewerContainer\");\n      jsonViewerContainer.classList.add(\"loading\");\n      jsonViewerContainer.classList.add(\"disabled\");\n      fetch('/Omnibees/HotelSearch?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&checkIn=2023-10-01&checkOut=2023-10-02&cityCode=NYC')\n        .then(response => response.json())\n        .then(data => {\n          jsonViewer.data = data;\n        })\n        .catch(error => console.error('Error:', error))\n        .finally(() => {\n          jsonViewerContainer.classList.remove(\"loading\");\n          jsonViewerContainer.classList.remove(\"disabled\");\n          event.target.classList.add(\"active\");\n          setActiveMenuItem();\n        });\n    }\n\n    function GetHotelDescriptiveInfo(event, hotelCode = 198335) {\n      const jsonViewerContainer = document.getElementById(\"jsonViewerContainer\");\n      jsonViewerContainer.classList.add(\"loading\");\n      jsonViewerContainer.classList.add(\"disabled\");\n      fetch(`/Omnibees/GetHotelDescriptiveInfo?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=${hotelCode}`)\n        .then(response => response.json())\n        .then(data => {\n          jsonViewer.data = data;\n          let resort_data = data.HotelDescriptiveContentsType.HotelDescriptiveContents[0];\n          let policies = ``;\n          resort_data.Policies.ChildTerms.forEach(policy => {\n            policies += `<p>${policy.Name} - ${policy.MinAge} to ${policy.MaxAge}</p>`;\n          });\n\n          let amenities = ``;\n          resort_data.HotelInfo.HotelAmenities.forEach(amenity => {\n            amenities += `<li>${amenity.HotelAmenity}</li>`;\n          });\n          \n          let hotel_card = `\n          <div class=\"ui card\">\n            <div class=\"content\">\n              <a class=\"header\">${resort_data.HotelRef.HotelName}</a>\n              <div class=\"meta\">\n                <span class=\"date\">\n                 Checkin Time: ${resort_data.HotelInfo.CheckInHours.Start} - Checkout Time: ${resort_data.HotelInfo.CheckInHours.End}\n                </span>\n              </div>\n              <div class=\"description\">\n                ${resort_data.HotelInfo.Descriptions.DescriptiveText}\n              </div>\n            </div>\n            <div class=\"extra content\">\n              Age Policies:\n              ${policies}\n              <br/>\n              Amenities:\n              <ul>${amenities}</ul>\n            </div>\n          </div>\n          `;\n\n          document.getElementById(\"viewArea\").innerHTML = \"\";\n          document.getElementById(\"viewArea\").innerHTML = hotel_card;\n        })\n        .catch(error => console.error('Error:', error))\n        .finally(() => {\n          jsonViewerContainer.classList.remove(\"loading\");\n          jsonViewerContainer.classList.remove(\"disabled\");\n          event.target.classList.add(\"active\");\n          setActiveMenuItem();\n        });\n    }\n\n    function ResortSelector(Container,resorts){\n      let hotel_selector = createDropdown(\"hotel_selector\", \"hotel_selector\", resorts);\n\n      let resort_selector = document.createElement(\"div\");\n      resort_selector.className = \"field\";\n\n      let resort_label = document.createElement(\"label\");\n      resort_label.textContent = \"Select a hotel\";\n      resort_label.htmlFor = \"hotel_selector\";\n\n      resort_selector.appendChild(resort_label);\n      resort_selector.appendChild(hotel_selector);\n\n      Container.appendChild(resort_selector);\n\n      let rates_selector = document.createElement(\"div\");\n      rates_selector.className = \"field\";\n      let rates_label = document.createElement(\"label\");\n      rates_label.textContent = \"Select a rate plan\";\n      rates_label.htmlFor = \"rates_selector\";\n\n      rates_selector.appendChild(rates_label);\n      let rates_selector_input = document.createElement(\"select\");\n      rates_selector_input.id = \"rates_selector\";\n      rates_selector_input.name = \"rates_selector\";\n      rates_selector_input.className = \"ui loading disabled dropdown\";\n      rates_selector.appendChild(rates_selector_input);\n      Container.appendChild(rates_selector);\n\n      // Initialize the dropdown\n      $(hotel_selector).dropdown(\n        { \n          placeholder: 'Select a hotel', \n          onChange: function(value) {\n            \n            GetHotelRatePlans(event, value, function(data){\n              // Clear previous options\n              rates_selector_input.innerHTML = '';\n              \n              // Populate the rates selector with new options\n              data.RatePlans.RatePlan\t.forEach(rate => {\n                let option = document.createElement(\"option\");\n                option.value = rate.RatePlanID;\n                option.textContent = rate.RatePlanName;\n                rates_selector_input.appendChild(option);\n              });\n\n              // Reinitialize the dropdown\n              $(rates_selector_input).dropdown();\n              $(rates_selector_input).parent().removeClass(\"disabled loading\");\n            }\n          );\n      } });\n    }\n    \n    function createRatesSelector(rates,selector){\n\n    }\n\n    function Calendars(Container){\n      let cin = createDateField(\"checkIn\", \"checkIn\", \"2025-10-01\");\n      let cinContainer = document.createElement(\"div\");\n      cinContainer.className = \"field\";\n      \n      let cinLabel = document.createElement(\"label\");\n      cinLabel.textContent = \"Check In\";\n      cinLabel.htmlFor = \"checkIn\";\n      cinContainer.appendChild(cinLabel);\n      cinContainer.appendChild(cin);\n\n\n      let cout = createDateField(\"checkOut\", \"checkOut\", \"2025-10-02\");\n      let coutContainer = document.createElement(\"div\");\n      coutContainer.className = \"field\";\n\n      let coutLabel = document.createElement(\"label\");\n      coutLabel.textContent = \"Check Out\";\n      coutLabel.htmlFor = \"checkOut\";\n      coutContainer.appendChild(coutLabel);\n      coutContainer.appendChild(cout);\n\n\n      Container.appendChild(cinContainer);\n      Container.appendChild(coutContainer);\n\n      $(cin).calendar({\n        type: 'date',\n        endCalendar: $(\"#checkOut\"),\n        formatter: {\n          date: 'YYYY-MM-DD'\n        }\n      });\n      $(cout).calendar({\n        type: 'date',\n        startCalendar: $(\"#checkIn\"),\n        formatter: {\n          date: 'YYYY-MM-DD'\n        }\n      });\n\n    }\n\n    function PaxSelector(Container){\n\n      let adults = document.createElement(\"input\");\n      adults.type = \"number\";\n      adults.name = \"adults\";\n      adults.id = \"adults\";\n      adults.value = 1;\n      adults.className = \"ui input\";\n      \n      let adultsLabel = document.createElement(\"label\");\n      adultsLabel.textContent = \"Adults\";\n      adultsLabel.htmlFor = \"adults\";\n      \n      let adultsDiv = document.createElement(\"div\");\n      adultsDiv.className = \"ui input\";\n      adultsDiv.appendChild(adults);\n\n      let adultsField = document.createElement(\"div\");\n      adultsField.className = \"field\";\n      adultsField.appendChild(adultsLabel);\n      adultsField.appendChild(adultsDiv);\n      Container.appendChild(adultsField);\n\n      let childs = document.createElement(\"input\");\n      childs.type = \"number\";\n      childs.name = \"childs\";\n      childs.id = \"childs\";\n      childs.value = 0;\n      childs.className = \"ui input\";\n      \n      let childsLabel = document.createElement(\"label\");\n      childsLabel.textContent = \"Childs\";\n      childsLabel.htmlFor = \"childs\";\n      \n      let childsDiv = document.createElement(\"div\");\n      childsDiv.className = \"ui input\";\n      childsDiv.appendChild(childs);\n\n      let childsField = document.createElement(\"div\");\n      childsField.className = \"field\";\n      childsField.appendChild(childsLabel);\n      childsField.appendChild(childsDiv);\n      Container.appendChild(childsField);\n\n      let childs_ages = document.createElement(\"input\");\n      childs_ages.type = \"text\";\n      childs_ages.name = \"childs_ages\";\n      childs_ages.id = \"childs_ages\";\n      childs_ages.value = \"\";\n      childs_ages.className = \"ui input\";\n\n      let childs_agesLabel = document.createElement(\"label\");\n      childs_agesLabel.textContent = \"Childs Ages\";\n      childs_agesLabel.htmlFor = \"childs_age\";\n\n      let childsDiv_age = document.createElement(\"div\");\n      childsDiv_age.className = \"ui input\";\n      childsDiv_age.appendChild(childs_ages);\n\n      let childsField_age = document.createElement(\"div\");\n      childsField_age.className = \"field\";\n      childsField_age.appendChild(childs_agesLabel);\n      childsField_age.appendChild(childsDiv_age);\n      Container.appendChild(childsField_age);\n    }\n\n    function ShowReservationStartForm(event){\n      let viewArea = document.getElementById(\"viewArea\");\n      viewArea.innerHTML = \"\";\n      \n      let Container = document.createElement(\"div\");\n      Container.className = \"ui form segment\";\n      viewArea.appendChild(Container);\n\n      let header = document.createElement(\"h3\");\n      header.textContent = \"Hotel Availability Calendar\";\n      header.className = \"ui header\";\n      Container.appendChild(header);\n      \n      let resorts = [\n        { value: 6220, text: \"Royal Solaris Los Cabos\" },\n        { value: 5975, text: \"Royal Solaris Cancun\" },\n        { value: 6219, text: \"GR Solaris\" },\n        { value: 6215, text: \"GR Caribe\" },\n        { value: 20189, text: \"GR Solaris Lighthouse\" }\n      ];\n\n      let main_row = document.createElement(\"div\");\n      main_row.className = \"two fields\";\n      Container.appendChild(main_row);\n\n      ResortSelector(main_row, resorts);\n      \n\n\n      let second_row = document.createElement(\"div\");\n      second_row.className = \"fields\";\n      Container.appendChild(second_row);\n\n      Calendars(second_row);\n\n      let third_row = document.createElement(\"div\");\n      third_row.className = \"fields\";\n      Container.appendChild(third_row);\n      PaxSelector(second_row);\n\n      let fourth_row = document.createElement(\"div\");\n      fourth_row.className = \"fields\";\n      Container.appendChild(fourth_row);\n\n\n      let searchButton = document.createElement(\"button\");\n      searchButton.className = \"ui primary button\";\n      searchButton.textContent = \"Search Availability\";\n      searchButton.onclick = function() {\n        GetHotelAvail(event);\n      };\n\n      \n\n      let btnContainer = document.createElement(\"div\");\n      btnContainer.className = \"sixteen wide field\";\n      btnContainer.appendChild(searchButton);\n\n      let searchButton2 = document.createElement(\"button\");\n      searchButton2.className = \"ui orange button\";\n      searchButton2.textContent = \"second search\";\n      searchButton2.onclick = function() {\n        HotelAvailCalendar(event);\n      };\n      btnContainer.appendChild(searchButton2);\n\n      fourth_row.appendChild(btnContainer);\n\n\n      let rooms_segment = document.createElement(\"div\");\n      rooms_segment.className = \"ui segment\";\n\n      let rooms_list = document.createElement(\"div\");\n      rooms_list.className = \"ui list\";\n      rooms_list.id = \"rooms_list\";\n\n      let rooms_header = document.createElement(\"h4\");\n      rooms_header.textContent = \"Available Rooms\";\n      rooms_header.className = \"ui header\";\n      rooms_segment.appendChild(rooms_header);\n\n      rooms_segment.appendChild(rooms_list);\n\n      viewArea.appendChild(rooms_segment);\n\n      let warnings_area = document.createElement(\"div\");\n      warnings_area.className = \"ui list\";\n      warnings_area.id = \"warnings_area\";\n      viewArea.appendChild(warnings_area);\n\n      event.target.classList.add(\"active\");\n      setActiveMenuItem();\n    }\n\n\n    function showRooms(rooms,rates,reservation_details){\n\n      let rooms_list = document.getElementById(\"rooms_list\");\n      rooms_list.innerHTML = \"\"; // Clear previous rooms\n\n      if (!rooms || rooms.length === 0) {\n        let noRoomsMessage = document.createElement(\"div\");\n        noRoomsMessage.textContent = \"No rooms available for the selected dates.\";\n        noRoomsMessage.className = \"ui message\";\n        rooms_list.appendChild(noRoomsMessage);\n        return;\n      }\n      \n\n      rooms.forEach(room => {\n        let roomItem = document.createElement(\"div\");\n        roomItem.className = \"item\";\n\n        let roomContent = document.createElement(\"div\");\n        roomContent.className = \"content\";\n\n        let roomHeader = document.createElement(\"div\");\n        roomHeader.className = \"header\";\n        roomHeader.textContent = `${room.RoomID} - ${room.RoomName}`;\n\n        let roomDescription = document.createElement(\"div\");\n        roomDescription.className = \"description\";\n        roomDescription.textContent = `${room.RoomDescription.Description}`;\n\n        roomContent.appendChild(roomHeader);\n        roomContent.appendChild(roomDescription);\n        roomItem.appendChild(roomContent);\n\n        rooms_list.appendChild(roomItem);\n\n        let floatingDiv = document.createElement(\"div\");\n        floatingDiv.className = \"right floated content\";\n\n        let price = document.createElement(\"div\");\n        price.className = \"ui small header\";\n        price.setAttribute('data-idroom', room.RoomID);\n        floatingDiv.appendChild(price);\n\n        let bookButton = document.createElement(\"button\");\n        bookButton.className = \"ui orange button\";\n        bookButton.textContent = \"Book Now\";\n        bookButton.onclick = function() {\n          // Implement booking functionality here\n          //alert(`Booking for room: ${room.RoomID}`);\n          reservation_details.roomCode = room.RoomID;\n          startCheckout(reservation_details);\n        };\n        floatingDiv.appendChild(bookButton);\n        roomItem.appendChild(floatingDiv);\n      });\n\n    }\n\n    function HotelAvailCalendar(){\n       let hotelCode = document.getElementById(\"hotel_selector\").value;\n      let checkIn = document.getElementById(\"checkIn_field\").value;\n      let checkOut = document.getElementById(\"checkOut_field\").value;\n      let adultsCount = document.getElementById(\"adults\").value;\n      let childsCount = document.getElementById(\"childs\").value;\n      let ratesPlan = document.getElementById(\"rates_selector\").value;\n\n      jsonViewerContainer.classList.add(\"loading\");\n      jsonViewerContainer.classList.add(\"disabled\");\n\n      const postData = {\n        api_key: 'yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du',\n        hotelCode: hotelCode,\n        checkIn: checkIn,\n        checkOut: checkOut,\n        ratesPlan: ratesPlan,\n        guests: {\n          adults: adultsCount,\n          children: childsCount\n        }\n      };\n\n      fetch(`/Omnibees/HotelAvailCalendar`,{\n          method: 'POST',\n          headers: {\n            'Content-Type': 'application/json',\n            // You can also use 'application/x-www-form-urlencoded' if needed\n          },\n          body: JSON.stringify(postData)\n        })\n        .then(response => response.json())\n        .then(data => {\n          jsonViewer.data = data;\n        })\n        \n        .catch(error => console.error('Error:', error))\n        .finally(() => {\n          jsonViewerContainer.classList.remove(\"loading\");\n          jsonViewerContainer.classList.remove(\"disabled\");\n          \n        });\n    }\n\n    function GetHotelRatePlans(event,resort,action){\n      const jsonViewerContainer = document.getElementById(\"jsonViewerContainer\");\n      jsonViewerContainer.classList.add(\"loading\");\n      jsonViewerContainer.classList.add(\"disabled\");\n\n      fetch(`/Omnibees/GetHotelRatePlans?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=${resort}`)\n        .then(response => response.json())\n        .then(data => {\n          if(typeof action === 'function') {\n            action(data);\n          } else {\n            jsonViewer.data = data;\n          }\n        })\n        .catch(error => console.error('Error:', error))\n        .finally(() => {\n          if(typeof action !== 'function') {\n            jsonViewerContainer.classList.remove(\"loading\");\n            jsonViewerContainer.classList.remove(\"disabled\");\n            event.target.classList.add(\"active\");\n            setActiveMenuItem();\n          }\n        });\n    }\n\n    function GetHotelAvail(event) {\n      const jsonViewerContainer = document.getElementById(\"jsonViewerContainer\");\n      jsonViewerContainer.classList.add(\"loading\");\n      jsonViewerContainer.classList.add(\"disabled\");\n      var warnings_area = document.getElementById(\"warnings_area\");\n      warnings_area.innerHTML = \"\"; // Clear previous warnings\n\n      let checkIn = document.getElementById(\"checkIn_field\").value;\n      let checkOut = document.getElementById(\"checkOut_field\").value;\n      let hotelCode = document.getElementById(\"hotel_selector\").value;\n      let ratesPlan = document.getElementById(\"rates_selector\").value;\n      let adults = document.getElementById(\"adults\").value;\n      let children = document.getElementById(\"childs\").value;\n      let children_ages = document.getElementById(\"childs_ages\").value;\n\n      fetch(`/Omnibees/GetHotelAvail`, {\n        method: 'POST',\n        headers: {\n          'Content-Type': 'application/json'\n        },\n        body: JSON.stringify({\n          api_key: 'yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du',\n          checkIn: checkIn,\n          checkOut: checkOut,\n          hotelCode: hotelCode,\n          ratesPlan: ratesPlan,\n          adults: adults,\n          children: children,\n          children_ages: children_ages\n        })\n      })\n        .then(response => response.json())\n        .then(data => {\n          jsonViewer.data = data;\n          return data;\n        })\n        .then(data => {\n          if(data.WarningsType !== null){\n            data.WarningsType.forEach(warning => {\n              console.warn('Warning:', warning);\n              let warning_item = document.createElement(\"div\");\n              warning_item.className = \"item\";\n              warning_item.textContent = warning;\n              warnings_area.appendChild(warning_item);\n            });\n          }else{\n\n            let reservation_details = {\n              checkIn: checkIn,\n              checkOut: checkOut,\n              hotelCode: hotelCode,\n              ratesPlan: ratesPlan,\n              adults: adults,\n              children: children,\n              children_ages: children_ages\n            };\n\n            showRooms(data.RoomStaysType.RoomStays[0].RoomTypes,data.RoomStaysType.RoomStays[0].RoomRates,reservation_details);\n\n            data.RoomStaysType.RoomStays[0].RoomRates\t.forEach(roomRate => {\n\n              let tot = roomRate.Total.AmountAfterTax;\n              $(`[data-idroom=${roomRate.RoomID}]`).text(`$: ${tot} USD`);\n            });\n          }\n          \n        })\n        .catch(error => console.error('Error:', error))\n        .finally(() => {\n          jsonViewerContainer.classList.remove(\"loading\");\n          jsonViewerContainer.classList.remove(\"disabled\");\n          event.target.classList.add(\"active\");\n          setActiveMenuItem();\n        });\n    }\n\n    function createDateField(name,id, value) {\n      let dateField = document.createElement(\"input\");\n      dateField.type = \"text\";\n      dateField.name = name;\n      dateField.id = id + \"_field\";\n      dateField.value = value;\n\n      let div = document.createElement(\"div\");\n      div.className = \"ui input left icon\";\n      div.appendChild(dateField);\n\n      let icon = document.createElement(\"i\");\n      icon.className = \"calendar icon\";\n      div.appendChild(icon);\n\n      let Container = document.createElement(\"div\");\n      Container.className = \"ui calendar\";\n      Container.id = id;\n\n      Container.appendChild(div);\n\n      return Container;\n    }\n\n    function createDropdown(name, id, options) {\n      let select = document.createElement(\"select\");\n      select.name = name;\n      select.id = id;\n      select.className = \"ui dropdown\";\n      let defaultOption = document.createElement(\"option\");\n      defaultOption.value = \"\";\n      defaultOption.textContent = \"Select an option\";\n      select.appendChild(defaultOption);\n      options.forEach(option => {\n        let opt = document.createElement(\"option\");\n        opt.value = option.value;\n        opt.textContent = option.text;\n        select.appendChild(opt);\n      });\n\n      return select;\n    }\n\n    function localStart() {\n      $(\".generalRequest\").unbind().click(function(event) {\n        event.preventDefault();\n        const rute = $(this).data(\"rute\");\n        const jsonViewerContainer = document.getElementById(\"jsonViewerContainer\");\n        jsonViewerContainer.classList.add(\"loading\");\n        jsonViewerContainer.classList.add(\"disabled\");\n        postSecuence = false;\n        if($(this).data(\"postsecuence\"))\n          postSecuence = $(this).data(\"postsecuence\");\n        \n        let postData = {};\n\n        if ($(this).data(\"form\")) {\n          const form = document.getElementById($(this).data(\"form\"));\n          const formData = new FormData(form);\n          formData.forEach((value, key) => {\n            postData[key] = value;\n          });\n        }\n\n        fetch(`/Omnibees/${rute}?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du`,{\n          method: 'POST',\n          headers: {\n            'Content-Type': 'application/json',\n            // You can also use 'application/x-www-form-urlencoded' if needed\n          },\n          body: JSON.stringify(postData)\n        })\n          .then(response => response.json())\n          .then(data => {\n            jsonViewer.data = data;\n            console.log(\"Data fetched:\", data);\n            console.log(\"Post secuence:\", postSecuence);\n            if(postSecuence){\n              console.log(\"Executing post secuence\" + postSecuence);\n              window[postSecuence](data);\n            }\n          })\n          .catch(error => console.error('Error:', error))\n          .finally(() => {\n            jsonViewerContainer.classList.remove(\"loading\");\n            jsonViewerContainer.classList.remove(\"disabled\");\n            event.target.classList.add(\"active\");\n            setActiveMenuItem();\n          });\n      });\n    }\n\n    function startCheckout(reservation_details){\n      let container = document.createElement(\"div\");\n      container.className = \"ui segment\";\n\n      let title = document.createElement(\"h3\");\n      title.textContent = \"Checkout\";\n      container.appendChild(title);\n\n      var form = document.createElement(\"form\");\n      form.className = \"ui form\";\n\n      form.appendChild(createFormField(\"resortCode\", \"resortCode\", \"resortCode\", \"text\", reservation_details.hotelCode));\n      form.appendChild(createFormField(\"roomCode\", \"roomCode\", \"roomCode\", \"text\", reservation_details.roomCode));\n      form.appendChild(createFormField(\"RatePlanID\", \"RatePlanID\", \"RatePlanID\", \"text\", reservation_details.ratesPlan));\n      form.appendChild(createFormField(\"checkIn\", \"checkIn\", \"checkIn\", \"text\", reservation_details.checkIn));\n      form.appendChild(createFormField(\"checkOut\", \"checkOut\", \"checkOut\", \"text\", reservation_details.checkOut));\n      form.appendChild(createFormField(\"adults\", \"adults\", \"adults\", \"text\", reservation_details.adults));\n      form.appendChild(createFormField(\"children\", \"children\", \"children\", \"text\", reservation_details.children));\n      form.appendChild(createFormField(\"children_ages\", \"children_ages\", \"children_ages\", \"text\", reservation_details.children_ages));\n\n      let title_pax = document.createElement(\"h3\");\n      title_pax.textContent = \"Pax contact details\";\n      form.appendChild(title_pax);\n\n      let contactArea = document.createElement(\"div\");\n\n      for(let i=0; i < parseInt(reservation_details.adults); i++){\n        let paxForm = contactForPax(i+1);\n        contactArea.appendChild(paxForm);\n      }\n      form.appendChild(contactArea);\n\n      container.appendChild(form);\n      document.getElementById(\"viewArea\").appendChild(container);\n      document.getElementById(\"rooms_list\").classList.add(\"disabled\");\n\n      let SendHotelReservation = document.createElement(\"div\");\n      SendHotelReservation.className = \"ui teal button\";\n      SendHotelReservation.textContent = \"Send Hotel Reservation\";\n      SendHotelReservation.onclick = function() {\n        // Implement booking functionality here\n        //alert(`Sending reservation`);\n        SendHotelReservationFunction(form);\n      };\n      form.appendChild(SendHotelReservation);\n    }\n\n    function contactForPax(index){\n      let container = document.createElement(\"div\");\n      container.className = \"ui segment\";\n\n      let title = document.createElement(\"h3\");\n      title.textContent = \"Contact for Pax #\" + index;\n      container.appendChild(title);\n\n      let form = document.createElement(\"div\");\n      form.className = \"ui form\";\n\n      let first_name = document.createElement(\"input\");\n      first_name.type = \"text\";\n      first_name.name = \"first_name_\" + index;\n      first_name.placeholder = \"First Name\";\n      form.appendChild(first_name);\n\n      let last_name = document.createElement(\"input\");\n      last_name.type = \"text\";\n      last_name.name = \"last_name_\" + index;\n      last_name.placeholder = \"Last Name\";\n      form.appendChild(last_name);\n\n      let email = document.createElement(\"input\");\n      email.type = \"email\";\n      email.name = \"email_\" + index;\n      email.placeholder = \"Email\";\n      form.appendChild(email);\n\n      let phone = document.createElement(\"input\");\n      phone.type = \"tel\";\n      phone.name = \"phone_\" + index;\n      phone.placeholder = \"Phone\";\n      form.appendChild(phone);\n      container.appendChild(form);\n      return container\n    }\n\n\n    function SendHotelReservationFunction(form) {\n      var warnings_area = document.getElementById(\"warnings_area\");\n      warnings_area.innerHTML = \"\";\n      let formData = new FormData(form);\n      let jsonData = {};\n\n      formData.forEach( (value, key) => {\n        jsonData[key] = value;\n      });\n\n      jsonData.api_key = 'yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du';\n\n      fetch(`/Omnibees/SendHotelResInitiate`, {\n        method: 'POST',\n        headers: {\n          'Content-Type': 'application/json'\n        },\n        body: JSON.stringify(jsonData)\n      })\n        .then(response => response.json())\n        .then(data => {\n          jsonViewer.data = data;\n          return data;\n        })\n        .then(data => {\n          if(data.WarningsType !== null){\n            data.WarningsType.forEach(warning => {\n              console.warn('Warning:', warning);\n              let warning_item = document.createElement(\"div\");\n              warning_item.className = \"item\";\n              warning_item.textContent = warning;\n              warnings_area.appendChild(warning_item);\n            });\n          }else{\n            if(data.HotelReservationsType !== null){\n              if(data.HotelReservationsType.HotelReservations.length >0){\n                var reservation_code = data.HotelReservationsType.HotelReservations[0].UniqueID.ID;\n                var transaction_id = data.TransactionIdentifier;\n                console.log('Reservation Code:', reservation_code);\n                console.log('Transaction ID:', transaction_id);\n                alert(`Reservation successful! Your reservation code is: ${reservation_code}`);\n                ShowCommitArea(reservation_code, transaction_id);\n              }\n            }\n          }\n          \n        })\n        .catch(error => console.error('Error:', error))\n        .finally(() => {\n          jsonViewerContainer.classList.remove(\"loading\");\n          jsonViewerContainer.classList.remove(\"disabled\");\n          //event.target.classList.add(\"active\");\n          setActiveMenuItem();\n        });\n    }\n\n    function ShowCommitArea(reservation_code, transaction_id) {\n      var commit_area = document.createElement(\"div\");\n      commit_area.className = \"ui segment\";\n\n      let title = document.createElement(\"h3\");\n      title.textContent = \"Commit Reservation\";\n      commit_area.appendChild(title);\n\n      let form = document.createElement(\"form\");\n      form.className = \"ui form\";\n\n      form.appendChild(createFormField(\"reservationId\", \"reservationId\", \"Reservation ID\", \"text\", reservation_code));\n\n      form.appendChild(createFormField(\"transactionId\", \"transactionId\", \"Transaction ID\", \"text\", transaction_id));\n\n      var button = document.createElement(\"div\");\n      button.className = \"ui teal button\";\n      button.textContent = \"Commit Reservation\";\n      button.onclick = function() {\n        sendCommit(reservation_code, transaction_id);\n      };\n      form.appendChild(button);\n\n      commit_area.appendChild(form);\n      document.getElementById(\"viewArea\").appendChild(commit_area);\n    }\n\n    function sendCommit(reservationId, transactionId) {\n      var commitData = {\n        reservationId: reservationId,\n        transactionId: transactionId,\n        api_key: 'yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du'\n      };\n\n      fetch(`/Omnibees/SendHotelResCommit`, {\n        method: 'POST',\n        headers: {\n          'Content-Type': 'application/json'\n        },\n        body: JSON.stringify(commitData)\n      })\n        .then(response => response.json())\n        .then(data => {\n          if(data.WarningsType !== null){\n            data.WarningsType.forEach(warning => {\n              console.warn('Warning:', warning);\n              let warning_item = document.createElement(\"div\");\n              warning_item.className = \"item\";\n              warning_item.textContent = warning;\n              warnings_area.appendChild(warning_item);\n            });\n          }else{\n            if(data.ResResponseType == \"Commited\"){\n              alert(`Reservation committed successfully!`);\n            }else{\n              alert(`Reservation commit failed: ${data.ResResponseType}`);\n            }\n          }\n          \n        })\n        .catch(error => console.error('Error:', error));\n    }\n\n    function showReservationList(data){\n      let viewArea = document.getElementById(\"viewArea\");\n      viewArea.innerHTML = \"\";\n      let container = document.createElement(\"div\");\n      container.className = \"ui segment\";\n      viewArea.appendChild(container);\n      let title = document.createElement(\"h3\");\n      title.textContent = \"Reservations List\";\n      container.appendChild(title);\n\n      let list = document.createElement(\"div\");\n      list.className = \"ui list\";\n      container.appendChild(list);\n\n      data.HotelReservationsType.HotelReservations.forEach(reservation => {\n        let item = document.createElement(\"div\");\n        item.className = \"item\";\n\n        let content = document.createElement(\"div\");\n        content.className = \"content\";\n\n        let header = document.createElement(\"div\");\n        header.className = \"header\";\n        header.textContent = `Reservation ID: ${reservation.UniqueID.ID} `;\n\n        let description = document.createElement(\"div\");\n        description.className = \"description\";\n        description.innerHTML = ``;\n        reservation.RoomStaysType.RoomStays.forEach(room => {\n          description.innerHTML += `<p>Room: ${room.IndexNumber} \n          - CheckIn: ${room.RoomRates.EffectiveDate} \n          - CheckOut: ${room.RoomRates.ExpireDate} \n          - Total: ${room.Total.AmountAfterTax}\n          </p>`;\n        });\n        content.appendChild(description);\n\n        content.appendChild(header);\n        item.appendChild(content);\n        list.appendChild(item);\n      });\n    }\n\n  </script>\n</head>\n<body onload=\"localStart()\">\n  <br>\n  <div class=\"ui container\">\n    <div class=\"ui grid\">\n      <div class=\"sixteen wide column\">\n        <div class=\"ui header\">\n          Omnibees API Test\n        </div>\n      </div>\n      <div class=\" row\">\n        <div class=\"six wide column\">\n          <div class=\"ui vertical fluid  menu\">\n            <a class=\"item\" href=\"#Omnibees/ping\" onClick=\"pings(event);\">Ping</a>\n\n            <a class=\"item generalRequest\" href=\"#Omnibees/GetCountry\" data-rute=\"GetCountry\">GetCountry</a>\n            <a class=\"item generalRequest\" href=\"#Omnibees/GetState\" data-rute=\"GetState\" data-form=\"getStateForm\">GetState</a>\n            <div class=\"item\">\n              <form action=\"\" id=\"getStateForm\">\n                <div class=\"ui form\">\n                  <div class=\"field\">\n                    <label for=\"country_uid\">Country Code</label>\n                    <input type=\"text\" id=\"country_uid\" name=\"country_uid\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"state_search_code\">state search code</label>\n                    <input type=\"text\" id=\"state_search_code\" name=\"state_search_code\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"zone_search_code\">zone search code</label>\n                    <input type=\"text\" id=\"zone_search_code\" name=\"zone_search_code\" value=\"\" placeholder=\"\">\n                  </div>\n                  \n                </div>\n              </form>\n\n            </div>\n            <a class=\"item generalRequest\" href=\"#Omnibees/GetCity\" data-rute=\"GetCity\" data-form=\"getCityForm\">GetCity</a>\n            <div class=\"item\">\n              <form action=\"\" id=\"getCityForm\">\n                <div class=\"ui form\">\n                  <div class=\"field\">\n                    <label for=\"country_uid_city\">Country Code</label>\n                    <input type=\"text\" id=\"country_uid_city\" name=\"country_uid\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"state_search_code_city\">state search code</label>\n                    <input type=\"text\" id=\"state_search_code_city\" name=\"state_search_code\" value=\"\" placeholder=\"\">\n                  </div>\n                  \n                </div>\n              </form>\n\n            </div>\n            <a class=\"item generalRequest\" href=\"#Omnibees/GetZones\" data-rute=\"GetZones\" data-form=\"getZonesForm\">GetZones</a>\n            <div class=\"item\">\n              <form action=\"\" id=\"getZonesForm\">\n                <div class=\"ui form\">\n                  <div class=\"field\">\n                    <label for=\"country_uid_zone\">Country Code</label>\n                    <input type=\"text\" id=\"country_uid_zone\" name=\"country_uid\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"state_search_code_zone\">state search code</label>\n                    <input type=\"text\" id=\"state_search_code_zone\" name=\"state_search_code\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"zone_search_code_zone\">zone search code</label>\n                    <input type=\"text\" id=\"zone_search_code_zone\" name=\"zone_search_code\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"cities_data_uid_zone\">cities data uid</label>\n                    <input type=\"text\" id=\"cities_data_uid_zone\" name=\"cities_data_uid\" value=\"\" placeholder=\"\">\n                  </div>\n                  \n                </div>\n              </form>\n\n            </div>\n            <div class=\"ui divider\"></div>\n            <a class=\"item\" href=\"#Omnibees/HotelSearch\" onClick=\"hotelSearch(event)\">HotelSearch</a>\n            <div class=\"item\">\n              <div class=\"header\">GetHotelDescriptiveInfo</div>\n              <div class=\"menu\">\n              \n                  <a href=\"#viewHotel_198335\" class=\"item\" onClick=\"GetHotelDescriptiveInfo(event,6220)\"> Hotel 6220 - Royal cabo </a>\n              </div>\n            </div>\n            \n            <a class=\"item\" href=\"#Omnibees/HotelAvailCalendar\" onClick=\"ShowReservationStartForm(event)\">Reservation Start</a>\n            <div class=\"item\">\n              <form action=\"\" id=\">HotelAvailCalendarForm\">\n                <div class=\"ui form\">\n                  <div class=\"field\">\n                    <label for=\"resort_uuid_bookings\">Resort UUID</label>\n                    <input type=\"text\" id=\"resort_uuid_bookings\" name=\"resort_uuid\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"from_bookings\">Start date</label>\n                    <input type=\"date\" id=\"from_bookings\" name=\"start_date\" value=\"\" placeholder=\"\">\n                  </div>\n\n                  <div class=\"field\">\n                    <label for=\"to_bookings\">End date</label>\n                    <input type=\"date\" id=\"to_bookings\" name=\"end_date\" value=\"\" placeholder=\"\">\n                  </div>\n\n                </div>\n              </form>\n            </div>\n            <div class=\"item\">\n              <div class=\"header\">GetHotelRatePlans</div>\n              <div class=\"menu\">\n              \n                  <a href=\"#viewHotel_6220\" class=\"item\" onClick=\"GetHotelRatePlans(event,6220,'')\"> Hotel 6220 - Royal cabo </a>\n              </div>\n            </div>\n            <a class=\"item\" href=\"#Omnibees/SendHotelRes\">SendHotelRes</a>\n            <a class=\"item\" href=\"#Omnibees/SendHotelResCommit\">SendHotelResCommit</a>\n            <a class=\"item\" href=\"#Omnibees/SendHotelResModify\">SendHotelResModify</a>\n            <a class=\"item\" href=\"#Omnibees/SendHotelResModifyCommit\">SendHotelResModifyCommit</a>\n            <a class=\"item\" href=\"#Omnibees/SendHotelResCancel\">SendHotelResCancel</a>\n            \n            <a class=\"item generalRequest\" href=\"#Omnibees/GetBookings\" data-rute=\"GetBookings\" data-form=\"getBookingsForm\" data-postSecuence=\"showReservationList\">GetBookings</a>\n            <div class=\"item\">\n              <form action=\"\" id=\"getBookingsForm\">\n                <div class=\"ui form\">\n                  <div class=\"field\">\n                    <label for=\"resort_uuid_bookings\">Resort UUID</label>\n                    <input type=\"text\" id=\"resort_uuid_bookings\" name=\"resort_uuid\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"from_bookings\">Start date</label>\n                    <input type=\"date\" id=\"from_bookings\" name=\"start_date\" value=\"\" placeholder=\"\">\n                  </div>\n\n                  <div class=\"field\">\n                    <label for=\"to_bookings\">End date</label>\n                    <input type=\"date\" id=\"to_bookings\" name=\"end_date\" value=\"\" placeholder=\"\">\n                  </div>\n\n                </div>\n              </form>\n            </div>\n            \n          </div>\n        </div>\n        <div class=\"ten wide column\" id=\"viewArea\">\n          \n        </div>\n      </div>\n      <div class=\"sixteen wide column\">\n        <div class=\"ui divider\"></div>\n        <div class=\"ui header\">\n           Logs\n        </div>\n      </div>\n      <div class=\" row\">\n        <div class=\"sixteen wide column\">\n          <div class=\"ui basic segment\" id=\"jsonViewerContainer\" style=\"padding:0;\">\n            <andypf-json-viewer id=\"jsonViewer\"></andypf-json-viewer>\n          </div>\n        </div>\n      </div>\n    </div>\n  </div>\n  <script>\n    const jsonViewer = document.getElementById(\"jsonViewer\");\n    jsonViewer.id = \"json\"\n    jsonViewer.expanded = 2\n    jsonViewer.indent = 2\n    jsonViewer.showDataTypes = true\n    jsonViewer.theme = \"monokai\"\n    jsonViewer.showToolbar = true\n    jsonViewer.showSize = true\n    jsonViewer.showCopy = true\n    jsonViewer.expandIconType = \"square\"\n    jsonViewer.data = { example: \"data\" }\n\n\n    \n  </script>\n</body>\n</html>"}} {"uid":"e645daf"}
[2026-04-28 10:17:17] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelRatePlans?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=6220","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","hotelCode":"6220"}},"response":{"status":200,"type":"application/json","body":{"EchoToken":"system_6cd54e97-c71f-e435-4a9a-d32d83eae29a","TimeStamp":"2026-04-28T17:17:16.5900494Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"RatePlans":{"HotelRef":{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null},"RatePlan":[{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-30T00:00:00","ExpireDate":null,"RatePlanName":"Public Rate BX USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":412006,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":102029,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2024-01-04T00:00:00","ExpireDate":null,"RatePlanName":"Net Rate Package USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full reservation payment must be made 14 days prior to arrival.\n\nImportant: If payment is not received within the specified timeframe or before the guest's arrival, the reservation may be canceled with prior notification, and the guest will be charged the Rack (high) rate upon check-in.\n\nBank transfer fees are not the responsibility of the hotel.\n\nIf you require an invoice, please inform us at the time of booking and provide the corresponding information. An invoice cannot be issued once the guest has checked in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-11-11T00:00:00","Duration":null,"End":"2025-12-23T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-24T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":[{"RatePlanInclusionDesciption":{"Name":"Hospitality Rooms","Language":null,"Description":"Enjoy the hotel facilities from 10:00 am on your arrival day until 5:00 pm on your departure day.\nCheck-in is from 3:00 pm and check-out is at 11:00 am."},"Start":null,"Duration":null,"End":null,"ID":102024}],"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":414713,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":102029,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2024-01-04T00:00:00","ExpireDate":null,"RatePlanName":"Flex Package Rate USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full reservation payment must be made 14 days prior to arrival.\n\nImportant: If payment is not received within the specified timeframe or before the guest's arrival, the reservation may be canceled with prior notification, and the guest will be charged the Rack (high) rate upon check-in.\n\nBank transfer fees are not the responsibility of the hotel.\n\nIf you require an invoice, please inform us at the time of booking and provide the corresponding information. An invoice cannot be issued once the guest has checked in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":[{"RatePlanInclusionDesciption":{"Name":"Hospitality Rooms","Language":null,"Description":"Enjoy the hotel facilities from 10:00 am on your arrival day until 5:00 pm on your departure day.\nCheck-in is from 3:00 pm and check-out is at 11:00 am."},"Start":null,"Duration":null,"End":null,"ID":102024}],"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":414718,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"DZA"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"GHA"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"ISR"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MNG"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"QAT"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"ARE"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":102029,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-05-16T00:00:00","ExpireDate":null,"RatePlanName":"EBB 2026 NRF USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full reservation payment must be made 14 days prior to arrival.\n\nImportant: If payment is not received within the specified timeframe or before the guest's arrival, the reservation may be canceled with prior notification, and the guest will be charged the Rack (high) rate upon check-in.\n\nBank transfer fees are not the responsibility of the hotel.\n\nIf you require an invoice, please inform us at the time of booking and provide the corresponding information. An invoice cannot be issued once the guest has checked in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":true,"Start":null,"Duration":null,"End":null,"DeadLine":null,"AmountPercent":null,"PenaltyDescription":{"Name":"NON-REFUNDABLE","Language":null,"Description":"NON-REFUNDABLE RATE, The total penalty of the stay applies for early departure, no-shows and cancellations\n\nNo waivers of any kind apply"},"AmountRules":null}],"RatePlanInclusions":[{"RatePlanInclusionDesciption":{"Name":"Hospitality Rooms","Language":null,"Description":"Enjoy the hotel facilities from 10:00 am on your arrival day until 5:00 pm on your departure day.\nCheck-in is from 3:00 pm and check-out is at 11:00 am."},"Start":null,"Duration":null,"End":null,"ID":102024}],"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":414742,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137950,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137951,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Solaris Club Members","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47020}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560301,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Club Solaris Member Rate"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Guests","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47020}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560302,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club Guest Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"EBB GUESTS 10%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47020}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583564,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-12-24T00:00:00","ExpireDate":null,"RatePlanName":"EBB GUESTS 15%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47020}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583567,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"EBB GUESTS 20%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47020}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583571,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137950,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137951,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-12-24T00:00:00","ExpireDate":null,"RatePlanName":"EBB 10%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47020}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583572,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137950,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137951,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"EBB 15%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47020}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583573,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137950,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137951,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-12-24T00:00:00","ExpireDate":null,"RatePlanName":"EBB 20%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47020}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583574,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-12-24T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 1","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583577,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-12-24T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 2","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":null,"RatePlanID":583579,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-12-24T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 3","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583581,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-12-24T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 4","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583584,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-12-24T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 5","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583586,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-12-24T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 6","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583588,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-12-24T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 7","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583589,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-12-24T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 8","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583590,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-12-24T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 9","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583591,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-12-24T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 10","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583592,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-12-24T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 11","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583593,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Guests with MU","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47020}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-16T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":587396,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137950,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137951,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Club Members with MU","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47020}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-16T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":587397,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-27T00:00:00","ExpireDate":null,"RatePlanName":"Referrals","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47020}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-27T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1341539,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club Referral Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"ABW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"},{"ISOCountry":"GUF"},{"ISOCountry":"AIA"},{"ISOCountry":"CYM"},{"ISOCountry":"TCA"},{"ISOCountry":"PYF"},{"ISOCountry":"VIR"},{"ISOCountry":"SXM"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-27T00:00:00","ExpireDate":null,"RatePlanName":"EBB REFERRALS 10%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47020}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-28T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1341542,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"ABW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"},{"ISOCountry":"GUF"},{"ISOCountry":"AIA"},{"ISOCountry":"CYM"},{"ISOCountry":"TCA"},{"ISOCountry":"PYF"},{"ISOCountry":"VIR"},{"ISOCountry":"SXM"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-27T00:00:00","ExpireDate":null,"RatePlanName":"EBB REFERRALS 15%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47020}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-28T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1341543,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"ABW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"},{"ISOCountry":"GUF"},{"ISOCountry":"AIA"},{"ISOCountry":"CYM"},{"ISOCountry":"TCA"},{"ISOCountry":"PYF"},{"ISOCountry":"VIR"},{"ISOCountry":"SXM"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-27T00:00:00","ExpireDate":null,"RatePlanName":"EBB REFERRALS 20%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47020}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1341544,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"ABW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"},{"ISOCountry":"GUF"},{"ISOCountry":"AIA"},{"ISOCountry":"CYM"},{"ISOCountry":"TCA"},{"ISOCountry":"PYF"},{"ISOCountry":"VIR"},{"ISOCountry":"SXM"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-27T00:00:00","ExpireDate":null,"RatePlanName":"Referred with MU","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47020}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1341545,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club Referral Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"ABW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"},{"ISOCountry":"GUF"},{"ISOCountry":"AIA"},{"ISOCountry":"CYM"},{"ISOCountry":"TCA"},{"ISOCountry":"PYF"},{"ISOCountry":"VIR"},{"ISOCountry":"SXM"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"TPA_Extensions":null},"TPA_Extensions":{"ApprovalInvoiced":null,"Services":[{"ServicePricingType":18,"ServiceRPH":102029,"RatePlanCode":null,"Quantity":0,"RequestIndicator":false,"ID":102029,"ServiceDescription":{"Name":"La Bodeguita Luxury, Tapas & Wine","Language":null,"Description":"Premium culinary experience available at an additional cost per person.\n\nCost: $2,000 MXN per person. Conversion to USD based on the exchange rate of the day.\n\nSchedule: Monday, Wednesday, and Friday from 6:00 pm to 7:45 pm.\n\nDress code: Casual/Formal\nAdvance reservations required.\n\nMinimum age: 18 years.","ImageURL":null},"Price":[{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":115,"AmountAfterTax":115,"CurrencyCode":109}],"ServiceCategoryCode":null,"TPA_Extensions":{"Schedules":null,"SortOrder":null,"SupplierCode":"C1420_44922"}},{"ServicePricingType":18,"ServiceRPH":99128,"RatePlanCode":null,"Quantity":0,"RequestIndicator":false,"ID":99128,"ServiceDescription":{"Name":"Airport - Hotel Transportation ","Language":null,"Description":"Complimentary airport transfers.\n\nComplimentary airport-hotel transfers with a minimum 5-night stay.\n\nService available between 8:30 am and 7:30 pm","ImageURL":null},"Price":[{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109}],"ServiceCategoryCode":null,"TPA_Extensions":{"Schedules":null,"SortOrder":null,"SupplierCode":"C1420_44922"}}],"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null}}}} {"uid":"7b356e4"}
[2026-04-28 23:22:13] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/robots.txt","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"d177c94"}
[2026-04-28 23:22:34] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/app.php/","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"ce06c63"}
[2026-04-28 23:26:44] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/cgi-bin/","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"d52a61c"}
[2026-04-28 23:36:12] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/robots.txt","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"557a3c0"}
[2026-04-28 23:36:19] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/_ignition/execute-solution","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"487cc20"}
[2026-04-28 23:36:23] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelRatePlans?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=5975","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","hotelCode":"5975"}},"response":{"status":200,"type":"application/json","body":{"EchoToken":"system_6b0bb418-1dbd-20da-f4ed-b17375ef0b7b","TimeStamp":"2026-04-29T06:36:23.2242844Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"RatePlans":{"HotelRef":{"HotelCode":5975,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null},"RatePlan":[{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37426,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37427,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37428,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37673,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-18T00:00:00","ExpireDate":null,"RatePlanName":"Public Rate BX USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47021}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":17281,"Name":"All Inclusive","Description":"Unlimited food and drinks","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":410205,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37426,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37427,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37428,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140591,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140592,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140593,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140597,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140603,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140605,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140606,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140607,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140608,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140609,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101935,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-19T00:00:00","ExpireDate":null,"RatePlanName":"Solaris Club Members","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47022}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":17281,"Name":"All Inclusive","Description":"Unlimited food and drinks","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":561342,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club membership rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37426,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37427,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37428,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140591,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140592,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140593,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140597,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101935,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-19T00:00:00","ExpireDate":null,"RatePlanName":"Guests","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47022}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":17281,"Name":"All Inclusive","Description":"Unlimited food and drinks","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":561343,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club Guest Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37426,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37427,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37428,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37673,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-18T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 1","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47021}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":17281,"Name":"All Inclusive","Description":"Unlimited food and drinks","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583508,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37426,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37427,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37428,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37673,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-18T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 2","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47021}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":17281,"Name":"All Inclusive","Description":"Unlimited food and drinks","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583516,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37426,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37427,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37428,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37673,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-18T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 3","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47021}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":17281,"Name":"All Inclusive","Description":"Unlimited food and drinks","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583518,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37426,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37427,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37428,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37673,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-18T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 4","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47021}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":17281,"Name":"All Inclusive","Description":"Unlimited food and drinks","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583519,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37426,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37427,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37428,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37673,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-18T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 5","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47021}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":17281,"Name":"All Inclusive","Description":"Unlimited food and drinks","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583522,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37426,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37427,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37428,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37673,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-18T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 6","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47021}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":17281,"Name":"All Inclusive","Description":"Unlimited food and drinks","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583524,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37426,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37427,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37428,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37673,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-18T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 7","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47021}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":17281,"Name":"All Inclusive","Description":"Unlimited food and drinks","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583525,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37426,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37427,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37428,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37673,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-18T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 8","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47021}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":17281,"Name":"All Inclusive","Description":"Unlimited food and drinks","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583527,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37426,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37427,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37428,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37673,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-18T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 9","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47021}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":17281,"Name":"All Inclusive","Description":"Unlimited food and drinks","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583529,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37426,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37427,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37428,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37673,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-18T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 10","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47021}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":17281,"Name":"All Inclusive","Description":"Unlimited food and drinks","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583531,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37426,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37427,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37428,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37673,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-18T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 11","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47021}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":17281,"Name":"All Inclusive","Description":"Unlimited food and drinks","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583533,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37426,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37427,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37428,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140591,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140592,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140593,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140597,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101935,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-19T00:00:00","ExpireDate":null,"RatePlanName":"EBB GUESTS 10%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47022}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":17281,"Name":"All Inclusive","Description":"Unlimited food and drinks","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583547,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37426,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37427,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37428,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140591,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140592,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140593,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140597,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101935,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-19T00:00:00","ExpireDate":null,"RatePlanName":"EBB GUESTS 15%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47022}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":17281,"Name":"All Inclusive","Description":"Unlimited food and drinks","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583548,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37426,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37427,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37428,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140591,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140592,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140593,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140597,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101935,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-19T00:00:00","ExpireDate":null,"RatePlanName":"EBB GUESTS 20%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47022}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":17281,"Name":"All Inclusive","Description":"Unlimited food and drinks","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583554,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37426,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37427,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37428,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140591,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140592,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140593,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140597,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140603,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140605,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140606,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140607,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140608,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140609,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101935,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-19T00:00:00","ExpireDate":null,"RatePlanName":"EBB 10%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47022}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":17281,"Name":"All Inclusive","Description":"Unlimited food and drinks","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583558,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37426,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37427,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37428,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140591,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140592,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140593,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140597,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140603,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140605,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140606,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140607,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140608,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140609,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101935,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-19T00:00:00","ExpireDate":null,"RatePlanName":"EBB 15%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47022}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":17281,"Name":"All Inclusive","Description":"Unlimited food and drinks","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583559,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37426,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37427,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37428,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140591,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140592,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140593,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140597,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140603,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140605,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140606,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140607,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140608,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140609,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101935,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-19T00:00:00","ExpireDate":null,"RatePlanName":"EBB 20%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47022}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":17281,"Name":"All Inclusive","Description":"Unlimited food and drinks","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583561,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37426,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37427,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37428,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140591,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140592,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140593,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140597,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101935,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-19T00:00:00","ExpireDate":null,"RatePlanName":"Guests with MU","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47022}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-16T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":17281,"Name":"All Inclusive","Description":"Unlimited food and drinks","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":587274,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37426,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37427,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37428,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140591,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140592,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140593,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140597,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140603,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140605,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140606,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140607,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140608,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140609,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101935,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-19T00:00:00","ExpireDate":null,"RatePlanName":"Club Members with MU","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47022}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-16T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":17281,"Name":"All Inclusive","Description":"Unlimited food and drinks","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":587294,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37426,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37427,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37428,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140591,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140592,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140593,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140597,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101935,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-27T00:00:00","ExpireDate":null,"RatePlanName":"Referrals","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47022}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-27T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":17281,"Name":"All Inclusive","Description":"Unlimited food and drinks","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1341567,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club Referral Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37426,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37427,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37428,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140591,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140592,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140593,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140597,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101935,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-27T00:00:00","ExpireDate":null,"RatePlanName":"EBB REFERRALS 10%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47022}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-28T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":17281,"Name":"All Inclusive","Description":"Unlimited food and drinks","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1341569,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37426,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37427,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37428,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140591,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140592,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140593,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140597,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101935,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-27T00:00:00","ExpireDate":null,"RatePlanName":"EBB REFERRALS 15%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47022}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-28T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":17281,"Name":"All Inclusive","Description":"Unlimited food and drinks","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1341570,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37426,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37427,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37428,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140591,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140592,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140593,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140597,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101935,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-27T00:00:00","ExpireDate":null,"RatePlanName":"EBB REFERRALS 20%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47022}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-28T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":17281,"Name":"All Inclusive","Description":"Unlimited food and drinks","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1341571,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37426,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37427,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37428,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140591,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140592,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140593,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140597,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101935,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-27T00:00:00","ExpireDate":null,"RatePlanName":"Referred with MU","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47022}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-28T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":17281,"Name":"All Inclusive","Description":"Unlimited food and drinks","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1341573,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37426,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37427,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37428,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":17281,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-28T00:00:00","ExpireDate":null,"RatePlanName":"Getaway","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit 14 days before arrival","Language":null,"Description":"Prepayment: The full reservation payment must be made 14 days prior to arrival.\n\nImportant: If payment is not received within the specified timeframe or before the guest's arrival, the reservation may be canceled with prior notification, and the guest will be charged the Rack (high) rate upon check-in.\n\nBank transfer fees are not the responsibility of the hotel.\n\nIf you require an invoice, please inform us at the time of booking and provide the corresponding information. An invoice cannot be issued once the guest has checked in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9638}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"Dec 21st 2017 to Jan 01st, 2018","Language":null,"Description":"Cancellations made 14 days or less prior to arrival, no shows & early departures will incur a full charge penalty."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-29T00:00:00","Duration":null,"End":"2026-10-31T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-12-01T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-12-24T00:00:00","Duration":null,"End":"2027-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-11-01T00:00:00","Duration":null,"End":"2026-11-30T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-12-21T00:00:00","Duration":null,"End":"2026-12-23T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2027-01-03T00:00:00","Duration":null,"End":"2027-12-18T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null}],"RatePlanInclusions":[{"RatePlanInclusionDesciption":{"Name":"Hospitality Rooms","Language":null,"Description":"Enjoy the hotel's facilities from 10:00 am on your arrival day until 6:00 pm on your departure day.\nRoom access begins at 3:00 pm and check-out is at 11:00 am."},"Start":null,"Duration":null,"End":null,"ID":99313}],"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":17281,"Name":"All Inclusive","Description":"Unlimited food and drinks","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1344404,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37426,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37427,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37428,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":17281,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2024-01-02T00:00:00","ExpireDate":null,"RatePlanName":"Getaway flex","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit 14 days before arrival","Language":null,"Description":"Prepayment: The full reservation payment must be made 14 days prior to arrival.\n\nImportant: If payment is not received within the specified timeframe or before the guest's arrival, the reservation may be canceled with prior notification, and the guest will be charged the Rack (high) rate upon check-in.\n\nBank transfer fees are not the responsibility of the hotel.\n\nIf you require an invoice, please inform us at the time of booking and provide the corresponding information. An invoice cannot be issued once the guest has checked in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9638}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"Dec 21st 2017 to Jan 01st, 2018","Language":null,"Description":"Cancellations made 14 days or less prior to arrival, no shows & early departures will incur a full charge penalty."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-29T00:00:00","Duration":null,"End":"2026-10-31T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-12-01T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-12-24T00:00:00","Duration":null,"End":"2027-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-11-01T00:00:00","Duration":null,"End":"2026-11-30T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-12-21T00:00:00","Duration":null,"End":"2026-12-23T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2027-01-03T00:00:00","Duration":null,"End":"2027-12-18T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null}],"RatePlanInclusions":[{"RatePlanInclusionDesciption":{"Name":"Hospitality Rooms","Language":null,"Description":"Enjoy the hotel's facilities from 10:00 am on your arrival day until 6:00 pm on your departure day.\nRoom access begins at 3:00 pm and check-out is at 11:00 am."},"Start":null,"Duration":null,"End":null,"ID":99313}],"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":17281,"Name":"All Inclusive","Description":"Unlimited food and drinks","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1344409,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37426,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37427,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":37428,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":17281,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-29T00:00:00","ExpireDate":null,"RatePlanName":"Non Ref ebusiness","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit 14 days before arrival","Language":null,"Description":"Prepayment: The full reservation payment must be made 14 days prior to arrival.\n\nImportant: If payment is not received within the specified timeframe or before the guest's arrival, the reservation may be canceled with prior notification, and the guest will be charged the Rack (high) rate upon check-in.\n\nBank transfer fees are not the responsibility of the hotel.\n\nIf you require an invoice, please inform us at the time of booking and provide the corresponding information. An invoice cannot be issued once the guest has checked in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9638}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"Dec 21st 2017 to Jan 01st, 2018","Language":null,"Description":"Cancellations made 14 days or less prior to arrival, no shows & early departures will incur a full charge penalty."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-29T00:00:00","Duration":null,"End":"2026-10-31T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-12-01T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-12-24T00:00:00","Duration":null,"End":"2027-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-11-01T00:00:00","Duration":null,"End":"2026-11-30T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-12-21T00:00:00","Duration":null,"End":"2026-12-23T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2027-01-03T00:00:00","Duration":null,"End":"2027-12-18T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null}],"RatePlanInclusions":[{"RatePlanInclusionDesciption":{"Name":"Hospitality Rooms","Language":null,"Description":"Enjoy the hotel's facilities from 10:00 am on your arrival day until 6:00 pm on your departure day.\nRoom access begins at 3:00 pm and check-out is at 11:00 am."},"Start":null,"Duration":null,"End":null,"ID":99313}],"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":17281,"Name":"All Inclusive","Description":"Unlimited food and drinks","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1344412,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"TPA_Extensions":null},"TPA_Extensions":{"ApprovalInvoiced":null,"Services":[{"ServicePricingType":18,"ServiceRPH":101935,"RatePlanCode":null,"Quantity":0,"RequestIndicator":false,"ID":101935,"ServiceDescription":{"Name":"Airport - Hotel Transportation","Language":null,"Description":"Complimentary airport transfers.\n\nComplimentary airport-hotel transfers with a minimum 5-night stay.\n\nService available between 8:30 am and 7:30 pm","ImageURL":null},"Price":[{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109}],"ServiceCategoryCode":null,"TPA_Extensions":{"Schedules":null,"SortOrder":null,"SupplierCode":"C1420_44922"}},{"ServicePricingType":18,"ServiceRPH":17281,"RatePlanCode":null,"Quantity":0,"RequestIndicator":false,"ID":17281,"ServiceDescription":{"Name":"All Inclusive","Language":null,"Description":"Unlimited food and drinks","ImageURL":null},"Price":[{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109}],"ServiceCategoryCode":4,"TPA_Extensions":{"Schedules":null,"SortOrder":null,"SupplierCode":"C1420_44922"}}],"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null}}}} {"uid":"341ae39"}
[2026-04-28 23:36:27] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/.jenv-version","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"f45ac8e"}
[2026-04-28 23:36:30] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/.envrc","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"ad3d19c"}
[2026-04-28 23:36:32] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/robots.txt","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"d8e8670"}
[2026-04-28 23:36:33] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/Omnibees/HotelAvailCalendar","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"ef3d14c"}
[2026-04-28 23:36:34] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/full_test?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du"}},"response":{"status":200,"type":"text/html; charset=UTF-8","body":"<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"UTF-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n  <title>Document</title>\n  \n  <style>\n    body {\n      background: #d5d2d2 !important;\n      font-family: Arial, sans-serif;\n    }\n    #rooms_list.disabled {\n      pointer-events: none;\n    }\n  </style>\n\n  <!-- You MUST include jQuery 3.4+ before Fomantic -->\n  <script src=\"https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js\"></script>\n  <link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/fomantic-ui/2.9.4/semantic.min.css\">\n  <script src=\"https://cdnjs.cloudflare.com/ajax/libs/fomantic-ui/2.9.4/semantic.min.js\"></script>\n\n  <script src=\"https://pfau-software.de/json-viewer/dist/iife/index.js\"></script>\n  <script>\n    function setActiveMenuItem() {\n      const path = window.location.hash;\n      const menuItems = document.querySelectorAll('.ui.menu .item');\n      menuItems.forEach(item => {\n        if (item.getAttribute('href') === path) {\n          item.classList.add('active');\n        } else {\n          item.classList.remove('active');\n        }\n      });\n    }\n\n    function createInput(id, name, placeholder,type,value) {\n      const input = document.createElement(\"input\");\n      input.id = id;\n      input.name = name;\n      input.placeholder = placeholder;\n      input.className = \"ui input\";\n      input.type = type;\n      input.value = value;\n      return input;\n    }\n\n    function createFormField(id, name, placeholder,type,value,label_text) {\n      const field = document.createElement(\"div\");\n      field.className = \"field\";\n      const label = document.createElement(\"label\");\n      label.htmlFor = id;\n      label.textContent = label_text ?? placeholder;\n      field.appendChild(label);\n      field.appendChild(createInput(id, name, placeholder,type,value));\n      return field;\n    }\n\n    function pings(event) {\n      const jsonViewerContainer = document.getElementById(\"jsonViewerContainer\");\n      jsonViewerContainer.classList.add(\"loading\");\n      jsonViewerContainer.classList.add(\"disabled\");\n      fetch('/Omnibees/ping?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du')\n        .then(response => response.json())\n        .then(data => {\n          jsonViewer.data = data;\n        })\n        .catch(error => console.error('Error:', error))\n        .finally(() => {\n          jsonViewerContainer.classList.remove(\"loading\");\n          jsonViewerContainer.classList.remove(\"disabled\");\n          event.target.classList.add(\"active\");\n          setActiveMenuItem();\n        });\n    }\n\n    function hotelSearch(event) {\n      const jsonViewerContainer = document.getElementById(\"jsonViewerContainer\");\n      jsonViewerContainer.classList.add(\"loading\");\n      jsonViewerContainer.classList.add(\"disabled\");\n      fetch('/Omnibees/HotelSearch?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&checkIn=2023-10-01&checkOut=2023-10-02&cityCode=NYC')\n        .then(response => response.json())\n        .then(data => {\n          jsonViewer.data = data;\n        })\n        .catch(error => console.error('Error:', error))\n        .finally(() => {\n          jsonViewerContainer.classList.remove(\"loading\");\n          jsonViewerContainer.classList.remove(\"disabled\");\n          event.target.classList.add(\"active\");\n          setActiveMenuItem();\n        });\n    }\n\n    function GetHotelDescriptiveInfo(event, hotelCode = 198335) {\n      const jsonViewerContainer = document.getElementById(\"jsonViewerContainer\");\n      jsonViewerContainer.classList.add(\"loading\");\n      jsonViewerContainer.classList.add(\"disabled\");\n      fetch(`/Omnibees/GetHotelDescriptiveInfo?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=${hotelCode}`)\n        .then(response => response.json())\n        .then(data => {\n          jsonViewer.data = data;\n          let resort_data = data.HotelDescriptiveContentsType.HotelDescriptiveContents[0];\n          let policies = ``;\n          resort_data.Policies.ChildTerms.forEach(policy => {\n            policies += `<p>${policy.Name} - ${policy.MinAge} to ${policy.MaxAge}</p>`;\n          });\n\n          let amenities = ``;\n          resort_data.HotelInfo.HotelAmenities.forEach(amenity => {\n            amenities += `<li>${amenity.HotelAmenity}</li>`;\n          });\n          \n          let hotel_card = `\n          <div class=\"ui card\">\n            <div class=\"content\">\n              <a class=\"header\">${resort_data.HotelRef.HotelName}</a>\n              <div class=\"meta\">\n                <span class=\"date\">\n                 Checkin Time: ${resort_data.HotelInfo.CheckInHours.Start} - Checkout Time: ${resort_data.HotelInfo.CheckInHours.End}\n                </span>\n              </div>\n              <div class=\"description\">\n                ${resort_data.HotelInfo.Descriptions.DescriptiveText}\n              </div>\n            </div>\n            <div class=\"extra content\">\n              Age Policies:\n              ${policies}\n              <br/>\n              Amenities:\n              <ul>${amenities}</ul>\n            </div>\n          </div>\n          `;\n\n          document.getElementById(\"viewArea\").innerHTML = \"\";\n          document.getElementById(\"viewArea\").innerHTML = hotel_card;\n        })\n        .catch(error => console.error('Error:', error))\n        .finally(() => {\n          jsonViewerContainer.classList.remove(\"loading\");\n          jsonViewerContainer.classList.remove(\"disabled\");\n          event.target.classList.add(\"active\");\n          setActiveMenuItem();\n        });\n    }\n\n    function ResortSelector(Container,resorts){\n      let hotel_selector = createDropdown(\"hotel_selector\", \"hotel_selector\", resorts);\n\n      let resort_selector = document.createElement(\"div\");\n      resort_selector.className = \"field\";\n\n      let resort_label = document.createElement(\"label\");\n      resort_label.textContent = \"Select a hotel\";\n      resort_label.htmlFor = \"hotel_selector\";\n\n      resort_selector.appendChild(resort_label);\n      resort_selector.appendChild(hotel_selector);\n\n      Container.appendChild(resort_selector);\n\n      let rates_selector = document.createElement(\"div\");\n      rates_selector.className = \"field\";\n      let rates_label = document.createElement(\"label\");\n      rates_label.textContent = \"Select a rate plan\";\n      rates_label.htmlFor = \"rates_selector\";\n\n      rates_selector.appendChild(rates_label);\n      let rates_selector_input = document.createElement(\"select\");\n      rates_selector_input.id = \"rates_selector\";\n      rates_selector_input.name = \"rates_selector\";\n      rates_selector_input.className = \"ui loading disabled dropdown\";\n      rates_selector.appendChild(rates_selector_input);\n      Container.appendChild(rates_selector);\n\n      // Initialize the dropdown\n      $(hotel_selector).dropdown(\n        { \n          placeholder: 'Select a hotel', \n          onChange: function(value) {\n            \n            GetHotelRatePlans(event, value, function(data){\n              // Clear previous options\n              rates_selector_input.innerHTML = '';\n              \n              // Populate the rates selector with new options\n              data.RatePlans.RatePlan\t.forEach(rate => {\n                let option = document.createElement(\"option\");\n                option.value = rate.RatePlanID;\n                option.textContent = rate.RatePlanName;\n                rates_selector_input.appendChild(option);\n              });\n\n              // Reinitialize the dropdown\n              $(rates_selector_input).dropdown();\n              $(rates_selector_input).parent().removeClass(\"disabled loading\");\n            }\n          );\n      } });\n    }\n    \n    function createRatesSelector(rates,selector){\n\n    }\n\n    function Calendars(Container){\n      let cin = createDateField(\"checkIn\", \"checkIn\", \"2025-10-01\");\n      let cinContainer = document.createElement(\"div\");\n      cinContainer.className = \"field\";\n      \n      let cinLabel = document.createElement(\"label\");\n      cinLabel.textContent = \"Check In\";\n      cinLabel.htmlFor = \"checkIn\";\n      cinContainer.appendChild(cinLabel);\n      cinContainer.appendChild(cin);\n\n\n      let cout = createDateField(\"checkOut\", \"checkOut\", \"2025-10-02\");\n      let coutContainer = document.createElement(\"div\");\n      coutContainer.className = \"field\";\n\n      let coutLabel = document.createElement(\"label\");\n      coutLabel.textContent = \"Check Out\";\n      coutLabel.htmlFor = \"checkOut\";\n      coutContainer.appendChild(coutLabel);\n      coutContainer.appendChild(cout);\n\n\n      Container.appendChild(cinContainer);\n      Container.appendChild(coutContainer);\n\n      $(cin).calendar({\n        type: 'date',\n        endCalendar: $(\"#checkOut\"),\n        formatter: {\n          date: 'YYYY-MM-DD'\n        }\n      });\n      $(cout).calendar({\n        type: 'date',\n        startCalendar: $(\"#checkIn\"),\n        formatter: {\n          date: 'YYYY-MM-DD'\n        }\n      });\n\n    }\n\n    function PaxSelector(Container){\n\n      let adults = document.createElement(\"input\");\n      adults.type = \"number\";\n      adults.name = \"adults\";\n      adults.id = \"adults\";\n      adults.value = 1;\n      adults.className = \"ui input\";\n      \n      let adultsLabel = document.createElement(\"label\");\n      adultsLabel.textContent = \"Adults\";\n      adultsLabel.htmlFor = \"adults\";\n      \n      let adultsDiv = document.createElement(\"div\");\n      adultsDiv.className = \"ui input\";\n      adultsDiv.appendChild(adults);\n\n      let adultsField = document.createElement(\"div\");\n      adultsField.className = \"field\";\n      adultsField.appendChild(adultsLabel);\n      adultsField.appendChild(adultsDiv);\n      Container.appendChild(adultsField);\n\n      let childs = document.createElement(\"input\");\n      childs.type = \"number\";\n      childs.name = \"childs\";\n      childs.id = \"childs\";\n      childs.value = 0;\n      childs.className = \"ui input\";\n      \n      let childsLabel = document.createElement(\"label\");\n      childsLabel.textContent = \"Childs\";\n      childsLabel.htmlFor = \"childs\";\n      \n      let childsDiv = document.createElement(\"div\");\n      childsDiv.className = \"ui input\";\n      childsDiv.appendChild(childs);\n\n      let childsField = document.createElement(\"div\");\n      childsField.className = \"field\";\n      childsField.appendChild(childsLabel);\n      childsField.appendChild(childsDiv);\n      Container.appendChild(childsField);\n\n      let childs_ages = document.createElement(\"input\");\n      childs_ages.type = \"text\";\n      childs_ages.name = \"childs_ages\";\n      childs_ages.id = \"childs_ages\";\n      childs_ages.value = \"\";\n      childs_ages.className = \"ui input\";\n\n      let childs_agesLabel = document.createElement(\"label\");\n      childs_agesLabel.textContent = \"Childs Ages\";\n      childs_agesLabel.htmlFor = \"childs_age\";\n\n      let childsDiv_age = document.createElement(\"div\");\n      childsDiv_age.className = \"ui input\";\n      childsDiv_age.appendChild(childs_ages);\n\n      let childsField_age = document.createElement(\"div\");\n      childsField_age.className = \"field\";\n      childsField_age.appendChild(childs_agesLabel);\n      childsField_age.appendChild(childsDiv_age);\n      Container.appendChild(childsField_age);\n    }\n\n    function ShowReservationStartForm(event){\n      let viewArea = document.getElementById(\"viewArea\");\n      viewArea.innerHTML = \"\";\n      \n      let Container = document.createElement(\"div\");\n      Container.className = \"ui form segment\";\n      viewArea.appendChild(Container);\n\n      let header = document.createElement(\"h3\");\n      header.textContent = \"Hotel Availability Calendar\";\n      header.className = \"ui header\";\n      Container.appendChild(header);\n      \n      let resorts = [\n        { value: 6220, text: \"Royal Solaris Los Cabos\" },\n        { value: 5975, text: \"Royal Solaris Cancun\" },\n        { value: 6219, text: \"GR Solaris\" },\n        { value: 6215, text: \"GR Caribe\" },\n        { value: 20189, text: \"GR Solaris Lighthouse\" }\n      ];\n\n      let main_row = document.createElement(\"div\");\n      main_row.className = \"two fields\";\n      Container.appendChild(main_row);\n\n      ResortSelector(main_row, resorts);\n      \n\n\n      let second_row = document.createElement(\"div\");\n      second_row.className = \"fields\";\n      Container.appendChild(second_row);\n\n      Calendars(second_row);\n\n      let third_row = document.createElement(\"div\");\n      third_row.className = \"fields\";\n      Container.appendChild(third_row);\n      PaxSelector(second_row);\n\n      let fourth_row = document.createElement(\"div\");\n      fourth_row.className = \"fields\";\n      Container.appendChild(fourth_row);\n\n\n      let searchButton = document.createElement(\"button\");\n      searchButton.className = \"ui primary button\";\n      searchButton.textContent = \"Search Availability\";\n      searchButton.onclick = function() {\n        GetHotelAvail(event);\n      };\n\n      \n\n      let btnContainer = document.createElement(\"div\");\n      btnContainer.className = \"sixteen wide field\";\n      btnContainer.appendChild(searchButton);\n\n      let searchButton2 = document.createElement(\"button\");\n      searchButton2.className = \"ui orange button\";\n      searchButton2.textContent = \"second search\";\n      searchButton2.onclick = function() {\n        HotelAvailCalendar(event);\n      };\n      btnContainer.appendChild(searchButton2);\n\n      fourth_row.appendChild(btnContainer);\n\n\n      let rooms_segment = document.createElement(\"div\");\n      rooms_segment.className = \"ui segment\";\n\n      let rooms_list = document.createElement(\"div\");\n      rooms_list.className = \"ui list\";\n      rooms_list.id = \"rooms_list\";\n\n      let rooms_header = document.createElement(\"h4\");\n      rooms_header.textContent = \"Available Rooms\";\n      rooms_header.className = \"ui header\";\n      rooms_segment.appendChild(rooms_header);\n\n      rooms_segment.appendChild(rooms_list);\n\n      viewArea.appendChild(rooms_segment);\n\n      let warnings_area = document.createElement(\"div\");\n      warnings_area.className = \"ui list\";\n      warnings_area.id = \"warnings_area\";\n      viewArea.appendChild(warnings_area);\n\n      event.target.classList.add(\"active\");\n      setActiveMenuItem();\n    }\n\n\n    function showRooms(rooms,rates,reservation_details){\n\n      let rooms_list = document.getElementById(\"rooms_list\");\n      rooms_list.innerHTML = \"\"; // Clear previous rooms\n\n      if (!rooms || rooms.length === 0) {\n        let noRoomsMessage = document.createElement(\"div\");\n        noRoomsMessage.textContent = \"No rooms available for the selected dates.\";\n        noRoomsMessage.className = \"ui message\";\n        rooms_list.appendChild(noRoomsMessage);\n        return;\n      }\n      \n\n      rooms.forEach(room => {\n        let roomItem = document.createElement(\"div\");\n        roomItem.className = \"item\";\n\n        let roomContent = document.createElement(\"div\");\n        roomContent.className = \"content\";\n\n        let roomHeader = document.createElement(\"div\");\n        roomHeader.className = \"header\";\n        roomHeader.textContent = `${room.RoomID} - ${room.RoomName}`;\n\n        let roomDescription = document.createElement(\"div\");\n        roomDescription.className = \"description\";\n        roomDescription.textContent = `${room.RoomDescription.Description}`;\n\n        roomContent.appendChild(roomHeader);\n        roomContent.appendChild(roomDescription);\n        roomItem.appendChild(roomContent);\n\n        rooms_list.appendChild(roomItem);\n\n        let floatingDiv = document.createElement(\"div\");\n        floatingDiv.className = \"right floated content\";\n\n        let price = document.createElement(\"div\");\n        price.className = \"ui small header\";\n        price.setAttribute('data-idroom', room.RoomID);\n        floatingDiv.appendChild(price);\n\n        let bookButton = document.createElement(\"button\");\n        bookButton.className = \"ui orange button\";\n        bookButton.textContent = \"Book Now\";\n        bookButton.onclick = function() {\n          // Implement booking functionality here\n          //alert(`Booking for room: ${room.RoomID}`);\n          reservation_details.roomCode = room.RoomID;\n          startCheckout(reservation_details);\n        };\n        floatingDiv.appendChild(bookButton);\n        roomItem.appendChild(floatingDiv);\n      });\n\n    }\n\n    function HotelAvailCalendar(){\n       let hotelCode = document.getElementById(\"hotel_selector\").value;\n      let checkIn = document.getElementById(\"checkIn_field\").value;\n      let checkOut = document.getElementById(\"checkOut_field\").value;\n      let adultsCount = document.getElementById(\"adults\").value;\n      let childsCount = document.getElementById(\"childs\").value;\n      let ratesPlan = document.getElementById(\"rates_selector\").value;\n\n      jsonViewerContainer.classList.add(\"loading\");\n      jsonViewerContainer.classList.add(\"disabled\");\n\n      const postData = {\n        api_key: 'yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du',\n        hotelCode: hotelCode,\n        checkIn: checkIn,\n        checkOut: checkOut,\n        ratesPlan: ratesPlan,\n        guests: {\n          adults: adultsCount,\n          children: childsCount\n        }\n      };\n\n      fetch(`/Omnibees/HotelAvailCalendar`,{\n          method: 'POST',\n          headers: {\n            'Content-Type': 'application/json',\n            // You can also use 'application/x-www-form-urlencoded' if needed\n          },\n          body: JSON.stringify(postData)\n        })\n        .then(response => response.json())\n        .then(data => {\n          jsonViewer.data = data;\n        })\n        \n        .catch(error => console.error('Error:', error))\n        .finally(() => {\n          jsonViewerContainer.classList.remove(\"loading\");\n          jsonViewerContainer.classList.remove(\"disabled\");\n          \n        });\n    }\n\n    function GetHotelRatePlans(event,resort,action){\n      const jsonViewerContainer = document.getElementById(\"jsonViewerContainer\");\n      jsonViewerContainer.classList.add(\"loading\");\n      jsonViewerContainer.classList.add(\"disabled\");\n\n      fetch(`/Omnibees/GetHotelRatePlans?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=${resort}`)\n        .then(response => response.json())\n        .then(data => {\n          if(typeof action === 'function') {\n            action(data);\n          } else {\n            jsonViewer.data = data;\n          }\n        })\n        .catch(error => console.error('Error:', error))\n        .finally(() => {\n          if(typeof action !== 'function') {\n            jsonViewerContainer.classList.remove(\"loading\");\n            jsonViewerContainer.classList.remove(\"disabled\");\n            event.target.classList.add(\"active\");\n            setActiveMenuItem();\n          }\n        });\n    }\n\n    function GetHotelAvail(event) {\n      const jsonViewerContainer = document.getElementById(\"jsonViewerContainer\");\n      jsonViewerContainer.classList.add(\"loading\");\n      jsonViewerContainer.classList.add(\"disabled\");\n      var warnings_area = document.getElementById(\"warnings_area\");\n      warnings_area.innerHTML = \"\"; // Clear previous warnings\n\n      let checkIn = document.getElementById(\"checkIn_field\").value;\n      let checkOut = document.getElementById(\"checkOut_field\").value;\n      let hotelCode = document.getElementById(\"hotel_selector\").value;\n      let ratesPlan = document.getElementById(\"rates_selector\").value;\n      let adults = document.getElementById(\"adults\").value;\n      let children = document.getElementById(\"childs\").value;\n      let children_ages = document.getElementById(\"childs_ages\").value;\n\n      fetch(`/Omnibees/GetHotelAvail`, {\n        method: 'POST',\n        headers: {\n          'Content-Type': 'application/json'\n        },\n        body: JSON.stringify({\n          api_key: 'yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du',\n          checkIn: checkIn,\n          checkOut: checkOut,\n          hotelCode: hotelCode,\n          ratesPlan: ratesPlan,\n          adults: adults,\n          children: children,\n          children_ages: children_ages\n        })\n      })\n        .then(response => response.json())\n        .then(data => {\n          jsonViewer.data = data;\n          return data;\n        })\n        .then(data => {\n          if(data.WarningsType !== null){\n            data.WarningsType.forEach(warning => {\n              console.warn('Warning:', warning);\n              let warning_item = document.createElement(\"div\");\n              warning_item.className = \"item\";\n              warning_item.textContent = warning;\n              warnings_area.appendChild(warning_item);\n            });\n          }else{\n\n            let reservation_details = {\n              checkIn: checkIn,\n              checkOut: checkOut,\n              hotelCode: hotelCode,\n              ratesPlan: ratesPlan,\n              adults: adults,\n              children: children,\n              children_ages: children_ages\n            };\n\n            showRooms(data.RoomStaysType.RoomStays[0].RoomTypes,data.RoomStaysType.RoomStays[0].RoomRates,reservation_details);\n\n            data.RoomStaysType.RoomStays[0].RoomRates\t.forEach(roomRate => {\n\n              let tot = roomRate.Total.AmountAfterTax;\n              $(`[data-idroom=${roomRate.RoomID}]`).text(`$: ${tot} USD`);\n            });\n          }\n          \n        })\n        .catch(error => console.error('Error:', error))\n        .finally(() => {\n          jsonViewerContainer.classList.remove(\"loading\");\n          jsonViewerContainer.classList.remove(\"disabled\");\n          event.target.classList.add(\"active\");\n          setActiveMenuItem();\n        });\n    }\n\n    function createDateField(name,id, value) {\n      let dateField = document.createElement(\"input\");\n      dateField.type = \"text\";\n      dateField.name = name;\n      dateField.id = id + \"_field\";\n      dateField.value = value;\n\n      let div = document.createElement(\"div\");\n      div.className = \"ui input left icon\";\n      div.appendChild(dateField);\n\n      let icon = document.createElement(\"i\");\n      icon.className = \"calendar icon\";\n      div.appendChild(icon);\n\n      let Container = document.createElement(\"div\");\n      Container.className = \"ui calendar\";\n      Container.id = id;\n\n      Container.appendChild(div);\n\n      return Container;\n    }\n\n    function createDropdown(name, id, options) {\n      let select = document.createElement(\"select\");\n      select.name = name;\n      select.id = id;\n      select.className = \"ui dropdown\";\n      let defaultOption = document.createElement(\"option\");\n      defaultOption.value = \"\";\n      defaultOption.textContent = \"Select an option\";\n      select.appendChild(defaultOption);\n      options.forEach(option => {\n        let opt = document.createElement(\"option\");\n        opt.value = option.value;\n        opt.textContent = option.text;\n        select.appendChild(opt);\n      });\n\n      return select;\n    }\n\n    function localStart() {\n      $(\".generalRequest\").unbind().click(function(event) {\n        event.preventDefault();\n        const rute = $(this).data(\"rute\");\n        const jsonViewerContainer = document.getElementById(\"jsonViewerContainer\");\n        jsonViewerContainer.classList.add(\"loading\");\n        jsonViewerContainer.classList.add(\"disabled\");\n        postSecuence = false;\n        if($(this).data(\"postsecuence\"))\n          postSecuence = $(this).data(\"postsecuence\");\n        \n        let postData = {};\n\n        if ($(this).data(\"form\")) {\n          const form = document.getElementById($(this).data(\"form\"));\n          const formData = new FormData(form);\n          formData.forEach((value, key) => {\n            postData[key] = value;\n          });\n        }\n\n        fetch(`/Omnibees/${rute}?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du`,{\n          method: 'POST',\n          headers: {\n            'Content-Type': 'application/json',\n            // You can also use 'application/x-www-form-urlencoded' if needed\n          },\n          body: JSON.stringify(postData)\n        })\n          .then(response => response.json())\n          .then(data => {\n            jsonViewer.data = data;\n            console.log(\"Data fetched:\", data);\n            console.log(\"Post secuence:\", postSecuence);\n            if(postSecuence){\n              console.log(\"Executing post secuence\" + postSecuence);\n              window[postSecuence](data);\n            }\n          })\n          .catch(error => console.error('Error:', error))\n          .finally(() => {\n            jsonViewerContainer.classList.remove(\"loading\");\n            jsonViewerContainer.classList.remove(\"disabled\");\n            event.target.classList.add(\"active\");\n            setActiveMenuItem();\n          });\n      });\n    }\n\n    function startCheckout(reservation_details){\n      let container = document.createElement(\"div\");\n      container.className = \"ui segment\";\n\n      let title = document.createElement(\"h3\");\n      title.textContent = \"Checkout\";\n      container.appendChild(title);\n\n      var form = document.createElement(\"form\");\n      form.className = \"ui form\";\n\n      form.appendChild(createFormField(\"resortCode\", \"resortCode\", \"resortCode\", \"text\", reservation_details.hotelCode));\n      form.appendChild(createFormField(\"roomCode\", \"roomCode\", \"roomCode\", \"text\", reservation_details.roomCode));\n      form.appendChild(createFormField(\"RatePlanID\", \"RatePlanID\", \"RatePlanID\", \"text\", reservation_details.ratesPlan));\n      form.appendChild(createFormField(\"checkIn\", \"checkIn\", \"checkIn\", \"text\", reservation_details.checkIn));\n      form.appendChild(createFormField(\"checkOut\", \"checkOut\", \"checkOut\", \"text\", reservation_details.checkOut));\n      form.appendChild(createFormField(\"adults\", \"adults\", \"adults\", \"text\", reservation_details.adults));\n      form.appendChild(createFormField(\"children\", \"children\", \"children\", \"text\", reservation_details.children));\n      form.appendChild(createFormField(\"children_ages\", \"children_ages\", \"children_ages\", \"text\", reservation_details.children_ages));\n\n      let title_pax = document.createElement(\"h3\");\n      title_pax.textContent = \"Pax contact details\";\n      form.appendChild(title_pax);\n\n      let contactArea = document.createElement(\"div\");\n\n      for(let i=0; i < parseInt(reservation_details.adults); i++){\n        let paxForm = contactForPax(i+1);\n        contactArea.appendChild(paxForm);\n      }\n      form.appendChild(contactArea);\n\n      container.appendChild(form);\n      document.getElementById(\"viewArea\").appendChild(container);\n      document.getElementById(\"rooms_list\").classList.add(\"disabled\");\n\n      let SendHotelReservation = document.createElement(\"div\");\n      SendHotelReservation.className = \"ui teal button\";\n      SendHotelReservation.textContent = \"Send Hotel Reservation\";\n      SendHotelReservation.onclick = function() {\n        // Implement booking functionality here\n        //alert(`Sending reservation`);\n        SendHotelReservationFunction(form);\n      };\n      form.appendChild(SendHotelReservation);\n    }\n\n    function contactForPax(index){\n      let container = document.createElement(\"div\");\n      container.className = \"ui segment\";\n\n      let title = document.createElement(\"h3\");\n      title.textContent = \"Contact for Pax #\" + index;\n      container.appendChild(title);\n\n      let form = document.createElement(\"div\");\n      form.className = \"ui form\";\n\n      let first_name = document.createElement(\"input\");\n      first_name.type = \"text\";\n      first_name.name = \"first_name_\" + index;\n      first_name.placeholder = \"First Name\";\n      form.appendChild(first_name);\n\n      let last_name = document.createElement(\"input\");\n      last_name.type = \"text\";\n      last_name.name = \"last_name_\" + index;\n      last_name.placeholder = \"Last Name\";\n      form.appendChild(last_name);\n\n      let email = document.createElement(\"input\");\n      email.type = \"email\";\n      email.name = \"email_\" + index;\n      email.placeholder = \"Email\";\n      form.appendChild(email);\n\n      let phone = document.createElement(\"input\");\n      phone.type = \"tel\";\n      phone.name = \"phone_\" + index;\n      phone.placeholder = \"Phone\";\n      form.appendChild(phone);\n      container.appendChild(form);\n      return container\n    }\n\n\n    function SendHotelReservationFunction(form) {\n      var warnings_area = document.getElementById(\"warnings_area\");\n      warnings_area.innerHTML = \"\";\n      let formData = new FormData(form);\n      let jsonData = {};\n\n      formData.forEach( (value, key) => {\n        jsonData[key] = value;\n      });\n\n      jsonData.api_key = 'yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du';\n\n      fetch(`/Omnibees/SendHotelResInitiate`, {\n        method: 'POST',\n        headers: {\n          'Content-Type': 'application/json'\n        },\n        body: JSON.stringify(jsonData)\n      })\n        .then(response => response.json())\n        .then(data => {\n          jsonViewer.data = data;\n          return data;\n        })\n        .then(data => {\n          if(data.WarningsType !== null){\n            data.WarningsType.forEach(warning => {\n              console.warn('Warning:', warning);\n              let warning_item = document.createElement(\"div\");\n              warning_item.className = \"item\";\n              warning_item.textContent = warning;\n              warnings_area.appendChild(warning_item);\n            });\n          }else{\n            if(data.HotelReservationsType !== null){\n              if(data.HotelReservationsType.HotelReservations.length >0){\n                var reservation_code = data.HotelReservationsType.HotelReservations[0].UniqueID.ID;\n                var transaction_id = data.TransactionIdentifier;\n                console.log('Reservation Code:', reservation_code);\n                console.log('Transaction ID:', transaction_id);\n                alert(`Reservation successful! Your reservation code is: ${reservation_code}`);\n                ShowCommitArea(reservation_code, transaction_id);\n              }\n            }\n          }\n          \n        })\n        .catch(error => console.error('Error:', error))\n        .finally(() => {\n          jsonViewerContainer.classList.remove(\"loading\");\n          jsonViewerContainer.classList.remove(\"disabled\");\n          //event.target.classList.add(\"active\");\n          setActiveMenuItem();\n        });\n    }\n\n    function ShowCommitArea(reservation_code, transaction_id) {\n      var commit_area = document.createElement(\"div\");\n      commit_area.className = \"ui segment\";\n\n      let title = document.createElement(\"h3\");\n      title.textContent = \"Commit Reservation\";\n      commit_area.appendChild(title);\n\n      let form = document.createElement(\"form\");\n      form.className = \"ui form\";\n\n      form.appendChild(createFormField(\"reservationId\", \"reservationId\", \"Reservation ID\", \"text\", reservation_code));\n\n      form.appendChild(createFormField(\"transactionId\", \"transactionId\", \"Transaction ID\", \"text\", transaction_id));\n\n      var button = document.createElement(\"div\");\n      button.className = \"ui teal button\";\n      button.textContent = \"Commit Reservation\";\n      button.onclick = function() {\n        sendCommit(reservation_code, transaction_id);\n      };\n      form.appendChild(button);\n\n      commit_area.appendChild(form);\n      document.getElementById(\"viewArea\").appendChild(commit_area);\n    }\n\n    function sendCommit(reservationId, transactionId) {\n      var commitData = {\n        reservationId: reservationId,\n        transactionId: transactionId,\n        api_key: 'yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du'\n      };\n\n      fetch(`/Omnibees/SendHotelResCommit`, {\n        method: 'POST',\n        headers: {\n          'Content-Type': 'application/json'\n        },\n        body: JSON.stringify(commitData)\n      })\n        .then(response => response.json())\n        .then(data => {\n          if(data.WarningsType !== null){\n            data.WarningsType.forEach(warning => {\n              console.warn('Warning:', warning);\n              let warning_item = document.createElement(\"div\");\n              warning_item.className = \"item\";\n              warning_item.textContent = warning;\n              warnings_area.appendChild(warning_item);\n            });\n          }else{\n            if(data.ResResponseType == \"Commited\"){\n              alert(`Reservation committed successfully!`);\n            }else{\n              alert(`Reservation commit failed: ${data.ResResponseType}`);\n            }\n          }\n          \n        })\n        .catch(error => console.error('Error:', error));\n    }\n\n    function showReservationList(data){\n      let viewArea = document.getElementById(\"viewArea\");\n      viewArea.innerHTML = \"\";\n      let container = document.createElement(\"div\");\n      container.className = \"ui segment\";\n      viewArea.appendChild(container);\n      let title = document.createElement(\"h3\");\n      title.textContent = \"Reservations List\";\n      container.appendChild(title);\n\n      let list = document.createElement(\"div\");\n      list.className = \"ui list\";\n      container.appendChild(list);\n\n      data.HotelReservationsType.HotelReservations.forEach(reservation => {\n        let item = document.createElement(\"div\");\n        item.className = \"item\";\n\n        let content = document.createElement(\"div\");\n        content.className = \"content\";\n\n        let header = document.createElement(\"div\");\n        header.className = \"header\";\n        header.textContent = `Reservation ID: ${reservation.UniqueID.ID} `;\n\n        let description = document.createElement(\"div\");\n        description.className = \"description\";\n        description.innerHTML = ``;\n        reservation.RoomStaysType.RoomStays.forEach(room => {\n          description.innerHTML += `<p>Room: ${room.IndexNumber} \n          - CheckIn: ${room.RoomRates.EffectiveDate} \n          - CheckOut: ${room.RoomRates.ExpireDate} \n          - Total: ${room.Total.AmountAfterTax}\n          </p>`;\n        });\n        content.appendChild(description);\n\n        content.appendChild(header);\n        item.appendChild(content);\n        list.appendChild(item);\n      });\n    }\n\n  </script>\n</head>\n<body onload=\"localStart()\">\n  <br>\n  <div class=\"ui container\">\n    <div class=\"ui grid\">\n      <div class=\"sixteen wide column\">\n        <div class=\"ui header\">\n          Omnibees API Test\n        </div>\n      </div>\n      <div class=\" row\">\n        <div class=\"six wide column\">\n          <div class=\"ui vertical fluid  menu\">\n            <a class=\"item\" href=\"#Omnibees/ping\" onClick=\"pings(event);\">Ping</a>\n\n            <a class=\"item generalRequest\" href=\"#Omnibees/GetCountry\" data-rute=\"GetCountry\">GetCountry</a>\n            <a class=\"item generalRequest\" href=\"#Omnibees/GetState\" data-rute=\"GetState\" data-form=\"getStateForm\">GetState</a>\n            <div class=\"item\">\n              <form action=\"\" id=\"getStateForm\">\n                <div class=\"ui form\">\n                  <div class=\"field\">\n                    <label for=\"country_uid\">Country Code</label>\n                    <input type=\"text\" id=\"country_uid\" name=\"country_uid\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"state_search_code\">state search code</label>\n                    <input type=\"text\" id=\"state_search_code\" name=\"state_search_code\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"zone_search_code\">zone search code</label>\n                    <input type=\"text\" id=\"zone_search_code\" name=\"zone_search_code\" value=\"\" placeholder=\"\">\n                  </div>\n                  \n                </div>\n              </form>\n\n            </div>\n            <a class=\"item generalRequest\" href=\"#Omnibees/GetCity\" data-rute=\"GetCity\" data-form=\"getCityForm\">GetCity</a>\n            <div class=\"item\">\n              <form action=\"\" id=\"getCityForm\">\n                <div class=\"ui form\">\n                  <div class=\"field\">\n                    <label for=\"country_uid_city\">Country Code</label>\n                    <input type=\"text\" id=\"country_uid_city\" name=\"country_uid\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"state_search_code_city\">state search code</label>\n                    <input type=\"text\" id=\"state_search_code_city\" name=\"state_search_code\" value=\"\" placeholder=\"\">\n                  </div>\n                  \n                </div>\n              </form>\n\n            </div>\n            <a class=\"item generalRequest\" href=\"#Omnibees/GetZones\" data-rute=\"GetZones\" data-form=\"getZonesForm\">GetZones</a>\n            <div class=\"item\">\n              <form action=\"\" id=\"getZonesForm\">\n                <div class=\"ui form\">\n                  <div class=\"field\">\n                    <label for=\"country_uid_zone\">Country Code</label>\n                    <input type=\"text\" id=\"country_uid_zone\" name=\"country_uid\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"state_search_code_zone\">state search code</label>\n                    <input type=\"text\" id=\"state_search_code_zone\" name=\"state_search_code\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"zone_search_code_zone\">zone search code</label>\n                    <input type=\"text\" id=\"zone_search_code_zone\" name=\"zone_search_code\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"cities_data_uid_zone\">cities data uid</label>\n                    <input type=\"text\" id=\"cities_data_uid_zone\" name=\"cities_data_uid\" value=\"\" placeholder=\"\">\n                  </div>\n                  \n                </div>\n              </form>\n\n            </div>\n            <div class=\"ui divider\"></div>\n            <a class=\"item\" href=\"#Omnibees/HotelSearch\" onClick=\"hotelSearch(event)\">HotelSearch</a>\n            <div class=\"item\">\n              <div class=\"header\">GetHotelDescriptiveInfo</div>\n              <div class=\"menu\">\n              \n                  <a href=\"#viewHotel_198335\" class=\"item\" onClick=\"GetHotelDescriptiveInfo(event,6220)\"> Hotel 6220 - Royal cabo </a>\n              </div>\n            </div>\n            \n            <a class=\"item\" href=\"#Omnibees/HotelAvailCalendar\" onClick=\"ShowReservationStartForm(event)\">Reservation Start</a>\n            <div class=\"item\">\n              <form action=\"\" id=\">HotelAvailCalendarForm\">\n                <div class=\"ui form\">\n                  <div class=\"field\">\n                    <label for=\"resort_uuid_bookings\">Resort UUID</label>\n                    <input type=\"text\" id=\"resort_uuid_bookings\" name=\"resort_uuid\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"from_bookings\">Start date</label>\n                    <input type=\"date\" id=\"from_bookings\" name=\"start_date\" value=\"\" placeholder=\"\">\n                  </div>\n\n                  <div class=\"field\">\n                    <label for=\"to_bookings\">End date</label>\n                    <input type=\"date\" id=\"to_bookings\" name=\"end_date\" value=\"\" placeholder=\"\">\n                  </div>\n\n                </div>\n              </form>\n            </div>\n            <div class=\"item\">\n              <div class=\"header\">GetHotelRatePlans</div>\n              <div class=\"menu\">\n              \n                  <a href=\"#viewHotel_6220\" class=\"item\" onClick=\"GetHotelRatePlans(event,6220,'')\"> Hotel 6220 - Royal cabo </a>\n              </div>\n            </div>\n            <a class=\"item\" href=\"#Omnibees/SendHotelRes\">SendHotelRes</a>\n            <a class=\"item\" href=\"#Omnibees/SendHotelResCommit\">SendHotelResCommit</a>\n            <a class=\"item\" href=\"#Omnibees/SendHotelResModify\">SendHotelResModify</a>\n            <a class=\"item\" href=\"#Omnibees/SendHotelResModifyCommit\">SendHotelResModifyCommit</a>\n            <a class=\"item\" href=\"#Omnibees/SendHotelResCancel\">SendHotelResCancel</a>\n            \n            <a class=\"item generalRequest\" href=\"#Omnibees/GetBookings\" data-rute=\"GetBookings\" data-form=\"getBookingsForm\" data-postSecuence=\"showReservationList\">GetBookings</a>\n            <div class=\"item\">\n              <form action=\"\" id=\"getBookingsForm\">\n                <div class=\"ui form\">\n                  <div class=\"field\">\n                    <label for=\"resort_uuid_bookings\">Resort UUID</label>\n                    <input type=\"text\" id=\"resort_uuid_bookings\" name=\"resort_uuid\" value=\"\" placeholder=\"\">\n                  </div>\n                  <div class=\"field\">\n                    <label for=\"from_bookings\">Start date</label>\n                    <input type=\"date\" id=\"from_bookings\" name=\"start_date\" value=\"\" placeholder=\"\">\n                  </div>\n\n                  <div class=\"field\">\n                    <label for=\"to_bookings\">End date</label>\n                    <input type=\"date\" id=\"to_bookings\" name=\"end_date\" value=\"\" placeholder=\"\">\n                  </div>\n\n                </div>\n              </form>\n            </div>\n            \n          </div>\n        </div>\n        <div class=\"ten wide column\" id=\"viewArea\">\n          \n        </div>\n      </div>\n      <div class=\"sixteen wide column\">\n        <div class=\"ui divider\"></div>\n        <div class=\"ui header\">\n           Logs\n        </div>\n      </div>\n      <div class=\" row\">\n        <div class=\"sixteen wide column\">\n          <div class=\"ui basic segment\" id=\"jsonViewerContainer\" style=\"padding:0;\">\n            <andypf-json-viewer id=\"jsonViewer\"></andypf-json-viewer>\n          </div>\n        </div>\n      </div>\n    </div>\n  </div>\n  <script>\n    const jsonViewer = document.getElementById(\"jsonViewer\");\n    jsonViewer.id = \"json\"\n    jsonViewer.expanded = 2\n    jsonViewer.indent = 2\n    jsonViewer.showDataTypes = true\n    jsonViewer.theme = \"monokai\"\n    jsonViewer.showToolbar = true\n    jsonViewer.showSize = true\n    jsonViewer.showCopy = true\n    jsonViewer.expandIconType = \"square\"\n    jsonViewer.data = { example: \"data\" }\n\n\n    \n  </script>\n</body>\n</html>"}} {"uid":"0ebf852"}
[2026-04-28 23:36:36] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/apps","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"4277df2"}
[2026-04-28 23:36:43] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/.env.live","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"2d25273"}
[2026-04-28 23:36:53] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelRatePlans?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=6220","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","hotelCode":"6220"}},"response":{"status":200,"type":"application/json","body":{"EchoToken":"system_9091549f-953f-78cb-d9db-a7080f2322de","TimeStamp":"2026-04-29T06:36:52.7226262Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"RatePlans":{"HotelRef":{"HotelCode":6220,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null},"RatePlan":[{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-30T00:00:00","ExpireDate":null,"RatePlanName":"Public Rate BX USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":412006,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137950,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137951,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Solaris Club Members","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47020}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560301,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Club Solaris Member Rate"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Guests","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47020}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":560302,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club Guest Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"EBB GUESTS 10%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47020}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583564,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-12-24T00:00:00","ExpireDate":null,"RatePlanName":"EBB GUESTS 15%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47020}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583567,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"EBB GUESTS 20%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47020}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583571,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137950,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137951,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-12-24T00:00:00","ExpireDate":null,"RatePlanName":"EBB 10%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47020}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583572,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137950,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137951,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"EBB 15%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47020}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583573,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137950,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137951,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-12-24T00:00:00","ExpireDate":null,"RatePlanName":"EBB 20%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47020}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583574,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-12-24T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 1","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583577,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-12-24T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 2","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":null,"RatePlanID":583579,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-12-24T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 3","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583581,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-12-24T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 4","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583584,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-12-24T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 5","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583586,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-12-24T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 6","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583588,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-12-24T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 7","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583589,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-12-24T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 8","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583590,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-12-24T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 9","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583591,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-12-24T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 10","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583592,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2025-12-24T00:00:00","ExpireDate":null,"RatePlanName":"E-business level 11","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":45503}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583593,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Guests with MU","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47020}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-16T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":587396,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137950,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137951,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-17T00:00:00","ExpireDate":null,"RatePlanName":"Club Members with MU","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47020}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-16T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":587397,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-27T00:00:00","ExpireDate":null,"RatePlanName":"Referrals","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47020}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-27T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1341539,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club Referral Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"ABW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"},{"ISOCountry":"GUF"},{"ISOCountry":"AIA"},{"ISOCountry":"CYM"},{"ISOCountry":"TCA"},{"ISOCountry":"PYF"},{"ISOCountry":"VIR"},{"ISOCountry":"SXM"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-27T00:00:00","ExpireDate":null,"RatePlanName":"EBB REFERRALS 10%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47020}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-28T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1341542,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"ABW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"},{"ISOCountry":"GUF"},{"ISOCountry":"AIA"},{"ISOCountry":"CYM"},{"ISOCountry":"TCA"},{"ISOCountry":"PYF"},{"ISOCountry":"VIR"},{"ISOCountry":"SXM"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-27T00:00:00","ExpireDate":null,"RatePlanName":"EBB REFERRALS 15%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47020}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-28T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB MEMBERSHIP CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1341543,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"ABW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"},{"ISOCountry":"GUF"},{"ISOCountry":"AIA"},{"ISOCountry":"CYM"},{"ISOCountry":"TCA"},{"ISOCountry":"PYF"},{"ISOCountry":"VIR"},{"ISOCountry":"SXM"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-27T00:00:00","ExpireDate":null,"RatePlanName":"EBB REFERRALS 20%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47020}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1341544,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"ABW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"},{"ISOCountry":"GUF"},{"ISOCountry":"AIA"},{"ISOCountry":"CYM"},{"ISOCountry":"TCA"},{"ISOCountry":"PYF"},{"ISOCountry":"VIR"},{"ISOCountry":"SXM"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137946,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":137947,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":99128,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-27T00:00:00","ExpireDate":null,"RatePlanName":"Referred with MU","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47020}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1341545,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club Referral Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"ABW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"},{"ISOCountry":"GUF"},{"ISOCountry":"AIA"},{"ISOCountry":"CYM"},{"ISOCountry":"TCA"},{"ISOCountry":"PYF"},{"ISOCountry":"VIR"},{"ISOCountry":"SXM"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":102029,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-29T00:00:00","ExpireDate":null,"RatePlanName":"Non Ref ebusiness","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full reservation payment must be made 14 days prior to arrival.\n\nImportant: If payment is not received within the specified timeframe or before the guest's arrival, the reservation may be canceled with prior notification, and the guest will be charged the Rack (high) rate upon check-in.\n\nBank transfer fees are not the responsibility of the hotel.\n\nIf you require an invoice, please inform us at the time of booking and provide the corresponding information. An invoice cannot be issued once the guest has checked in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-29T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-12-24T00:00:00","Duration":null,"End":"2027-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-12-21T00:00:00","Duration":null,"End":"2026-12-23T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2027-01-03T00:00:00","Duration":null,"End":"2027-12-18T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":[{"RatePlanInclusionDesciption":{"Name":"Hospitality Rooms","Language":null,"Description":"Enjoy the hotel facilities from 12:00 pm on your arrival day until 1:00 pm on your departure day.\nCheck-in is from 3:00 pm and check-out is at 11:00 am."},"Start":null,"Duration":null,"End":null,"ID":102024}],"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1344450,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":102029,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-28T00:00:00","ExpireDate":null,"RatePlanName":"Getaway ebusiness","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full reservation payment must be made 14 days prior to arrival.\n\nImportant: If payment is not received within the specified timeframe or before the guest's arrival, the reservation may be canceled with prior notification, and the guest will be charged the Rack (high) rate upon check-in.\n\nBank transfer fees are not the responsibility of the hotel.\n\nIf you require an invoice, please inform us at the time of booking and provide the corresponding information. An invoice cannot be issued once the guest has checked in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-29T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-12-24T00:00:00","Duration":null,"End":"2027-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-12-21T00:00:00","Duration":null,"End":"2026-12-23T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2027-01-03T00:00:00","Duration":null,"End":"2027-12-18T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":[{"RatePlanInclusionDesciption":{"Name":"Hospitality Rooms","Language":null,"Description":"Enjoy the hotel facilities from 12:00 pm on your arrival day until 1:00 pm on your departure day.\nCheck-in is from 3:00 pm and check-out is at 11:00 am."},"Start":null,"Duration":null,"End":null,"ID":102024}],"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1344453,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39120,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39121,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39122,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39124,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":102029,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-28T00:00:00","ExpireDate":null,"RatePlanName":"Getaway ebusiness 2","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit/Guarantee Policy 14 days","Language":null,"Description":"Prepayment: The full reservation payment must be made 14 days prior to arrival.\n\nImportant: If payment is not received within the specified timeframe or before the guest's arrival, the reservation may be canceled with prior notification, and the guest will be charged the Rack (high) rate upon check-in.\n\nBank transfer fees are not the responsibility of the hotel.\n\nIf you require an invoice, please inform us at the time of booking and provide the corresponding information. An invoice cannot be issued once the guest has checked in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":22499}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-29T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-12-24T00:00:00","Duration":null,"End":"2027-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor for a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-12-21T00:00:00","Duration":null,"End":"2026-12-23T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2027-01-03T00:00:00","Duration":null,"End":"2027-12-18T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":[{"RatePlanInclusionDesciption":{"Name":"Hospitality Rooms","Language":null,"Description":"Enjoy the hotel facilities from 12:00 pm on your arrival day until 1:00 pm on your departure day.\nCheck-in is from 3:00 pm and check-out is at 11:00 am."},"Start":null,"Duration":null,"End":null,"ID":102024}],"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19269,"Name":"All inclusive","Description":"Royal Solaris Los Cabos offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1344457,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"TPA_Extensions":null},"TPA_Extensions":{"ApprovalInvoiced":null,"Services":[{"ServicePricingType":18,"ServiceRPH":99128,"RatePlanCode":null,"Quantity":0,"RequestIndicator":false,"ID":99128,"ServiceDescription":{"Name":"Airport - Hotel Transportation ","Language":null,"Description":"Complimentary airport transfers.\n\nComplimentary airport-hotel transfers with a minimum 5-night stay.\n\nService available between 8:30 am and 7:30 pm","ImageURL":null},"Price":[{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109}],"ServiceCategoryCode":null,"TPA_Extensions":{"Schedules":null,"SortOrder":null,"SupplierCode":"C1420_44922"}},{"ServicePricingType":18,"ServiceRPH":102029,"RatePlanCode":null,"Quantity":0,"RequestIndicator":false,"ID":102029,"ServiceDescription":{"Name":"La Bodeguita Luxury, Tapas & Wine","Language":null,"Description":"Premium culinary experience available at an additional cost per person.\n\nCost: $2,000 MXN per person. Conversion to USD based on the exchange rate of the day.\n\nSchedule: Monday, Wednesday, and Friday from 6:00 pm to 7:45 pm.\n\nDress code: Casual/Formal\nAdvance reservations required.\n\nMinimum age: 18 years.","ImageURL":null},"Price":[{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":115,"AmountAfterTax":115,"CurrencyCode":109}],"ServiceCategoryCode":null,"TPA_Extensions":{"Schedules":null,"SortOrder":null,"SupplierCode":"C1420_44922"}}],"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null}}}} {"uid":"8a2f391"}
[2026-04-28 23:36:56] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelRatePlans?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=198336","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","hotelCode":"198336"}},"response":{"status":200,"type":"application/json","body":{"EchoToken":"system_6ac2bef2-0995-4e45-cd0a-11dd8e3b3e17","TimeStamp":"2026-04-29T06:36:56.4250619Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":{"Warnings":[{"Language":null,"ShortText":"Invalid hotel code: Hotel with code 198336 returned no data. The reason can be invalid hotel id or no authorization to get data for this hotel","Code":392,"RPH":null,"Type":null}]},"ErrorsType":null,"RatePlans":null,"TPA_Extensions":null}}} {"uid":"7f2447b"}
[2026-04-28 23:37:22] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/Omnibees/SendHotelResCommit","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"1c374f9"}
[2026-04-28 23:37:29] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelRatePlans?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=6219","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","hotelCode":"6219"}},"response":{"status":200,"type":"application/json","body":{"EchoToken":"system_094295fc-cddd-9f0c-789c-cc647a4965f0","TimeStamp":"2026-04-29T06:37:27.658861Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"RatePlans":{"HotelRef":{"HotelCode":6219,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null},"RatePlan":[{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39104,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39105,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39106,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39107,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39109,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39110,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39111,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-30T00:00:00","ExpireDate":null,"RatePlanName":"Public Rate BX USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47023}],"CancelPenalties":[{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-26T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 NIGHTS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":null,"RatePlanID":411998,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":null,"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39104,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39105,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39106,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39107,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39109,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39110,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":138914,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":138915,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101937,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-19T00:00:00","ExpireDate":null,"RatePlanName":"Solaris Club Members","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47024}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 NIGHTS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19233,"Name":"ALL INCLUSIVE","Description":"GR Solaris offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":561345,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Club Solaris member rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39104,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39105,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39106,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39107,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39109,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39110,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":138914,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":138915,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101937,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-19T00:00:00","ExpireDate":null,"RatePlanName":"Guests","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47024}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 NIGHTS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19233,"Name":"ALL INCLUSIVE","Description":"GR Solaris offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":561346,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club Guest Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39104,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39105,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39106,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39107,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39109,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39110,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39111,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"E-business level 1","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47023}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-26T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 NIGHTS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":null,"RatePlanID":583506,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"Sanitation tax","Language":null,"Description":"A charge of $76 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39104,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39105,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39106,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39107,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39109,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39110,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39111,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":19233,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"E-business level 2","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47023}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-26T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 NIGHTS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19233,"Name":"ALL INCLUSIVE","Description":"GR Solaris offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583507,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"Sanitation tax","Language":null,"Description":"A charge of $76 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39104,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39105,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39106,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39107,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39109,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39110,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39111,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":19233,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"E-business level 3","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47023}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-26T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 NIGHTS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19233,"Name":"ALL INCLUSIVE","Description":"GR Solaris offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583512,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"Sanitation tax","Language":null,"Description":"A charge of $76 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39104,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39105,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39106,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39107,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39109,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39110,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39111,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":19233,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"E-business level 4","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47023}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-26T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 NIGHTS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19233,"Name":"ALL INCLUSIVE","Description":"GR Solaris offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583513,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"Sanitation tax","Language":null,"Description":"A charge of $76 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39104,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39105,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39106,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39107,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39109,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39110,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39111,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":19233,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"E-business level 5","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47023}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-26T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 NIGHTS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19233,"Name":"ALL INCLUSIVE","Description":"GR Solaris offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583514,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"Sanitation tax","Language":null,"Description":"A charge of $76 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39104,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39105,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39106,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39107,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39109,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39110,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39111,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":19233,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"E-business level 6","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47023}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-26T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 NIGHTS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19233,"Name":"ALL INCLUSIVE","Description":"GR Solaris offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583517,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"Sanitation tax","Language":null,"Description":"A charge of $76 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39104,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39105,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39106,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39107,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39109,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39110,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39111,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":19233,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"E-business level 7","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47023}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-26T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 NIGHTS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19233,"Name":"ALL INCLUSIVE","Description":"GR Solaris offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583521,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"Sanitation tax","Language":null,"Description":"A charge of $76 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39104,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39105,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39106,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39107,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39109,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39110,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39111,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":19233,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"E-business level 8","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47023}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-26T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 NIGHTS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19233,"Name":"ALL INCLUSIVE","Description":"GR Solaris offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583523,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"Sanitation tax","Language":null,"Description":"A charge of $76 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39104,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39105,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39106,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39107,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39109,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39110,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39111,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":19233,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"E-business level 9","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47023}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-26T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 NIGHTS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19233,"Name":"ALL INCLUSIVE","Description":"GR Solaris offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583528,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"Sanitation tax","Language":null,"Description":"A charge of $76 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39104,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39105,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39106,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39107,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39109,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39110,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39111,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":19233,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"E-business level 10","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47023}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-26T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 NIGHTS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19233,"Name":"ALL INCLUSIVE","Description":"GR Solaris offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583530,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"Sanitation tax","Language":null,"Description":"A charge of $76 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39104,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39105,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39106,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39107,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39109,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39110,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39111,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":19233,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"E-business level 11","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47023}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-26T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 NIGHTS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19233,"Name":"ALL INCLUSIVE","Description":"GR Solaris offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583532,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"Sanitation tax","Language":null,"Description":"A charge of $76 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39104,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39105,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39106,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39107,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39109,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39110,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":138914,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":138915,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101937,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-19T00:00:00","ExpireDate":null,"RatePlanName":"EBB 10%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47024}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 NIGHTS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19233,"Name":"ALL INCLUSIVE","Description":"GR Solaris offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583534,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39104,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39105,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39106,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39107,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39109,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39110,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":138914,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":138915,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101937,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-19T00:00:00","ExpireDate":null,"RatePlanName":"EBB 15%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47024}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 NIGHTS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19233,"Name":"ALL INCLUSIVE","Description":"GR Solaris offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583536,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39104,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39105,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39106,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39107,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39109,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39110,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":138914,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":138915,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101937,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"EBB 20%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47024}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 NIGHTS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19233,"Name":"ALL INCLUSIVE","Description":"GR Solaris offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583537,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39104,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39105,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39106,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39107,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39109,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39110,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":138914,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":138915,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101937,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"EBB GUESTS 10%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47024}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 NIGHTS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19233,"Name":"ALL INCLUSIVE","Description":"GR Solaris offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583538,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39104,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39105,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39106,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39107,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39109,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39110,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":138914,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":138915,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101937,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"EBB GUESTS 15%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47024}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 NIGHTS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19233,"Name":"ALL INCLUSIVE","Description":"GR Solaris offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583539,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39104,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39105,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39106,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39107,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39109,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39110,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":138914,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":138915,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101937,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"EBB GUESTS 20%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47024}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-30T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 NIGHTS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19233,"Name":"ALL INCLUSIVE","Description":"GR Solaris offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583540,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39104,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39105,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39106,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39107,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39109,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39110,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":138914,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":138915,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101937,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-19T00:00:00","ExpireDate":null,"RatePlanName":"Guests with MU","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47024}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-16T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19233,"Name":"ALL INCLUSIVE","Description":"GR Solaris offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":587300,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39104,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39105,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39106,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39107,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39109,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39110,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":138914,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":138915,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101937,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-19T00:00:00","ExpireDate":null,"RatePlanName":"Member rate with MU","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47024}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-16T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19233,"Name":"ALL INCLUSIVE","Description":"GR Solaris offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":587304,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39104,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39105,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39106,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39107,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39109,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39110,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":138914,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":138915,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101937,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-27T00:00:00","ExpireDate":null,"RatePlanName":"Referrals","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47024}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-28T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19233,"Name":"ALL INCLUSIVE","Description":"GR Solaris offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1341579,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club Referral Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39104,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39105,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39106,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39107,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39109,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39110,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":138914,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":138915,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101937,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-27T00:00:00","ExpireDate":null,"RatePlanName":"EBB REFERRALS 10%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47024}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-28T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19233,"Name":"ALL INCLUSIVE","Description":"GR Solaris offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1341581,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39104,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39105,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39106,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39107,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39109,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39110,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":138914,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":138915,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101937,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-27T00:00:00","ExpireDate":null,"RatePlanName":"EBB REFERRALS 15%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47024}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-28T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19233,"Name":"ALL INCLUSIVE","Description":"GR Solaris offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1341582,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39104,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39105,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39106,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39107,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39109,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39110,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":138914,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":138915,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101937,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-27T00:00:00","ExpireDate":null,"RatePlanName":"EBB REFERRALS 20%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47024}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-28T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19233,"Name":"ALL INCLUSIVE","Description":"GR Solaris offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1341585,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39104,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39105,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39106,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39107,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39109,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39110,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":138914,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":138915,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101937,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-27T00:00:00","ExpireDate":null,"RatePlanName":"Referred with MU","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47024}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-28T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19233,"Name":"ALL INCLUSIVE","Description":"GR Solaris offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1341586,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39104,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39105,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39106,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39107,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39109,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39110,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39111,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-28T00:00:00","ExpireDate":null,"RatePlanName":"Getaway","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit 14 days before arrival","Language":null,"Description":"Prepayment: The full reservation payment must be made 14 days prior to arrival.\n\nImportant: If the reservation payment is not received within the specified timeframe or before the client's arrival, the reservation may be canceled with prior notification, and the client will be charged the Rack (high) rate upon check-in.\n\nBank transfer fees are not the responsibility of the hotel.\n\nIf you require an invoice, please inform us at the time of booking and provide the corresponding information. An invoice cannot be issued once the guest has checked in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9710}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 2 DAYS","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-29T00:00:00","Duration":null,"End":"2026-10-31T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-12-01T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-12-24T00:00:00","Duration":null,"End":"2027-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 NIGHTS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-11-01T00:00:00","Duration":null,"End":"2026-11-30T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-12-21T00:00:00","Duration":null,"End":"2026-12-23T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2027-01-03T00:00:00","Duration":null,"End":"2027-12-18T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19233,"Name":"ALL INCLUSIVE","Description":"GR Solaris offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1344427,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39104,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39105,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39106,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39107,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39109,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39110,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39111,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"Getaway flex","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit 14 days before arrival","Language":null,"Description":"Prepayment: The full reservation payment must be made 14 days prior to arrival.\n\nImportant: If the reservation payment is not received within the specified timeframe or before the client's arrival, the reservation may be canceled with prior notification, and the client will be charged the Rack (high) rate upon check-in.\n\nBank transfer fees are not the responsibility of the hotel.\n\nIf you require an invoice, please inform us at the time of booking and provide the corresponding information. An invoice cannot be issued once the guest has checked in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9710}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 2 DAYS","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-29T00:00:00","Duration":null,"End":"2026-10-31T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-12-01T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-12-24T00:00:00","Duration":null,"End":"2027-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 NIGHTS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-11-01T00:00:00","Duration":null,"End":"2026-11-30T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-12-21T00:00:00","Duration":null,"End":"2026-12-23T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2027-01-03T00:00:00","Duration":null,"End":"2027-12-18T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 NIGHTS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19233,"Name":"ALL INCLUSIVE","Description":"GR Solaris offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1344429,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39104,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39105,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39106,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39107,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39109,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39110,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39111,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":null,"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-28T00:00:00","ExpireDate":null,"RatePlanName":"Non Ref ebusiness","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit 14 days before arrival","Language":null,"Description":"Prepayment: The full reservation payment must be made 14 days prior to arrival.\n\nImportant: If the reservation payment is not received within the specified timeframe or before the client's arrival, the reservation may be canceled with prior notification, and the client will be charged the Rack (high) rate upon check-in.\n\nBank transfer fees are not the responsibility of the hotel.\n\nIf you require an invoice, please inform us at the time of booking and provide the corresponding information. An invoice cannot be issued once the guest has checked in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9710}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 2 DAYS","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":19233,"Name":"ALL INCLUSIVE","Description":"GR Solaris offers an all-inclusive plan.","Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1344431,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in: 3 pm\rCheck-out: 11 am\rMinimum check-in age is 18\rChildren are welcome:\r0 - 4 years old: Free\r5 - 12 years old: additional cost depending of season.\rClients must present an identification at check-in.\rSpecial requests are subject to availability upon check-in and may incur additional charges. \rSpecial requests cannot be guaranteed.\rAll payments made by American Express credit card applies a 5% fee in case of cancellations and/or refund. For more details, please contact the office using the information on the reservation confirmation received after booking.\rA resort fee is included in the total price displayed. Only registered guests are allowed in the guestrooms.\r\r"}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"TPA_Extensions":null},"TPA_Extensions":{"ApprovalInvoiced":null,"Services":[{"ServicePricingType":18,"ServiceRPH":101937,"RatePlanCode":null,"Quantity":0,"RequestIndicator":false,"ID":101937,"ServiceDescription":{"Name":"Airport - Hotel Transportation","Language":null,"Description":"Complimentary airport transfers.\n\nComplimentary airport-hotel transfers with a minimum 5-night stay.\n\nService available between 8:30 am and 7:30 pm","ImageURL":null},"Price":[{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109}],"ServiceCategoryCode":null,"TPA_Extensions":{"Schedules":null,"SortOrder":null,"SupplierCode":"C1420_44922"}},{"ServicePricingType":18,"ServiceRPH":19233,"RatePlanCode":null,"Quantity":0,"RequestIndicator":false,"ID":19233,"ServiceDescription":{"Name":"ALL INCLUSIVE","Language":null,"Description":"GR Solaris offers an all-inclusive plan.","ImageURL":null},"Price":[{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109}],"ServiceCategoryCode":4,"TPA_Extensions":{"Schedules":null,"SortOrder":null,"SupplierCode":"C1420_44922"}}],"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null}}}} {"uid":"e7c44fa"}
[2026-04-28 23:37:29] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/Omnibees/full_test?resortCode=198336&roomCode=1036385&RatePlanID=3236715&checkIn=2025-10-01&checkOut=2025-10-02&adults=1&children=0&children_ages=","Data":{"resortCode":"198336","roomCode":"1036385","RatePlanID":"3236715","checkIn":"2025-10-01","checkOut":"2025-10-02","adults":"1","children":"0","children_ages":""}},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"5974199"}
[2026-04-28 23:37:39] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/_profiler/phpinfo","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"a922d24"}
[2026-04-28 23:38:09] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/public/_ignition/execute-solution","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"94a5eac"}
[2026-04-28 23:39:53] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelRatePlans?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","hotelCode":""}},"response":{"status":200,"type":"application/json","body":{"EchoToken":"system_5e3a5be9-e571-e299-5da4-0823f1fb1e55","TimeStamp":"2026-04-29T06:39:53.7292871Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":{"Warnings":[{"Language":null,"ShortText":"Invalid hotel code: Hotel with code 0 returned no data. The reason can be invalid hotel id or no authorization to get data for this hotel","Code":392,"RPH":null,"Type":null}]},"ErrorsType":null,"RatePlans":null,"TPA_Extensions":null}}} {"uid":"f0e2978"}
[2026-04-28 23:40:52] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/enhancecp","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"2311d30"}
[2026-04-28 23:43:02] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelAvail","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"c375f32"}
[2026-04-28 23:43:18] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/OBKE/FL716253/registerapi_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"e12b3f1"}
[2026-04-28 23:44:08] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetCountry?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du"}},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed method","methods":["POST"]}}} {"uid":"711e7a8"}
[2026-04-28 23:46:22] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/logs/application.log","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"c8d0293"}
[2026-04-28 23:46:28] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/phptest.php","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"4473024"}
[2026-04-28 23:46:28] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/.dockerignore","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"b41cbb5"}
[2026-04-28 23:46:28] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/old/info.php","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"39885ca"}
[2026-04-28 23:46:29] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/infophp.php","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"d1f2ec0"}
[2026-04-28 23:46:29] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/admin/config.php","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"8eb6759"}
[2026-04-28 23:46:29] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/k8s-config.yml","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"8437a71"}
[2026-04-28 23:46:30] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/info.php.txt","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"a7fb01f"}
[2026-04-28 23:46:30] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/backup.sql","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"44d7c31"}
[2026-04-28 23:46:31] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/serverinfo.php","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"31318d5"}
[2026-04-28 23:46:31] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/.secrets","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"0b3a169"}
[2026-04-28 23:46:32] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/settings/config.php","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"2d82099"}
[2026-04-28 23:46:32] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/app/etc/env.php","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"c7dbbed"}
[2026-04-28 23:46:32] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/oauth.json","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"b284522"}
[2026-04-28 23:46:32] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/.docker/config.json","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"a67ab05"}
[2026-04-28 23:46:33] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/.env.1","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"3aeafcb"}
[2026-04-28 23:46:33] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/public/test.php","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"2d55ac2"}
[2026-04-28 23:46:34] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/.azure/credentials","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"0afa3c4"}
[2026-04-28 23:46:34] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/api_keys.json","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"494efec"}
[2026-04-28 23:46:35] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/admin/info.php","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"13c1ef5"}
[2026-04-28 23:46:36] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/includes/info.php","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"f65fb25"}
[2026-04-28 23:46:36] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/php_version.php","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"287be5b"}
[2026-04-28 23:46:36] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/.env.prod.local","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"cbec2dc"}
[2026-04-28 23:46:36] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/docker-compose.yml","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"a8440aa"}
[2026-04-28 23:46:37] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/pi.php","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"c4aa07f"}
[2026-04-28 23:46:37] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/info2.php","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"99b9ef4"}
[2026-04-28 23:46:38] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/.dockerenv","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"8cc9b2a"}
[2026-04-28 23:48:01] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/new","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"70b7d2e"}
[2026-04-28 23:48:07] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/blog","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"71fa872"}
[2026-04-28 23:49:45] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelDescriptiveInfo?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=6220","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","hotelCode":"6220"}},"response":{"status":200,"type":"application/json","body":{"EchoToken":"system_8c9950ab-498a-2aa0-f1b4-6993696ea798","TimeStamp":"2026-04-29T06:49:44.9051158Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"POS":null,"WarningsType":null,"Success":[],"ErrorsType":null,"HotelDescriptiveContentsType":{"HotelDescriptiveContents":[{"CurrencyCode":109,"TimeZone":"(UTC-07:00) Chihuahua, La Paz, Mazatlan","HotelRef":{"HotelCode":6220,"ChainCode":3247,"HotelName":"Royal Solaris Los Cabos","BrandName":null,"ChainName":"Hoteles Solaris"},"HotelInfo":{"WhenBuilt":"","NFloors":null,"HandicapRooms":null,"SmokingRooms":null,"NonSmokingHotel":true,"CheckInHours":{"Start":"2026-01-02T15:00:00","Duration":null,"End":"2026-01-02T11:00:00"},"ReceptionHours":null,"BreakfastHours":null,"AdditionalWorkingHours":null,"ClosedSeasonsType":null,"Descriptions":{"Renovations":null,"DescriptiveText":"Royal Solaris Los Cabos is a magnificent resort for the Mexican hacienda style sea with beautiful gardens, pools and 390 rooms, designed strategically in a horseshoe shape to provide an easy and fast access to all areas and services of the hotel. The only one in Los Cabos with a mini water park; It has a Mini Club and a Baby Park for children from 0 to 12 years old. Pool complex for all ages, relaxation area and jacuzzi. Also enjoy a dive pool (first class for free). We have a gym, spa and a hospitality area for our guests.","MultimediaDescriptionsType":{"MultimediaDescriptions":[{"InfoCode":11,"AdditionalDetailCode":3,"VideoItemsType":null,"ImageItemsType":null,"TextItemsType":{"TextItems":[{"Name":"Travel Direction","Language":null,"Description":"Located in San Jose del Cabo, only 15 minutes away from the San Jose International Airport( SJD) and 30 minutes from Cabo San Lucas."}]},"ID":null},{"InfoCode":5,"AdditionalDetailCode":2,"VideoItemsType":null,"ImageItemsType":null,"TextItemsType":{"TextItems":[{"Name":"Additional Working Hours","Language":null,"Description":"Reservation department hours:\r8:30 a.m. a 18:30 p.m. Monday to Friday\r8:30 a.m. a 17:00 p.m.   Saturday\r8:30a.m. a 13:00 p.m Sonday\rLos Cabos Local time\r"}]},"ID":null},{"InfoCode":3,"AdditionalDetailCode":2,"VideoItemsType":null,"ImageItemsType":null,"TextItemsType":{"TextItems":[{"Name":"TripadvisorURL","Language":null,"Description":null}]},"ID":null},{"InfoCode":3,"AdditionalDetailCode":2,"VideoItemsType":null,"ImageItemsType":{"ImageItems":[{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/223147.jpg","URLType":2},"Name":"Main Pool Los Cabos (Large) (2).jpg","Language":null,"Description":null,"ImageFormat":[{"Sort":0,"IsPrimary":true}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/223149.jpg","URLType":2},"Name":"Entrada hotel Cabos1 (Large).jpg","Language":null,"Description":null,"ImageFormat":[{"Sort":1,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/223156.jpg","URLType":2},"Name":"Alberca noche Cabos (Large).jpg","Language":null,"Description":null,"ImageFormat":[{"Sort":5,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/223157.jpg","URLType":2},"Name":"Children Pool (Large).jpg","Language":null,"Description":null,"ImageFormat":[{"Sort":6,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/223164.jpg","URLType":2},"Name":"Restaurant Terraza (Large).jpg","Language":null,"Description":null,"ImageFormat":[{"Sort":9,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/223167.jpg","URLType":2},"Name":"WATERPARK (Large).jpg","Language":null,"Description":null,"ImageFormat":[{"Sort":15,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/223168.jpg","URLType":2},"Name":"WATERPARK 1 (Large).jpg","Language":null,"Description":null,"ImageFormat":[{"Sort":16,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/223169.jpg","URLType":2},"Name":"baby park 3 (Large).jpg","Language":null,"Description":null,"ImageFormat":[{"Sort":21,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/223170.jpg","URLType":2},"Name":"baby park 1 (Large).jpg","Language":null,"Description":null,"ImageFormat":[{"Sort":22,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/223172.jpg","URLType":2},"Name":"CANCHA DE TENNIS (Large).jpg","Language":null,"Description":null,"ImageFormat":[{"Sort":25,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/223176.jpg","URLType":2},"Name":"JACUZZI (Large).jpg","Language":null,"Description":null,"ImageFormat":[{"Sort":27,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/223177.jpg","URLType":2},"Name":"TEATRO (Large).jpg","Language":null,"Description":null,"ImageFormat":[{"Sort":17,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/223178.jpg","URLType":2},"Name":"TEATRO TEHUACÁN (Large).jpg","Language":null,"Description":null,"ImageFormat":[{"Sort":18,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/223180.jpg","URLType":2},"Name":"RESTAURANTE CAFE SOLARIS (Large).jpg","Language":null,"Description":null,"ImageFormat":[{"Sort":13,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/223182.jpg","URLType":2},"Name":"RESTAURANTE MARCOPOLO (Large).jpg","Language":null,"Description":null,"ImageFormat":[{"Sort":8,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/223183.jpg","URLType":2},"Name":"RESTAURANTE PANCHOS (Large).jpg","Language":null,"Description":null,"ImageFormat":[{"Sort":29,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/223188.jpg","URLType":2},"Name":"Pizzeria (Large).jpg","Language":null,"Description":null,"ImageFormat":[{"Sort":32,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/223199.jpg","URLType":2},"Name":"show (Large).jpg","Language":null,"Description":null,"ImageFormat":[{"Sort":37,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/223200.jpg","URLType":2},"Name":"Show mexicano (Large).jpg","Language":null,"Description":null,"ImageFormat":[{"Sort":30,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/429705.jpg","URLType":2},"Name":"IMG_8541.jpg","Language":null,"Description":null,"ImageFormat":[{"Sort":38,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/429706.jpg","URLType":2},"Name":"_DSC9512.jpg","Language":null,"Description":null,"ImageFormat":[{"Sort":39,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/685070.jpg","URLType":2},"Name":"miniwater park nuevo_x.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":10,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/685072.jpg","URLType":2},"Name":"spa x.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":33,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/685076.jpg","URLType":2},"Name":"nuevo tobogán x.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":11,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/685077.jpg","URLType":2},"Name":"lobby x.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":2,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/685078.jpg","URLType":2},"Name":"estetica (large) x.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":35,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/685079.jpg","URLType":2},"Name":"recep spa (large) x.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":34,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/685080.jpg","URLType":2},"Name":"img_8539-retx.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":12,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/685086.jpg","URLType":2},"Name":"panorámica atardecer.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":3,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/685087.jpg","URLType":2},"Name":"gym_3.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":23,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/685088.jpg","URLType":2},"Name":"gym_1.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":24,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/685089.jpg","URLType":2},"Name":"pancho´s x.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":28,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/685090.jpg","URLType":2},"Name":"restaurante rosmarinus x.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":14,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/685114.jpg","URLType":2},"Name":"panorámica 3 x.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":31,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/685115.jpg","URLType":2},"Name":"panorámica 2 x.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":19,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/685116.jpg","URLType":2},"Name":"lobby 3 x.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":4,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/685119.jpg","URLType":2},"Name":"meeting room x.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":7,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/685120.jpg","URLType":2},"Name":"romantic dinner x.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":36,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/685123.jpg","URLType":2},"Name":"kid club 2 x.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":20,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/Property/685124.jpg","URLType":2},"Name":"gym.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":26,"IsPrimary":false}]}]},"TextItemsType":null,"ID":null}]}},"CategoryCodes":{"HotelCategory":{"PropertyClassType":2}},"Position":{"Latitude":"23.045394","Longitude":"-109.695654"},"HotelAmenities":[{"Code":"7","HotelAmenity":"Bank (Cash Machine)"},{"Code":"45","HotelAmenity":"Gift shop"},{"Code":"58","HotelAmenity":"Laundry / dry-cleaning valet"},{"Code":"10009","HotelAmenity":"Major credit cards accepted"},{"Code":"50","HotelAmenity":"Daily Housekeeping"},{"Code":"228","HotelAmenity":"Business Center"},{"Code":"267","HotelAmenity":"Print facilities"},{"Code":"44","HotelAmenity":"Games Loundge"},{"Code":"1","HotelAmenity":"24 hours Front Desk"},{"Code":"68","HotelAmenity":"Paid Parking"},{"Code":"62","HotelAmenity":"Bar Club"},{"Code":"76","HotelAmenity":"Restaurant"},{"Code":"72","HotelAmenity":"Pool's Bar"},{"Code":"10014","HotelAmenity":"Private Restaurant"},{"Code":"10002","HotelAmenity":"Buffet Restaurant"},{"Code":"84","HotelAmenity":"SPA"},{"Code":"61","HotelAmenity":"Massage"},{"Code":"23","HotelAmenity":"Fitness center"},{"Code":"10001","HotelAmenity":"Beauty Salon"},{"Code":"71","HotelAmenity":"Swimming-Pool"},{"Code":"125","HotelAmenity":"Kids Club"},{"Code":"233","HotelAmenity":"Tennis Court"},{"Code":"24","HotelAmenity":"Conference Rooms"},{"Code":"104","HotelAmenity":"Wedding Services"},{"Code":"55","HotelAmenity":"Jacuzzi"},{"Code":"10007","HotelAmenity":"Free Wifi"},{"Code":"10005","HotelAmenity":"Direct access to the beach"}],"OwnershipManagementInfosType":{"OwnershipManagementInfo":[{"Location":6,"RelationshipTypeCode":3,"Names":{"Names":[{"NamePrefix":0,"GivenName":"Rosaura Ugalde","MiddleName":null,"Surname":null}]},"AddressesType":null,"Phones":{"ContactNumbers":[{"ShareSyncInd":0,"ShareMarketInd":0,"PhoneNumber":"01(238)3824940","PhoneTechType":1,"Extension":null,"PhoneLocationType":7}]},"Emails":["e.marketing@hotelessolaris.com"],"URLsType":null,"Company":null}]},"TotalRooms":"390","WLCode":9},"ContactInfosType":{"ContactInfos":[{"Location":6,"RelationshipTypeCode":null,"Names":null,"AddressesType":{"Addresses":[{"CountryCode":130,"StateProvCode":5889279,"CityCode":8009649,"AddressLine":"Boulevard San José Lote 10, Zona Hotelera, San José del Cabo, Baja California Sur, 23400 ","CityName":"San José del Cabo","PostalCode":"23400","StateProv":"Baja California Sur","CountryName":"Mexico","ZoneCode":null,"ZoneName":null}]},"Phones":{"ContactNumbers":[{"ShareSyncInd":0,"ShareMarketInd":0,"PhoneNumber":"01(238)3824940","PhoneTechType":1,"Extension":null,"PhoneLocationType":4},{"ShareSyncInd":0,"ShareMarketInd":0,"PhoneNumber":null,"PhoneTechType":5,"Extension":null,"PhoneLocationType":4},{"ShareSyncInd":0,"ShareMarketInd":0,"PhoneNumber":null,"PhoneTechType":3,"Extension":null,"PhoneLocationType":4}]},"Emails":["cabos@hotelessolaris.com"],"URLsType":{"URLs":[{"Address":"www.hotelessolaris.com","URLType":1}]},"Company":null},{"Location":12,"RelationshipTypeCode":null,"Names":{"Names":[{"NamePrefix":0,"GivenName":"Cristell Lopez","MiddleName":null,"Surname":null}]},"AddressesType":null,"Phones":{"ContactNumbers":[{"ShareSyncInd":0,"ShareMarketInd":0,"PhoneNumber":"+52 (998) 8 48 84 00","PhoneTechType":1,"Extension":null,"PhoneLocationType":4}]},"Emails":["clopez@hotelessolaris.com"],"URLsType":null,"Company":null},{"Location":7,"RelationshipTypeCode":null,"Names":{"Names":[{"NamePrefix":0,"GivenName":"Reservaciones","MiddleName":null,"Surname":null}]},"AddressesType":null,"Phones":{"ContactNumbers":[{"ShareSyncInd":0,"ShareMarketInd":0,"PhoneNumber":"01 (238) 38 24940 ","PhoneTechType":1,"Extension":null,"PhoneLocationType":3},{"ShareSyncInd":0,"ShareMarketInd":0,"PhoneNumber":null,"PhoneTechType":3,"Extension":null,"PhoneLocationType":3}]},"Emails":["cabos@hotelessolaris.com"],"URLsType":null,"Company":null},{"Location":8,"RelationshipTypeCode":null,"Names":{"Names":[{"NamePrefix":0,"GivenName":"Royal Solaris Los Cabos","MiddleName":null,"Surname":null}]},"AddressesType":{"Addresses":[{"CountryCode":130,"StateProvCode":null,"CityCode":null,"AddressLine":"BLVD KUKULCAN LOTE 64SECCION A, SEGUNDA ETAPA, ZONA HOTELERA,BENITO JUAREZ","CityName":"Cancun","PostalCode":"77500","StateProv":null,"CountryName":"Mexico","ZoneCode":null,"ZoneName":null}]},"Phones":{"ContactNumbers":[{"ShareSyncInd":0,"ShareMarketInd":0,"PhoneNumber":"+529988488400","PhoneTechType":1,"Extension":null,"PhoneLocationType":4}]},"Emails":["ingresoscabos@hotelessolaris.com"],"URLsType":null,"Company":{"Name":"HOTELES SOLARIS DE MEXICO, S.A DE C.V.","NumberHotels":null,"Logo":null,"VAT":null}},{"Location":11,"RelationshipTypeCode":null,"Names":{"Names":[{"NamePrefix":0,"GivenName":"Rosaura Ugalde","MiddleName":null,"Surname":null}]},"AddressesType":{"Addresses":[{"CountryCode":130,"StateProvCode":null,"CityCode":null,"AddressLine":"BLVD KUKULCAN LOTE 64SECCION A, SEGUNDA ETAPA, ZONA HOTELERA,BENITO JUAREZ","CityName":"Cancun","PostalCode":"77500","StateProv":"Quintana Roo","CountryName":null,"ZoneCode":null,"ZoneName":null}]},"Phones":{"ContactNumbers":[{"ShareSyncInd":0,"ShareMarketInd":0,"PhoneNumber":null,"PhoneTechType":1,"Extension":null,"PhoneLocationType":9},{"ShareSyncInd":0,"ShareMarketInd":0,"PhoneNumber":null,"PhoneTechType":5,"Extension":null,"PhoneLocationType":9},{"ShareSyncInd":0,"ShareMarketInd":0,"PhoneNumber":"+529988488400 ext.4015","PhoneTechType":1,"Extension":null,"PhoneLocationType":9}]},"Emails":["e.marketing@hotelessolaris.com"],"URLsType":{"URLs":[{"Address":null,"URLType":1}]},"Company":{"Name":"Hoteles Solaris","NumberHotels":6,"Logo":null,"VAT":null}}]},"AffiliationInfo":{"AwardsType":{"Awards":[{"Rating":5,"Name":"Stars"}]}},"AreaInfo":{"RefPointsType":{"RefPoints":[{"AttractionCategoryType":1,"LocationCode":"SJD","CodeContext":0}]},"AttractionsType":null},"FacilityInfo":{"GuestRoomsType":{"GuestRooms":[{"Quantity":173,"MaxOccupancy":4,"MaxAdultOccupancy":4,"MinAdultOccupancy":1,"ID":39120,"MaxChildOccupancy":2,"MaxFreeChildOccupancy":2,"AmenitiesType":{"RoomAmenities":[{"RoomAmenity":"Air Conditioned","Code":"2"},{"RoomAmenity":"Telephone","Code":"107"},{"RoomAmenity":"safe deposit box","Code":"92"},{"RoomAmenity":"Terrace","Code":"7"},{"RoomAmenity":"Internet Access","Code":"54"},{"RoomAmenity":"Mini-bar","Code":"69"},{"RoomAmenity":"Amenities","Code":"11"},{"RoomAmenity":"Shower","Code":"142"},{"RoomAmenity":"hair dryer","Code":"50"},{"RoomAmenity":"TV","Code":"251"}]},"MultimediaDescriptionsType":{"MultimediaDescriptions":[{"InfoCode":1,"AdditionalDetailCode":4,"VideoItemsType":null,"ImageItemsType":null,"TextItemsType":{"TextItems":[{"Name":null,"Language":null,"Description":"Discover this comfortable room with a king-size bed or two double beds. It features a balcony with garden or city views. It measures 42 m²."}]},"ID":null},{"InfoCode":3,"AdditionalDetailCode":4,"VideoItemsType":null,"ImageItemsType":{"ImageItems":[{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/2229034.jpg","URLType":2},"Name":"deluxe view king.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":7,"IsPrimary":true}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/2229120.jpg","URLType":2},"Name":"bathroom 2.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":1,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/2229121.jpg","URLType":2},"Name":"delixe king.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":2,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/2229122.jpg","URLType":2},"Name":"deluxe double.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":3,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/2229128.jpg","URLType":2},"Name":"bathroom.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":4,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/2229141.jpg","URLType":2},"Name":"balcony.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":5,"IsPrimary":false}]}]},"TextItemsType":null,"ID":null}]},"DescriptiveText":"Deluxe room","TypeRoom":{"Size":0,"SizeMeasurement":"sqm","BedTypeCodes":[{"OTA_CodeType":1,"OTA_CodeName":"Double"},{"OTA_CodeType":3,"OTA_CodeName":"King"}],"RoomClassificationCodes":[{"OTA_CodeType":77,"OTA_CodeName":"Deluxe"}],"RoomViewCodes":[{"OTA_CodeType":3,"OTA_CodeName":"City View"}]},"WLCode":9},{"Quantity":39,"MaxOccupancy":4,"MaxAdultOccupancy":4,"MinAdultOccupancy":1,"ID":39121,"MaxChildOccupancy":2,"MaxFreeChildOccupancy":2,"AmenitiesType":{"RoomAmenities":[{"RoomAmenity":"Air Conditioned","Code":"2"},{"RoomAmenity":"Telephone","Code":"107"},{"RoomAmenity":"safe deposit box","Code":"92"},{"RoomAmenity":"Terrace","Code":"7"},{"RoomAmenity":"Work Desk","Code":"28"},{"RoomAmenity":"Mini-bar","Code":"69"},{"RoomAmenity":"Amenities","Code":"11"},{"RoomAmenity":"Shower","Code":"142"},{"RoomAmenity":"hair dryer","Code":"50"},{"RoomAmenity":"TV","Code":"251"}]},"MultimediaDescriptionsType":{"MultimediaDescriptions":[{"InfoCode":1,"AdditionalDetailCode":4,"VideoItemsType":null,"ImageItemsType":null,"TextItemsType":{"TextItems":[{"Name":null,"Language":null,"Description":"Beautiful room with one king-size bed or two double beds. It features a balcony with partial ocean views. It measures 42 m2."}]},"ID":null},{"InfoCode":3,"AdditionalDetailCode":4,"VideoItemsType":null,"ImageItemsType":{"ImageItems":[{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/2229125.jpg","URLType":2},"Name":"deluxe partial ov king.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":2,"IsPrimary":true}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/2229123.jpg","URLType":2},"Name":"bathroom 2-copy-1.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":0,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/2229124.jpg","URLType":2},"Name":"deluxe partial ocean double.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":1,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/2229126.jpg","URLType":2},"Name":"bathroom.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":3,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/2229140.jpg","URLType":2},"Name":"balcony pov.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":4,"IsPrimary":false}]}]},"TextItemsType":null,"ID":null}]},"DescriptiveText":"Deluxe Partial Ocean View","TypeRoom":{"Size":0,"SizeMeasurement":"sqm","BedTypeCodes":[{"OTA_CodeType":1,"OTA_CodeName":"Double"},{"OTA_CodeType":3,"OTA_CodeName":"King"}],"RoomClassificationCodes":[{"OTA_CodeType":77,"OTA_CodeName":"Deluxe"}],"RoomViewCodes":[{"OTA_CodeType":11,"OTA_CodeName":"Ocean View"}]},"WLCode":9},{"Quantity":50,"MaxOccupancy":4,"MaxAdultOccupancy":4,"MinAdultOccupancy":1,"ID":39122,"MaxChildOccupancy":2,"MaxFreeChildOccupancy":2,"AmenitiesType":{"RoomAmenities":[{"RoomAmenity":"Air Conditioned","Code":"2"},{"RoomAmenity":"Telephone","Code":"107"},{"RoomAmenity":"safe deposit box","Code":"92"},{"RoomAmenity":"Terrace","Code":"7"},{"RoomAmenity":"Mini-bar","Code":"69"},{"RoomAmenity":"Amenities","Code":"11"},{"RoomAmenity":"Shower","Code":"142"},{"RoomAmenity":"TV","Code":"251"}]},"MultimediaDescriptionsType":{"MultimediaDescriptions":[{"InfoCode":1,"AdditionalDetailCode":4,"VideoItemsType":null,"ImageItemsType":null,"TextItemsType":{"TextItems":[{"Name":null,"Language":null,"Description":"Amazing room has a sea facing view. This luxurious rooms features a king size bed or two double beds. Room size: 42 m2 / 452 ft2."}]},"ID":null},{"InfoCode":3,"AdditionalDetailCode":4,"VideoItemsType":null,"ImageItemsType":{"ImageItems":[{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/2229132.jpg","URLType":2},"Name":"deluxe ocean view double.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":4,"IsPrimary":true}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/2229129.jpg","URLType":2},"Name":"bathroom.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":0,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/2229130.jpg","URLType":2},"Name":"bathroom 2.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":1,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/2229131.jpg","URLType":2},"Name":"deluxe ocean double.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":2,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/2229133.jpg","URLType":2},"Name":"deluxe ocean view king.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":3,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/2229134.jpg","URLType":2},"Name":"deluxe ocean king.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":5,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/2229139.jpg","URLType":2},"Name":"balcony ov.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":6,"IsPrimary":false}]}]},"TextItemsType":null,"ID":null}]},"DescriptiveText":"Deluxe ocean view","TypeRoom":{"Size":0,"SizeMeasurement":"sqm","BedTypeCodes":[{"OTA_CodeType":1,"OTA_CodeName":"Double"},{"OTA_CodeType":3,"OTA_CodeName":"King"}],"RoomClassificationCodes":[{"OTA_CodeType":77,"OTA_CodeName":"Deluxe"}],"RoomViewCodes":[{"OTA_CodeType":11,"OTA_CodeName":"Ocean View"}]},"WLCode":9},{"Quantity":17,"MaxOccupancy":2,"MaxAdultOccupancy":2,"MinAdultOccupancy":1,"ID":39123,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":{"RoomAmenities":[{"RoomAmenity":"Air Conditioned","Code":"2"},{"RoomAmenity":"Telephone","Code":"107"},{"RoomAmenity":"safe deposit box","Code":"92"},{"RoomAmenity":"Terrace","Code":"7"},{"RoomAmenity":"Mini-bar","Code":"69"},{"RoomAmenity":"Amenities","Code":"11"},{"RoomAmenity":"Jacuzzi","Code":"57"},{"RoomAmenity":"hair dryer","Code":"50"},{"RoomAmenity":"TV","Code":"251"}]},"MultimediaDescriptionsType":{"MultimediaDescriptions":[{"InfoCode":1,"AdditionalDetailCode":4,"VideoItemsType":null,"ImageItemsType":null,"TextItemsType":{"TextItems":[{"Name":null,"Language":null,"Description":"This beautiful and spacious room includes one king size and open air Jacuzzi facing the ocean with balcony. Room size: 50 m2 / 532 ft2."}]},"ID":null},{"InfoCode":3,"AdditionalDetailCode":4,"VideoItemsType":null,"ImageItemsType":{"ImageItems":[{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/685049.jpg","URLType":2},"Name":"jacuzzi 2x.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":3,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/685050.jpg","URLType":2},"Name":"jacuzzi_x.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":2,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/2229135.jpg","URLType":2},"Name":"deluxe ocean view king.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":5,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/2229136.jpg","URLType":2},"Name":"deluxe ocean view double.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":4,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/2229137.jpg","URLType":2},"Name":"bathroom 2.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":6,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/2229138.jpg","URLType":2},"Name":"bathroom-copy-0.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":7,"IsPrimary":false}]}]},"TextItemsType":null,"ID":null}]},"DescriptiveText":"Deluxe ocean view with jacuzzi","TypeRoom":{"Size":0,"SizeMeasurement":"sqm","BedTypeCodes":[{"OTA_CodeType":3,"OTA_CodeName":"King"}],"RoomClassificationCodes":[{"OTA_CodeType":77,"OTA_CodeName":"Deluxe"}],"RoomViewCodes":[{"OTA_CodeType":11,"OTA_CodeName":"Ocean View"}]},"WLCode":9},{"Quantity":23,"MaxOccupancy":4,"MaxAdultOccupancy":4,"MinAdultOccupancy":1,"ID":39124,"MaxChildOccupancy":2,"MaxFreeChildOccupancy":2,"AmenitiesType":{"RoomAmenities":[{"RoomAmenity":"Air Conditioned","Code":"2"},{"RoomAmenity":"Telephone","Code":"107"},{"RoomAmenity":"safe deposit box","Code":"92"},{"RoomAmenity":"Terrace","Code":"7"},{"RoomAmenity":"Mini-bar","Code":"69"},{"RoomAmenity":"Amenities","Code":"11"},{"RoomAmenity":"Shower","Code":"142"},{"RoomAmenity":"hair dryer","Code":"50"},{"RoomAmenity":"TV","Code":"251"}]},"MultimediaDescriptionsType":{"MultimediaDescriptions":[{"InfoCode":1,"AdditionalDetailCode":4,"VideoItemsType":null,"ImageItemsType":null,"TextItemsType":{"TextItems":[{"Name":null,"Language":null,"Description":"Lujosa habitación con una cama king size o dos camas dobles con vista frente al mar. Mide 42 m2."}]},"ID":null},{"InfoCode":3,"AdditionalDetailCode":4,"VideoItemsType":null,"ImageItemsType":{"ImageItems":[{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/223134.jpg","URLType":2},"Name":"bathroom (Large).jpg","Language":null,"Description":null,"ImageFormat":[{"Sort":6,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/685054.jpg","URLType":2},"Name":"royalx.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":0,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/685055.jpg","URLType":2},"Name":"bathroom royalx.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":7,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/685056.jpg","URLType":2},"Name":"royal_1.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":1,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/685057.jpg","URLType":2},"Name":"royal 1.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":2,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/685059.jpg","URLType":2},"Name":"ocean front view 1editx.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":4,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/685060.jpg","URLType":2},"Name":"ocean front view edit2x.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":5,"IsPrimary":false}]},{"Position":{"Latitude":null,"Longitude":null},"URL":{"Address":"https://media.omnibees.com/Images/6220/RoomTypes/685061.jpg","URLType":2},"Name":"desayuno habitacion x.jpg","Language":null,"Description":"","ImageFormat":[{"Sort":3,"IsPrimary":false}]}]},"TextItemsType":null,"ID":null}]},"DescriptiveText":"Deluxe ocean front","TypeRoom":{"Size":0,"SizeMeasurement":"sqm","BedTypeCodes":[{"OTA_CodeType":1,"OTA_CodeName":"Double"},{"OTA_CodeType":3,"OTA_CodeName":"King"}],"RoomClassificationCodes":[{"OTA_CodeType":77,"OTA_CodeName":"Deluxe"}],"RoomViewCodes":[{"OTA_CodeType":11,"OTA_CodeName":"Ocean View"}]},"WLCode":9},{"Quantity":55,"MaxOccupancy":4,"MaxAdultOccupancy":4,"MinAdultOccupancy":1,"ID":137946,"MaxChildOccupancy":2,"MaxFreeChildOccupancy":null,"AmenitiesType":{"RoomAmenities":[{"RoomAmenity":"Air Conditioned","Code":"2"},{"RoomAmenity":"Terrace","Code":"7"},{"RoomAmenity":"Amenities","Code":"11"},{"RoomAmenity":"Bath or Shower","Code":"276"},{"RoomAmenity":"Coffee Machine","Code":"10027"}]},"MultimediaDescriptionsType":{"MultimediaDescriptions":[{"InfoCode":1,"AdditionalDetailCode":4,"VideoItemsType":null,"ImageItemsType":null,"TextItemsType":{"TextItems":[{"Name":null,"Language":null,"Description":null}]},"ID":null}]},"DescriptiveText":"Ocean View Studio Suite","TypeRoom":{"Size":42.57000000000000028421709430404007434844970703125,"SizeMeasurement":"sqm","BedTypeCodes":[{"OTA_CodeType":3,"OTA_CodeName":"King"}],"RoomClassificationCodes":[{"OTA_CodeType":16,"OTA_CodeName":"Studios"}],"RoomViewCodes":[{"OTA_CodeType":11,"OTA_CodeName":"Ocean View"}]},"WLCode":9},{"Quantity":76,"MaxOccupancy":6,"MaxAdultOccupancy":6,"MinAdultOccupancy":1,"ID":137947,"MaxChildOccupancy":4,"MaxFreeChildOccupancy":null,"AmenitiesType":{"RoomAmenities":[{"RoomAmenity":"Air Conditioned","Code":"2"},{"RoomAmenity":"Terrace","Code":"7"},{"RoomAmenity":"Amenities","Code":"11"},{"RoomAmenity":"Bath or Shower","Code":"276"},{"RoomAmenity":"Coffee Machine","Code":"10027"}]},"MultimediaDescriptionsType":{"MultimediaDescriptions":[{"InfoCode":1,"AdditionalDetailCode":4,"VideoItemsType":null,"ImageItemsType":null,"TextItemsType":{"TextItems":[{"Name":null,"Language":null,"Description":null}]},"ID":null}]},"DescriptiveText":"Junior Suite Ocean View","TypeRoom":{"Size":42.57000000000000028421709430404007434844970703125,"SizeMeasurement":"sqm","BedTypeCodes":[{"OTA_CodeType":1,"OTA_CodeName":"Double"},{"OTA_CodeType":8,"OTA_CodeName":"Twin"}],"RoomClassificationCodes":[{"OTA_CodeType":3,"OTA_CodeName":"Suites"}],"RoomViewCodes":[{"OTA_CodeType":11,"OTA_CodeName":"Ocean View"}]},"WLCode":9},{"Quantity":2,"MaxOccupancy":4,"MaxAdultOccupancy":4,"MinAdultOccupancy":1,"ID":137950,"MaxChildOccupancy":2,"MaxFreeChildOccupancy":null,"AmenitiesType":{"RoomAmenities":[{"RoomAmenity":"Air Conditioned","Code":"2"},{"RoomAmenity":"Bathrobe","Code":"10"},{"RoomAmenity":"Baby's cot","Code":"39"},{"RoomAmenity":"Coffee Machine","Code":"10027"}]},"MultimediaDescriptionsType":{"MultimediaDescriptions":[{"InfoCode":1,"AdditionalDetailCode":4,"VideoItemsType":null,"ImageItemsType":null,"TextItemsType":{"TextItems":[{"Name":null,"Language":null,"Description":null}]},"ID":null}]},"DescriptiveText":"Master Presidential Suite 2nd Floor","TypeRoom":{"Size":70.1299999999999954525264911353588104248046875,"SizeMeasurement":"sqm","BedTypeCodes":[{"OTA_CodeType":3,"OTA_CodeName":"King"},{"OTA_CodeType":8,"OTA_CodeName":"Twin"}],"RoomClassificationCodes":null,"RoomViewCodes":null},"WLCode":9},{"Quantity":2,"MaxOccupancy":4,"MaxAdultOccupancy":4,"MinAdultOccupancy":1,"ID":137951,"MaxChildOccupancy":2,"MaxFreeChildOccupancy":null,"AmenitiesType":{"RoomAmenities":[{"RoomAmenity":"Air Conditioned","Code":"2"},{"RoomAmenity":"Bathrobe","Code":"10"},{"RoomAmenity":"TV","Code":"251"},{"RoomAmenity":"Baby's cot","Code":"39"},{"RoomAmenity":"Coffee Machine","Code":"10027"}]},"MultimediaDescriptionsType":{"MultimediaDescriptions":[{"InfoCode":1,"AdditionalDetailCode":4,"VideoItemsType":null,"ImageItemsType":null,"TextItemsType":{"TextItems":[{"Name":null,"Language":null,"Description":null}]},"ID":null}]},"DescriptiveText":"Junior Presidential Suite 2nd Floor","TypeRoom":{"Size":42.57000000000000028421709430404007434844970703125,"SizeMeasurement":"sqm","BedTypeCodes":null,"RoomClassificationCodes":null,"RoomViewCodes":null},"WLCode":9}]}},"Policies":{"ChildTerms":[{"Name":"Infante","Description":null,"MinAge":0,"MaxAge":4,"CountForOccupancy":true,"ChargeChildrenGroup":1,"CurrencyCode":null,"IsActivePriceVariation":false,"IsPriceVariationValueDecrease":false,"PriceVariationValue":null,"IsPriceVariationPercentage":false},{"Name":"Menor","Description":null,"MinAge":5,"MaxAge":12,"CountForOccupancy":true,"ChargeChildrenGroup":0,"CurrencyCode":null,"IsActivePriceVariation":false,"IsPriceVariationValueDecrease":false,"PriceVariationValue":null,"IsPriceVariationPercentage":false},{"Name":"Adulto","Description":null,"MinAge":13,"MaxAge":99,"CountForOccupancy":true,"ChargeChildrenGroup":2,"CurrencyCode":null,"IsActivePriceVariation":false,"IsPriceVariationValueDecrease":false,"PriceVariationValue":null,"IsPriceVariationPercentage":false}]},"PrimaryLangID":3,"TPA_Extensions":{"SupplierCode":"C1420_44922"}}]}}}} {"uid":"0a0aec4"}
[2026-04-28 23:51:02] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelRatePlans?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=6215","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","hotelCode":"6215"}},"response":{"status":200,"type":"application/json","body":{"EchoToken":"system_058d5887-f24e-d593-8312-2e6eb2ca87b9","TimeStamp":"2026-04-29T06:51:00.9260324Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":null,"ErrorsType":null,"RatePlans":{"HotelRef":{"HotelCode":6215,"ChainCode":null,"HotelName":null,"BrandName":null,"ChainName":null},"RatePlan":[{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39076,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39077,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39078,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39079,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":128343,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":18950,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2023-12-30T00:00:00","ExpireDate":null,"RatePlanName":"Public Rate BX USD","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47025}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":18950,"Name":"All Inclusive","Description":null,"Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":411990,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in time: 3 pm\nDeparture time: 11 am\nMinimum age for registration: 18 years\nMinors are welcome:\n0 to 4 years: free\n5 to 12 years: additional cost depending on the season.\nClients must present official identification at registration.\nSpecial requests are subject to availability until the day of registration and may generate an additional charge.\nSpecial requests cannot be guaranteed.\nAll payments made by American Express apply a 5% penalty in case of cancellation or refund.\nOnly registered guests are allowed in the rooms.\n\nA charge of $72.62 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government.\n\nFree basic internet service.\n\nReservations of more than 09 rooms under the same name or dates will not be accepted since it will be considered as a group with other conditions than individual reservations."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"VCT"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39076,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39077,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39078,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":128343,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140758,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140761,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140764,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140765,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140766,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140767,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140768,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140867,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140868,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101940,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-19T00:00:00","ExpireDate":null,"RatePlanName":"Solaris Club Members","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47026}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-29T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":18950,"Name":"All Inclusive","Description":null,"Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":561347,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Club Solaris Membership Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in time: 3 pm\nDeparture time: 11 am\nMinimum age for registration: 18 years\nMinors are welcome:\n0 to 4 years: free\n5 to 12 years: additional cost depending on the season.\nClients must present official identification at registration.\nSpecial requests are subject to availability until the day of registration and may generate an additional charge.\nSpecial requests cannot be guaranteed.\nAll payments made by American Express apply a 5% penalty in case of cancellation or refund.\nOnly registered guests are allowed in the rooms.\n\nA charge of $72.62 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government.\n\nFree basic internet service.\n\nReservations of more than 09 rooms under the same name or dates will not be accepted since it will be considered as a group with other conditions than individual reservations."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39076,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39077,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39078,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":128343,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140758,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140761,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140764,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140765,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140766,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140767,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140768,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101940,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-19T00:00:00","ExpireDate":null,"RatePlanName":"Guests","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47026}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-29T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":18950,"Name":"All Inclusive","Description":null,"Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":561348,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club Guest Rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in time: 3 pm\nDeparture time: 11 am\nMinimum age for registration: 18 years\nMinors are welcome:\n0 to 4 years: free\n5 to 12 years: additional cost depending on the season.\nClients must present official identification at registration.\nSpecial requests are subject to availability until the day of registration and may generate an additional charge.\nSpecial requests cannot be guaranteed.\nAll payments made by American Express apply a 5% penalty in case of cancellation or refund.\nOnly registered guests are allowed in the rooms.\n\nA charge of $72.62 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government.\n\nFree basic internet service.\n\nReservations of more than 09 rooms under the same name or dates will not be accepted since it will be considered as a group with other conditions than individual reservations."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39076,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39077,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39078,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":128343,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140758,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140761,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140764,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140765,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140766,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140767,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140768,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140867,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140868,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101940,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"EBB 10%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47026}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-29T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":18950,"Name":"All Inclusive","Description":null,"Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583541,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in time: 3 pm\nDeparture time: 11 am\nMinimum age for registration: 18 years\nMinors are welcome:\n0 to 4 years: free\n5 to 12 years: additional cost depending on the season.\nClients must present official identification at registration.\nSpecial requests are subject to availability until the day of registration and may generate an additional charge.\nSpecial requests cannot be guaranteed.\nAll payments made by American Express apply a 5% penalty in case of cancellation or refund.\nOnly registered guests are allowed in the rooms.\n\nA charge of $72.62 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government.\n\nFree basic internet service.\n\nReservations of more than 09 rooms under the same name or dates will not be accepted since it will be considered as a group with other conditions than individual reservations."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39076,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39077,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39078,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":128343,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140758,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140761,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140764,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140765,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140766,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140767,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140768,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140867,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140868,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101940,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"EBB 15%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47026}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-29T00:00:00","Duration":null,"End":"2026-01-01T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":18950,"Name":"All Inclusive","Description":null,"Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583542,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in time: 3 pm\nDeparture time: 11 am\nMinimum age for registration: 18 years\nMinors are welcome:\n0 to 4 years: free\n5 to 12 years: additional cost depending on the season.\nClients must present official identification at registration.\nSpecial requests are subject to availability until the day of registration and may generate an additional charge.\nSpecial requests cannot be guaranteed.\nAll payments made by American Express apply a 5% penalty in case of cancellation or refund.\nOnly registered guests are allowed in the rooms.\n\nA charge of $72.62 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government.\n\nFree basic internet service.\n\nReservations of more than 09 rooms under the same name or dates will not be accepted since it will be considered as a group with other conditions than individual reservations."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39076,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39077,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39078,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":128343,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140758,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140761,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140764,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140765,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140766,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140767,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140768,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140867,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140868,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101940,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"EBB 20%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47026}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-29T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":18950,"Name":"All Inclusive","Description":null,"Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583543,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in time: 3 pm\nDeparture time: 11 am\nMinimum age for registration: 18 years\nMinors are welcome:\n0 to 4 years: free\n5 to 12 years: additional cost depending on the season.\nClients must present official identification at registration.\nSpecial requests are subject to availability until the day of registration and may generate an additional charge.\nSpecial requests cannot be guaranteed.\nAll payments made by American Express apply a 5% penalty in case of cancellation or refund.\nOnly registered guests are allowed in the rooms.\n\nA charge of $72.62 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government.\n\nFree basic internet service.\n\nReservations of more than 09 rooms under the same name or dates will not be accepted since it will be considered as a group with other conditions than individual reservations."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39076,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39077,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39078,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":128343,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140758,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140761,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140764,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140765,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140766,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140767,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140768,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101940,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-19T00:00:00","ExpireDate":null,"RatePlanName":"EBB GUESTS 10%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47026}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-29T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":18950,"Name":"All Inclusive","Description":null,"Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583544,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in time: 3 pm\nDeparture time: 11 am\nMinimum age for registration: 18 years\nMinors are welcome:\n0 to 4 years: free\n5 to 12 years: additional cost depending on the season.\nClients must present official identification at registration.\nSpecial requests are subject to availability until the day of registration and may generate an additional charge.\nSpecial requests cannot be guaranteed.\nAll payments made by American Express apply a 5% penalty in case of cancellation or refund.\nOnly registered guests are allowed in the rooms.\n\nA charge of $72.62 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government.\n\nFree basic internet service.\n\nReservations of more than 09 rooms under the same name or dates will not be accepted since it will be considered as a group with other conditions than individual reservations."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39076,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39077,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39078,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":128343,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140758,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140761,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140764,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140765,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140766,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140767,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140768,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101940,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"EBB GUESTS 15%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47026}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-29T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":18950,"Name":"All Inclusive","Description":null,"Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583545,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in time: 3 pm\nDeparture time: 11 am\nMinimum age for registration: 18 years\nMinors are welcome:\n0 to 4 years: free\n5 to 12 years: additional cost depending on the season.\nClients must present official identification at registration.\nSpecial requests are subject to availability until the day of registration and may generate an additional charge.\nSpecial requests cannot be guaranteed.\nAll payments made by American Express apply a 5% penalty in case of cancellation or refund.\nOnly registered guests are allowed in the rooms.\n\nA charge of $72.62 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government.\n\nFree basic internet service.\n\nReservations of more than 09 rooms under the same name or dates will not be accepted since it will be considered as a group with other conditions than individual reservations."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39076,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39077,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39078,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":128343,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140758,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140761,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140764,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140765,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140766,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140767,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140768,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101940,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"EBB GUESTS 20%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47026}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-29T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":18950,"Name":"All Inclusive","Description":null,"Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583546,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in time: 3 pm\nDeparture time: 11 am\nMinimum age for registration: 18 years\nMinors are welcome:\n0 to 4 years: free\n5 to 12 years: additional cost depending on the season.\nClients must present official identification at registration.\nSpecial requests are subject to availability until the day of registration and may generate an additional charge.\nSpecial requests cannot be guaranteed.\nAll payments made by American Express apply a 5% penalty in case of cancellation or refund.\nOnly registered guests are allowed in the rooms.\n\nA charge of $72.62 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government.\n\nFree basic internet service.\n\nReservations of more than 09 rooms under the same name or dates will not be accepted since it will be considered as a group with other conditions than individual reservations."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39076,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39077,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39078,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39079,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":128343,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":18950,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"E-business level 1","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47025}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":18950,"Name":"All Inclusive","Description":null,"Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583596,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in time: 3 pm\nDeparture time: 11 am\nMinimum age for registration: 18 years\nMinors are welcome:\n0 to 4 years: free\n5 to 12 years: additional cost depending on the season.\nClients must present official identification at registration.\nSpecial requests are subject to availability until the day of registration and may generate an additional charge.\nSpecial requests cannot be guaranteed.\nAll payments made by American Express apply a 5% penalty in case of cancellation or refund.\nOnly registered guests are allowed in the rooms.\n\nA charge of $72.62 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government.\n\nFree basic internet service.\n\nReservations of more than 09 rooms under the same name or dates will not be accepted since it will be considered as a group with other conditions than individual reservations."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39076,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39077,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39078,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39079,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":128343,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":18950,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"E-business level 2","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47025}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":18950,"Name":"All Inclusive","Description":null,"Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583597,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in time: 3 pm\nDeparture time: 11 am\nMinimum age for registration: 18 years\nMinors are welcome:\n0 to 4 years: free\n5 to 12 years: additional cost depending on the season.\nClients must present official identification at registration.\nSpecial requests are subject to availability until the day of registration and may generate an additional charge.\nSpecial requests cannot be guaranteed.\nAll payments made by American Express apply a 5% penalty in case of cancellation or refund.\nOnly registered guests are allowed in the rooms.\n\nA charge of $72.62 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government.\n\nFree basic internet service.\n\nReservations of more than 09 rooms under the same name or dates will not be accepted since it will be considered as a group with other conditions than individual reservations."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39076,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39077,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39078,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39079,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":128343,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":18950,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"E-business level 3","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47025}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":18950,"Name":"All Inclusive","Description":null,"Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583598,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in time: 3 pm\nDeparture time: 11 am\nMinimum age for registration: 18 years\nMinors are welcome:\n0 to 4 years: free\n5 to 12 years: additional cost depending on the season.\nClients must present official identification at registration.\nSpecial requests are subject to availability until the day of registration and may generate an additional charge.\nSpecial requests cannot be guaranteed.\nAll payments made by American Express apply a 5% penalty in case of cancellation or refund.\nOnly registered guests are allowed in the rooms.\n\nA charge of $72.62 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government.\n\nFree basic internet service.\n\nReservations of more than 09 rooms under the same name or dates will not be accepted since it will be considered as a group with other conditions than individual reservations."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39076,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39077,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39078,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39079,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":128343,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":18950,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"E-business level 4","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47025}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":18950,"Name":"All Inclusive","Description":null,"Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583599,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in time: 3 pm\nDeparture time: 11 am\nMinimum age for registration: 18 years\nMinors are welcome:\n0 to 4 years: free\n5 to 12 years: additional cost depending on the season.\nClients must present official identification at registration.\nSpecial requests are subject to availability until the day of registration and may generate an additional charge.\nSpecial requests cannot be guaranteed.\nAll payments made by American Express apply a 5% penalty in case of cancellation or refund.\nOnly registered guests are allowed in the rooms.\n\nA charge of $72.62 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government.\n\nFree basic internet service.\n\nReservations of more than 09 rooms under the same name or dates will not be accepted since it will be considered as a group with other conditions than individual reservations."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39076,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39077,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39078,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39079,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":128343,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":18950,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"E-business level 5","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47025}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":18950,"Name":"All Inclusive","Description":null,"Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583600,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in time: 3 pm\nDeparture time: 11 am\nMinimum age for registration: 18 years\nMinors are welcome:\n0 to 4 years: free\n5 to 12 years: additional cost depending on the season.\nClients must present official identification at registration.\nSpecial requests are subject to availability until the day of registration and may generate an additional charge.\nSpecial requests cannot be guaranteed.\nAll payments made by American Express apply a 5% penalty in case of cancellation or refund.\nOnly registered guests are allowed in the rooms.\n\nA charge of $72.62 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government.\n\nFree basic internet service.\n\nReservations of more than 09 rooms under the same name or dates will not be accepted since it will be considered as a group with other conditions than individual reservations."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39076,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39077,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39078,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39079,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":128343,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":18950,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"E-business level 6","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47025}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":18950,"Name":"All Inclusive","Description":null,"Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583601,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in time: 3 pm\nDeparture time: 11 am\nMinimum age for registration: 18 years\nMinors are welcome:\n0 to 4 years: free\n5 to 12 years: additional cost depending on the season.\nClients must present official identification at registration.\nSpecial requests are subject to availability until the day of registration and may generate an additional charge.\nSpecial requests cannot be guaranteed.\nAll payments made by American Express apply a 5% penalty in case of cancellation or refund.\nOnly registered guests are allowed in the rooms.\n\nA charge of $72.62 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government.\n\nFree basic internet service.\n\nReservations of more than 09 rooms under the same name or dates will not be accepted since it will be considered as a group with other conditions than individual reservations."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39076,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39077,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39078,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39079,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":128343,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":18950,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"E-business level 7","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47025}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":18950,"Name":"All Inclusive","Description":null,"Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583602,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in time: 3 pm\nDeparture time: 11 am\nMinimum age for registration: 18 years\nMinors are welcome:\n0 to 4 years: free\n5 to 12 years: additional cost depending on the season.\nClients must present official identification at registration.\nSpecial requests are subject to availability until the day of registration and may generate an additional charge.\nSpecial requests cannot be guaranteed.\nAll payments made by American Express apply a 5% penalty in case of cancellation or refund.\nOnly registered guests are allowed in the rooms.\n\nA charge of $72.62 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government.\n\nFree basic internet service.\n\nReservations of more than 09 rooms under the same name or dates will not be accepted since it will be considered as a group with other conditions than individual reservations."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39076,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39077,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39078,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39079,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":128343,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":18950,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"E-business level 8","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47025}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":18950,"Name":"All Inclusive","Description":null,"Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583603,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in time: 3 pm\nDeparture time: 11 am\nMinimum age for registration: 18 years\nMinors are welcome:\n0 to 4 years: free\n5 to 12 years: additional cost depending on the season.\nClients must present official identification at registration.\nSpecial requests are subject to availability until the day of registration and may generate an additional charge.\nSpecial requests cannot be guaranteed.\nAll payments made by American Express apply a 5% penalty in case of cancellation or refund.\nOnly registered guests are allowed in the rooms.\n\nA charge of $72.62 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government.\n\nFree basic internet service.\n\nReservations of more than 09 rooms under the same name or dates will not be accepted since it will be considered as a group with other conditions than individual reservations."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39076,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39077,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39078,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39079,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":128343,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":18950,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"E-business level 9","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47025}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":18950,"Name":"All Inclusive","Description":null,"Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583604,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in time: 3 pm\nDeparture time: 11 am\nMinimum age for registration: 18 years\nMinors are welcome:\n0 to 4 years: free\n5 to 12 years: additional cost depending on the season.\nClients must present official identification at registration.\nSpecial requests are subject to availability until the day of registration and may generate an additional charge.\nSpecial requests cannot be guaranteed.\nAll payments made by American Express apply a 5% penalty in case of cancellation or refund.\nOnly registered guests are allowed in the rooms.\n\nA charge of $72.62 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government.\n\nFree basic internet service.\n\nReservations of more than 09 rooms under the same name or dates will not be accepted since it will be considered as a group with other conditions than individual reservations."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39076,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39077,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39078,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39079,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":128343,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":18950,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"E-business level 10","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47025}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":18950,"Name":"All Inclusive","Description":null,"Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583605,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in time: 3 pm\nDeparture time: 11 am\nMinimum age for registration: 18 years\nMinors are welcome:\n0 to 4 years: free\n5 to 12 years: additional cost depending on the season.\nClients must present official identification at registration.\nSpecial requests are subject to availability until the day of registration and may generate an additional charge.\nSpecial requests cannot be guaranteed.\nAll payments made by American Express apply a 5% penalty in case of cancellation or refund.\nOnly registered guests are allowed in the rooms.\n\nA charge of $72.62 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government.\n\nFree basic internet service.\n\nReservations of more than 09 rooms under the same name or dates will not be accepted since it will be considered as a group with other conditions than individual reservations."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39076,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39077,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39078,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39079,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":128343,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":18950,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":null,"ExpireDate":null,"RatePlanName":"E-business level 11","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Solaris Club Prepaid","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance is due upon check-in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47025}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2025-12-25T00:00:00","Duration":null,"End":"2026-01-02T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 14 DAYS","Language":null,"Description":"Cancellations made 14 days or less before arrival, no-shows and early departures will be penalized with 100% of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if there is a different rate, policies subject to change without prior notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-03T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":18950,"Name":"All Inclusive","Description":null,"Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":583606,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in time: 3 pm\nDeparture time: 11 am\nMinimum age for registration: 18 years\nMinors are welcome:\n0 to 4 years: free\n5 to 12 years: additional cost depending on the season.\nClients must present official identification at registration.\nSpecial requests are subject to availability until the day of registration and may generate an additional charge.\nSpecial requests cannot be guaranteed.\nAll payments made by American Express apply a 5% penalty in case of cancellation or refund.\nOnly registered guests are allowed in the rooms.\n\nA charge of $72.62 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government.\n\nFree basic internet service.\n\nReservations of more than 09 rooms under the same name or dates will not be accepted since it will be considered as a group with other conditions than individual reservations."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":{"Sources":[{"ISOCountry":"AFG"},{"ISOCountry":"ALB"},{"ISOCountry":"DZA"},{"ISOCountry":"AND"},{"ISOCountry":"AGO"},{"ISOCountry":"ATG"},{"ISOCountry":"ARG"},{"ISOCountry":"ARM"},{"ISOCountry":"AUS"},{"ISOCountry":"AUT"},{"ISOCountry":"AZE"},{"ISOCountry":"BHS"},{"ISOCountry":"BHR"},{"ISOCountry":"BGD"},{"ISOCountry":"BRB"},{"ISOCountry":"BLR"},{"ISOCountry":"BEL"},{"ISOCountry":"BLZ"},{"ISOCountry":"BEN"},{"ISOCountry":"BTN"},{"ISOCountry":"BOL"},{"ISOCountry":"BIH"},{"ISOCountry":"BWA"},{"ISOCountry":"BRA"},{"ISOCountry":"BRN"},{"ISOCountry":"BGR"},{"ISOCountry":"BFA"},{"ISOCountry":"BDI"},{"ISOCountry":"KHM"},{"ISOCountry":"CMR"},{"ISOCountry":"CAN"},{"ISOCountry":"CPV"},{"ISOCountry":"CAF"},{"ISOCountry":"TCD"},{"ISOCountry":"CHL"},{"ISOCountry":"CHN"},{"ISOCountry":"COL"},{"ISOCountry":"COM"},{"ISOCountry":"COG"},{"ISOCountry":"COD"},{"ISOCountry":"CRI"},{"ISOCountry":"HRV"},{"ISOCountry":"CUB"},{"ISOCountry":"CYP"},{"ISOCountry":"CZE"},{"ISOCountry":"DNK"},{"ISOCountry":"DJI"},{"ISOCountry":"DMA"},{"ISOCountry":"DOM"},{"ISOCountry":"TLS"},{"ISOCountry":"ECU"},{"ISOCountry":"EGY"},{"ISOCountry":"SLV"},{"ISOCountry":"GNQ"},{"ISOCountry":"ERI"},{"ISOCountry":"EST"},{"ISOCountry":"ETH"},{"ISOCountry":"FJI"},{"ISOCountry":"FIN"},{"ISOCountry":"FRA"},{"ISOCountry":"GAB"},{"ISOCountry":"GMB"},{"ISOCountry":"GEO"},{"ISOCountry":"DEU"},{"ISOCountry":"GHA"},{"ISOCountry":"GRC"},{"ISOCountry":"GRD"},{"ISOCountry":"GTM"},{"ISOCountry":"GIN"},{"ISOCountry":"GNB"},{"ISOCountry":"GUY"},{"ISOCountry":"HTI"},{"ISOCountry":"HND"},{"ISOCountry":"HUN"},{"ISOCountry":"ISL"},{"ISOCountry":"IND"},{"ISOCountry":"IDN"},{"ISOCountry":"IRN"},{"ISOCountry":"IRQ"},{"ISOCountry":"IRL"},{"ISOCountry":"ISR"},{"ISOCountry":"ITA"},{"ISOCountry":"CIV"},{"ISOCountry":"JAM"},{"ISOCountry":"JPN"},{"ISOCountry":"JOR"},{"ISOCountry":"KAZ"},{"ISOCountry":"KEN"},{"ISOCountry":"KIR"},{"ISOCountry":"PRK"},{"ISOCountry":"KOR"},{"ISOCountry":"XKX"},{"ISOCountry":"KWT"},{"ISOCountry":"KGZ"},{"ISOCountry":"LAO"},{"ISOCountry":"LVA"},{"ISOCountry":"LBN"},{"ISOCountry":"LSO"},{"ISOCountry":"LBR"},{"ISOCountry":"LBY"},{"ISOCountry":"LIE"},{"ISOCountry":"LTU"},{"ISOCountry":"LUX"},{"ISOCountry":"MKD"},{"ISOCountry":"MDG"},{"ISOCountry":"MWI"},{"ISOCountry":"MYS"},{"ISOCountry":"MDV"},{"ISOCountry":"MLI"},{"ISOCountry":"MLT"},{"ISOCountry":"MHL"},{"ISOCountry":"MRT"},{"ISOCountry":"MUS"},{"ISOCountry":"MEX"},{"ISOCountry":"FSM"},{"ISOCountry":"MDA"},{"ISOCountry":"MCO"},{"ISOCountry":"MNG"},{"ISOCountry":"MNE"},{"ISOCountry":"MAR"},{"ISOCountry":"MOZ"},{"ISOCountry":"MMR"},{"ISOCountry":"NAM"},{"ISOCountry":"NRU"},{"ISOCountry":"NPL"},{"ISOCountry":"NLD"},{"ISOCountry":"NZL"},{"ISOCountry":"NIC"},{"ISOCountry":"NER"},{"ISOCountry":"NGA"},{"ISOCountry":"NOR"},{"ISOCountry":"OMN"},{"ISOCountry":"PAK"},{"ISOCountry":"PLW"},{"ISOCountry":"PAN"},{"ISOCountry":"PNG"},{"ISOCountry":"PRY"},{"ISOCountry":"PER"},{"ISOCountry":"PHL"},{"ISOCountry":"POL"},{"ISOCountry":"PRT"},{"ISOCountry":"QAT"},{"ISOCountry":"ROU"},{"ISOCountry":"RUS"},{"ISOCountry":"RWA"},{"ISOCountry":"KNA"},{"ISOCountry":"LCA"},{"ISOCountry":"WSM"},{"ISOCountry":"SMR"},{"ISOCountry":"STP"},{"ISOCountry":"SAU"},{"ISOCountry":"SEN"},{"ISOCountry":"SRB"},{"ISOCountry":"SYC"},{"ISOCountry":"SLE"},{"ISOCountry":"SGP"},{"ISOCountry":"SVK"},{"ISOCountry":"SVN"},{"ISOCountry":"SLB"},{"ISOCountry":"SOM"},{"ISOCountry":"ZAF"},{"ISOCountry":"ESP"},{"ISOCountry":"LKA"},{"ISOCountry":"SDN"},{"ISOCountry":"SUR"},{"ISOCountry":"SWZ"},{"ISOCountry":"SWE"},{"ISOCountry":"CHE"},{"ISOCountry":"SYR"},{"ISOCountry":"TWN"},{"ISOCountry":"TJK"},{"ISOCountry":"TZA"},{"ISOCountry":"THA"},{"ISOCountry":"TGO"},{"ISOCountry":"TON"},{"ISOCountry":"TTO"},{"ISOCountry":"TUN"},{"ISOCountry":"TUR"},{"ISOCountry":"TKM"},{"ISOCountry":"TUV"},{"ISOCountry":"UGA"},{"ISOCountry":"UKR"},{"ISOCountry":"ARE"},{"ISOCountry":"GBR"},{"ISOCountry":"USA"},{"ISOCountry":"URY"},{"ISOCountry":"UZB"},{"ISOCountry":"VUT"},{"ISOCountry":"VAT"},{"ISOCountry":"VEN"},{"ISOCountry":"VNM"},{"ISOCountry":"YEM"},{"ISOCountry":"ZMB"},{"ISOCountry":"ZWE"},{"ISOCountry":"HKG"},{"ISOCountry":"CUW"},{"ISOCountry":"BES"},{"ISOCountry":"MAF"},{"ISOCountry":"PRI"},{"ISOCountry":"VGB"}]},"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39076,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39077,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39078,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":128343,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140758,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140761,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140764,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140765,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140766,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140767,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140768,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101940,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-19T00:00:00","ExpireDate":null,"RatePlanName":"Guests with MU","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47026}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-16T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":18950,"Name":"All Inclusive","Description":null,"Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":587390,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in time: 3 pm\nDeparture time: 11 am\nMinimum age for registration: 18 years\nMinors are welcome:\n0 to 4 years: free\n5 to 12 years: additional cost depending on the season.\nClients must present official identification at registration.\nSpecial requests are subject to availability until the day of registration and may generate an additional charge.\nSpecial requests cannot be guaranteed.\nAll payments made by American Express apply a 5% penalty in case of cancellation or refund.\nOnly registered guests are allowed in the rooms.\n\nA charge of $72.62 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government.\n\nFree basic internet service.\n\nReservations of more than 09 rooms under the same name or dates will not be accepted since it will be considered as a group with other conditions than individual reservations."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39076,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39077,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39078,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":128343,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140758,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140761,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140764,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140765,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140766,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140767,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140768,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140867,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140868,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101940,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2025-09-19T00:00:00","ExpireDate":null,"RatePlanName":"Club Members with MU","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47026}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-01-16T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":18950,"Name":"All Inclusive","Description":null,"Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":587392,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in time: 3 pm\nDeparture time: 11 am\nMinimum age for registration: 18 years\nMinors are welcome:\n0 to 4 years: free\n5 to 12 years: additional cost depending on the season.\nClients must present official identification at registration.\nSpecial requests are subject to availability until the day of registration and may generate an additional charge.\nSpecial requests cannot be guaranteed.\nAll payments made by American Express apply a 5% penalty in case of cancellation or refund.\nOnly registered guests are allowed in the rooms.\n\nA charge of $72.62 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government.\n\nFree basic internet service.\n\nReservations of more than 09 rooms under the same name or dates will not be accepted since it will be considered as a group with other conditions than individual reservations."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39076,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39077,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39078,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":128343,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140758,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140761,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140764,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140765,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140766,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140767,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140768,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101940,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-27T00:00:00","ExpireDate":null,"RatePlanName":"Referrals","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47026}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-28T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":18950,"Name":"All Inclusive","Description":null,"Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1341843,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":"Solaris Club referral rates"},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in time: 3 pm\nDeparture time: 11 am\nMinimum age for registration: 18 years\nMinors are welcome:\n0 to 4 years: free\n5 to 12 years: additional cost depending on the season.\nClients must present official identification at registration.\nSpecial requests are subject to availability until the day of registration and may generate an additional charge.\nSpecial requests cannot be guaranteed.\nAll payments made by American Express apply a 5% penalty in case of cancellation or refund.\nOnly registered guests are allowed in the rooms.\n\nA charge of $72.62 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government.\n\nFree basic internet service.\n\nReservations of more than 09 rooms under the same name or dates will not be accepted since it will be considered as a group with other conditions than individual reservations."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39076,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39077,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39078,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":128343,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140758,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140761,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140764,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140765,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140766,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140767,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140768,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101940,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-27T00:00:00","ExpireDate":null,"RatePlanName":"EBB REFERRALS 10%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47026}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-28T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":18950,"Name":"All Inclusive","Description":null,"Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1341844,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in time: 3 pm\nDeparture time: 11 am\nMinimum age for registration: 18 years\nMinors are welcome:\n0 to 4 years: free\n5 to 12 years: additional cost depending on the season.\nClients must present official identification at registration.\nSpecial requests are subject to availability until the day of registration and may generate an additional charge.\nSpecial requests cannot be guaranteed.\nAll payments made by American Express apply a 5% penalty in case of cancellation or refund.\nOnly registered guests are allowed in the rooms.\n\nA charge of $72.62 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government.\n\nFree basic internet service.\n\nReservations of more than 09 rooms under the same name or dates will not be accepted since it will be considered as a group with other conditions than individual reservations."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39076,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39077,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39078,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":128343,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140758,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140761,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140764,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140765,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140766,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140767,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140768,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101940,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-27T00:00:00","ExpireDate":null,"RatePlanName":"EBB REFERRALS 15%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47026}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-28T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":18950,"Name":"All Inclusive","Description":null,"Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1341846,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in time: 3 pm\nDeparture time: 11 am\nMinimum age for registration: 18 years\nMinors are welcome:\n0 to 4 years: free\n5 to 12 years: additional cost depending on the season.\nClients must present official identification at registration.\nSpecial requests are subject to availability until the day of registration and may generate an additional charge.\nSpecial requests cannot be guaranteed.\nAll payments made by American Express apply a 5% penalty in case of cancellation or refund.\nOnly registered guests are allowed in the rooms.\n\nA charge of $72.62 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government.\n\nFree basic internet service.\n\nReservations of more than 09 rooms under the same name or dates will not be accepted since it will be considered as a group with other conditions than individual reservations."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39076,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39077,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39078,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":128343,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140758,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140761,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140764,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140765,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140766,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140767,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140768,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101940,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-27T00:00:00","ExpireDate":null,"RatePlanName":"EBB REFERRALS 20%","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47026}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-28T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":18950,"Name":"All Inclusive","Description":null,"Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1341847,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in time: 3 pm\nDeparture time: 11 am\nMinimum age for registration: 18 years\nMinors are welcome:\n0 to 4 years: free\n5 to 12 years: additional cost depending on the season.\nClients must present official identification at registration.\nSpecial requests are subject to availability until the day of registration and may generate an additional charge.\nSpecial requests cannot be guaranteed.\nAll payments made by American Express apply a 5% penalty in case of cancellation or refund.\nOnly registered guests are allowed in the rooms.\n\nA charge of $72.62 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government.\n\nFree basic internet service.\n\nReservations of more than 09 rooms under the same name or dates will not be accepted since it will be considered as a group with other conditions than individual reservations."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39076,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39077,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39078,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":128343,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140758,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140761,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140764,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140765,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140766,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140767,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":140768,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":101940,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-27T00:00:00","ExpireDate":null,"RatePlanName":"Referred with MU","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Prepaid Members, Guests & Referrals Club Solaris","Language":null,"Description":"A deposit of $199 USD is required at the time of booking, and the remaining balance must be paid 45 days prior to arrival."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":8,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":1,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"GuaranteeCode":47026}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-28T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":2,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":199,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"SOLARIS CLUB & E-BUSINESS MEMBERS CANCELLATION POLICY","Language":null,"Description":"Cancellations made 2 days or less before arrival, no-shows, and early departures will be penalized with the security deposit provided."},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":18950,"Name":"All Inclusive","Description":null,"Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1341848,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in time: 3 pm\nDeparture time: 11 am\nMinimum age for registration: 18 years\nMinors are welcome:\n0 to 4 years: free\n5 to 12 years: additional cost depending on the season.\nClients must present official identification at registration.\nSpecial requests are subject to availability until the day of registration and may generate an additional charge.\nSpecial requests cannot be guaranteed.\nAll payments made by American Express apply a 5% penalty in case of cancellation or refund.\nOnly registered guests are allowed in the rooms.\n\nA charge of $72.62 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government.\n\nFree basic internet service.\n\nReservations of more than 09 rooms under the same name or dates will not be accepted since it will be considered as a group with other conditions than individual reservations."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39076,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39077,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39078,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39079,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":18950,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-28T00:00:00","ExpireDate":null,"RatePlanName":"Non Ref ebusiness","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit 14 days before arrival","Language":null,"Description":"Prepayment: The full reservation payment must be made 14 days prior to arrival.\n\nImportant: If payment is not received within the specified timeframe or before the guest's arrival, the reservation may be canceled with prior notification, and the guest will be charged the Rack (high) rate upon check-in.\n\nBank transfer fees are not the responsibility of the hotel.\n\nIf you require an invoice, please inform us at the time of booking and provide the corresponding information. An invoice cannot be issued once the guest has checked in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9713}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-29T00:00:00","Duration":null,"End":"2026-10-31T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-12-01T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-11-01T00:00:00","Duration":null,"End":"2026-11-30T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-12-21T00:00:00","Duration":null,"End":"2026-12-23T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2027-01-03T00:00:00","Duration":null,"End":"2027-12-18T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":18950,"Name":"All Inclusive","Description":null,"Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1344440,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in time: 3 pm\nDeparture time: 11 am\nMinimum age for registration: 18 years\nMinors are welcome:\n0 to 4 years: free\n5 to 12 years: additional cost depending on the season.\nClients must present official identification at registration.\nSpecial requests are subject to availability until the day of registration and may generate an additional charge.\nSpecial requests cannot be guaranteed.\nAll payments made by American Express apply a 5% penalty in case of cancellation or refund.\nOnly registered guests are allowed in the rooms.\n\nA charge of $72.62 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government.\n\nFree basic internet service.\n\nReservations of more than 09 rooms under the same name or dates will not be accepted since it will be considered as a group with other conditions than individual reservations."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39076,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39077,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39078,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39079,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":18950,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-29T00:00:00","ExpireDate":null,"RatePlanName":"Getaway flex","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit 14 days before arrival","Language":null,"Description":"Prepayment: The full reservation payment must be made 14 days prior to arrival.\n\nImportant: If payment is not received within the specified timeframe or before the guest's arrival, the reservation may be canceled with prior notification, and the guest will be charged the Rack (high) rate upon check-in.\n\nBank transfer fees are not the responsibility of the hotel.\n\nIf you require an invoice, please inform us at the time of booking and provide the corresponding information. An invoice cannot be issued once the guest has checked in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9713}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-29T00:00:00","Duration":null,"End":"2026-10-31T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-12-01T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-11-01T00:00:00","Duration":null,"End":"2026-11-30T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-12-21T00:00:00","Duration":null,"End":"2026-12-23T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2027-01-03T00:00:00","Duration":null,"End":"2027-12-18T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":18950,"Name":"All Inclusive","Description":null,"Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1344442,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in time: 3 pm\nDeparture time: 11 am\nMinimum age for registration: 18 years\nMinors are welcome:\n0 to 4 years: free\n5 to 12 years: additional cost depending on the season.\nClients must present official identification at registration.\nSpecial requests are subject to availability until the day of registration and may generate an additional charge.\nSpecial requests cannot be guaranteed.\nAll payments made by American Express apply a 5% penalty in case of cancellation or refund.\nOnly registered guests are allowed in the rooms.\n\nA charge of $72.62 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government.\n\nFree basic internet service.\n\nReservations of more than 09 rooms under the same name or dates will not be accepted since it will be considered as a group with other conditions than individual reservations."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":5,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null},{"RPH":2,"GuaranteeTypeCode":2,"PaymentCard":null,"GuaranteeID":null},{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null},{"RPH":4,"GuaranteeTypeCode":4,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}},{"SellableProducts":{"SellableProduct":[{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39076,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39077,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39078,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}},{"IsRoom":true,"GuestRoom":{"Quantity":null,"MaxOccupancy":null,"MaxAdultOccupancy":null,"MinAdultOccupancy":null,"ID":39079,"MaxChildOccupancy":null,"MaxFreeChildOccupancy":null,"AmenitiesType":null,"MultimediaDescriptionsType":null,"DescriptiveText":null,"TypeRoom":null,"WLCode":null}}]},"ServiceRPHs":[{"RPH":18950,"IsPerRoom":true}],"SupplierCode":"C1420_44922","EffectiveDate":"2026-04-28T00:00:00","ExpireDate":null,"RatePlanName":"Getaway ebusiness","Guarantees":[{"Start":null,"Duration":null,"End":null,"GuaranteeDescription":{"Name":"Deposit 14 days before arrival","Language":null,"Description":"Prepayment: The full reservation payment must be made 14 days prior to arrival.\n\nImportant: If payment is not received within the specified timeframe or before the guest's arrival, the reservation may be canceled with prior notification, and the guest will be charged the Rack (high) rate upon check-in.\n\nBank transfer fees are not the responsibility of the hotel.\n\nIf you require an invoice, please inform us at the time of booking and provide the corresponding information. An invoice cannot be issued once the guest has checked in."},"GuaranteesAcceptedType":{"GuaranteesAccepted":[{"RPH":0,"GuaranteeTypeCode":5,"PaymentCard":null,"GuaranteeID":null}]},"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":14,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":0,"Amount":0,"Percent":100,"CurrencyCode":109},"GuaranteeCode":9713}],"CancelPenalties":[{"NonRefundable":false,"Start":null,"Duration":null,"End":null,"DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"CANCELLATION 2 NIGHTS PENALTY","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with a 2-night penalty of the total cost of the stay.\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation paying the difference in stay if it has a different rate, policies subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-04-29T00:00:00","Duration":null,"End":"2026-10-31T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-12-01T00:00:00","Duration":null,"End":"2026-12-20T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":3,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 3 DAYS","Language":null,"Description":"Cancellations made 3 days or less before arrival, no-shows, and early departures will be penalized with a two-night penalty of the total cost of the stay.\n\nIf the situation is unrelated to the guest, such as a canceled flight, a COVID-19 test result, etc., the credit will be retained for future reservations, provided the difference in the stay is paid if the rate is different. Policies are subject to change without prior notice."},"AmountRules":null},{"NonRefundable":false,"Start":"2026-11-01T00:00:00","Duration":null,"End":"2026-11-30T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2026-12-21T00:00:00","Duration":null,"End":"2026-12-23T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null},{"NonRefundable":false,"Start":"2027-01-03T00:00:00","Duration":null,"End":"2027-12-18T00:00:00","DeadLine":{"AbsoluteDeadline":null,"OffsetUnitMultiplier":7,"TimeUnitType":0,"OffsetDropTime":0},"AmountPercent":{"NmbrOfNights":2,"Amount":0,"Percent":0,"CurrencyCode":109},"PenaltyDescription":{"Name":"POLITICS 7 DAYS","Language":null,"Description":"Cancellations made 7 days or less before arrival, no-shows and early departures will be penalized with 2 nights of the total cost of the stay\n\nIf it is a situation external to the client such as a cancelled flight, positive for covid-19, etc., the credit will remain in favor of a future reservation by paying the difference in stay if it has a different rate, policies subject to change without notice"},"AmountRules":null}],"RatePlanInclusions":null,"MealsIncluded":{"Breakfast":true,"Lunch":true,"Dinner":true,"MealPlanIndicator":true,"MealPlanCode":1,"ID":18950,"Name":"All Inclusive","Description":null,"Price":{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109},"ServicePricingType":18},"RatePlanID":1344444,"TaxPolicies":null,"RatePlanDescription":{"Language":null,"Description":""},"AdditionalDetailsType":{"AdditionalDetails":[{"DetailDescription":{"Name":"General policy","Language":null,"Description":"Check-in time: 3 pm\nDeparture time: 11 am\nMinimum age for registration: 18 years\nMinors are welcome:\n0 to 4 years: free\n5 to 12 years: additional cost depending on the season.\nClients must present official identification at registration.\nSpecial requests are subject to availability until the day of registration and may generate an additional charge.\nSpecial requests cannot be guaranteed.\nAll payments made by American Express apply a 5% penalty in case of cancellation or refund.\nOnly registered guests are allowed in the rooms.\n\nA charge of $72.62 Mexican pesos (MXN) per night per room will be made at the time of check-in for the environmental sanitation fee implemented by the local government.\n\nFree basic internet service.\n\nReservations of more than 09 rooms under the same name or dates will not be accepted since it will be considered as a group with other conditions than individual reservations."}}]},"Offers":null,"PaymentPolicies":{"AcceptedPayments":[{"RPH":3,"GuaranteeTypeCode":3,"PaymentCard":null,"GuaranteeID":null}]},"Commission":null,"CurrencyCode":109,"RatePlanTypeCode":13,"SortOrder":null,"PriceViewableInd":true,"TPA_Extensions":{"POS":null,"WLCode":9,"ProviderName":"Omnibees","ProviderCode":"OMNB","Markup":null,"Package":null}}],"TPA_Extensions":null},"TPA_Extensions":{"ApprovalInvoiced":null,"Services":[{"ServicePricingType":18,"ServiceRPH":18950,"RatePlanCode":null,"Quantity":0,"RequestIndicator":false,"ID":18950,"ServiceDescription":{"Name":"All Inclusive","Language":null,"Description":null,"ImageURL":null},"Price":[{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109}],"ServiceCategoryCode":4,"TPA_Extensions":{"Schedules":null,"SortOrder":null,"SupplierCode":"C1420_44922"}},{"ServicePricingType":18,"ServiceRPH":101940,"RatePlanCode":null,"Quantity":0,"RequestIndicator":false,"ID":101940,"ServiceDescription":{"Name":"Airport - Hotel Transportation","Language":null,"Description":"Complimentary airport transfers.\n\nComplimentary airport-hotel transfers with a minimum 5-night stay.\n\nService available between 8:30 am and 7:30 pm","ImageURL":null},"Price":[{"Start":null,"Duration":null,"End":null,"AmountBeforeTax":0,"AmountAfterTax":0,"CurrencyCode":109}],"ServiceCategoryCode":null,"TPA_Extensions":{"Schedules":null,"SortOrder":null,"SupplierCode":"C1420_44922"}}],"GuestsTotalRate":null,"Rates":null,"TotalDiscountValue":null,"IsPreferredHotel":null}}}} {"uid":"20353e1"}
[2026-04-28 23:51:27] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/uploads/info.php","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"2c016a2"}
[2026-04-28 23:52:21] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/.env.development","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"d101074"}
[2026-04-28 23:55:14] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/403.shtml","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"5eb60c9"}
[2026-04-28 23:57:41] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/Omnibees/SendHotelResInitiate","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"065d4a0"}
[2026-04-28 23:57:43] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/php_info.php","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"e9026fb"}
[2026-04-28 23:57:54] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":null,"Route":"https://omnibees.clubsolaris.com/static/info.php","Data":[]},"response":{"status":405,"type":"application/json","body":{"message":"Not allowed   "}}} {"uid":"2808a8c"}
[2026-04-28 23:58:05] slim-app.INFO: Petition {"incoming":{"Method":"GET","api":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","Route":"https://omnibees.clubsolaris.com/Omnibees/GetHotelRatePlans?api_key=yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du&hotelCode=198337","Data":{"api_key":"yOhwJPXl1kMW9Zs2Cv7tszKBD90iH9Du","hotelCode":"198337"}},"response":{"status":200,"type":"application/json","body":{"EchoToken":"system_9d7ccfb1-2809-aef8-eede-f8893a870900","TimeStamp":"2026-04-29T06:58:05.8660937Z","Target":0,"Version":7.20000000000000017763568394002504646778106689453125,"PrimaryLangID":1,"Success":[],"WarningsType":{"Warnings":[{"Language":null,"ShortText":"Invalid hotel code: Hotel with code 198337 returned no data. The reason can be invalid hotel id or no authorization to get data for this hotel","Code":392,"RPH":null,"Type":null}]},"ErrorsType":null,"RatePlans":null,"TPA_Extensions":null}}} {"uid":"9af3284"}
