가격 및 객실 인벤토리 (거래) XML 참조

이 페이지에서는 XML 기반 거래 메시지에 대한 참고자료를 제공합니다.

<Transaction>

트랜잭션 메시지의 루트 요소는 <Transaction>입니다. 객실 및 패키지, 객실 및 패키지의 가격 및 예약 가능 여부에 대한 설명 정보를 담고 있는 컨테이너입니다.

<Transaction> 요소는 트랜잭션 메시지 XML 계층 구조의 다음 위치에 표시됩니다.

+ <Transaction>
    + <PropertyDataSet>  // Room and package metadata
        + <Property>
        + <RoomData>
        + <PackageData>
    + <Result>           // Pricing and availability
        + <Rates>
        + <RoomBundle>
        + ...

루트 요소로 <Transaction>를 사용하는 메시지에는 하나 이상의 하위 요소가 필요합니다. 총 메시지 크기가 100MB를 초과하지 않는 한 트랜잭션 메시지에 하위 요소를 원하는 만큼 포함할 수 있습니다.

문법

<Transaction> 요소는 다음 구문을 사용합니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction timestamp="timestamp" id="transaction_ID">

  <!-- Defines data about a room or package (Room Bundle) -->
  <PropertyDataSet>
    ...
  </PropertyDataSet>

  <!-- Updates/sets prices and availability for rooms and Room Bundles -->
  <!-- (Also removes itineraries from inventory) -->
  <Result>
    ...
  </Result>

</Transaction>

특성

<Transaction> 요소는 다음과 같은 속성을 포함합니다.

속성 필수 여부 유형 설명
id Required 문자열 각 거래 메시지의 고유 식별자입니다.
partner Optional string 거래 메시지가 적용되는 파트너 계정입니다. 일반적으로 백엔드에서 여러 파트너 계정에 가격 피드를 제공하는 경우 이 속성을 사용합니다. 이 문자열 값은 Hotel Center의 계정 설정 페이지에 표시된 '파트너 키' 값입니다.
timestamp Required DateTime

거래 메시지가 전송된 시점입니다.

지난 24시간 이내의 타임스탬프와 함께 전송된 메시지는 모두 처리되고, 그렇지 않은 메시지는 삭제됩니다.

메시지는 수신된 순서가 아니라 timestamp 순으로 처리됩니다. 예를 들어 타임스탬프가 2019-05-03 14:10:00인 메시지 이후 수신된 2019-05-03 14:09:00의 타임스탬프가 있는 가격 업데이트는 계속해서 순서대로 처리되며 타임스탬프가 2019-05-03 14:10:00인 메시지의 가격이 사용됩니다.

하위 요소

<Transaction> 요소에는 다음과 같은 하위 요소가 있습니다.

하위 요소 필수 여부 유형 설명
<PropertyDataSet> Optional* <PropertyDataSet>

특정 객실 및 객실 패키지를 설명합니다. 일반적으로 별도의 트랜잭션 메시지에서 이 요소를 사용하여 객실 번들의 공유 값을 정의하고 트랜잭션 메시지의 크기를 줄입니다.

<Result> Optional* <Result>

객실 숙박 일정의 가격 데이터 또는 숙박 시설의 객실 패키지 및 추가 객실 유형을 정의하는 <RoomBundle> 요소입니다. <Result> 요소를 사용하여 인벤토리에서 일정을 삭제할 수도 있습니다.

* <PropertyDataSet> 또는 <Result> 중 하나 이상이 필요합니다.

회의실 데이터

다음 예에서는 트랜잭션 메시지에서 회의실 데이터를 정의합니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction timestamp="2017-07-18T16:20:00-04:00" id="42">
  <PropertyDataSet>
    <Property>1234</Property>
    <RoomData>
      <RoomID>5440OF</RoomID>
      <Name>
        <Text text="Single King Bed Room" language="en"/>
        <Text text="Simple Lit de Roi" language="fr"/>
      </Name>
      <Description>
        <Text text="One king bed with pillowtop mattresses, 300-thread-count linens,
          and down comforters (bedspreads). City view. 300 square feet. Desk with
          rolling chair. Multi-line phone with voice mail. Cable/satellite TV with
          complimentary HBO and pay movies." language="en"/>
        <Text text="Un très grand lit avec matelas à plateau-coussin, ..." language="fr"/>
      </Description>
      <PhotoURL>
        <Caption>
          <Text text="Bathroom View" language="en"/>
          <Text text="La salle de baines" language="fr"/>
        </Caption>
        <URL>http://www.foo.com/static/bar/image1234.jpg</URL>
      </PhotoURL>
      <Capacity>4</Capacity>
    </RoomData>
  </PropertyDataSet>
</Transaction>

가격 책정 데이터

다음 예에서는 거래 메시지에서 가격 데이터를 정의합니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction timestamp="2017-07-23T16:20:00-04:00" id="42">
  <Result>
    <Property>060773</Property>
    <RoomID>RoomType101</RoomID>
    <PackageID>Package101</PackageID>
    <Checkin>2018-06-10</Checkin>
    <Nights>2</Nights>
    <Baserate currency="USD">278.33</Baserate>
    <Tax currency="USD">25.12</Tax>
    <OtherFees currency="USD">2.00</OtherFees>
    <AllowablePointsOfSale>
      <PointOfSale id="site1"/>
    </AllowablePointsOfSale>
  </Result>
  <Result>
    <Property>052213</Property>
    <RoomID>RoomType101</RoomID>
    <PackageID>Package101</PackageID>
    <Checkin>2018-06-10</Checkin>
    <Nights>2</Nights>
    <Baserate currency="USD">299.98</Baserate>
    <Tax currency="USD">26.42</Tax>
    <OtherFees currency="USD">2.00</OtherFees>
    <AllowablePointsOfSale>
      <PointOfSale id="otto"/>
      <PointOfSale id="simon"/>
    </AllowablePointsOfSale>
  </Result>
</Transaction>

1박 요금

다음 예시는 2023년 6월 7일부터 1~7박 동안의 가격 데이터를 정의합니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction timestamp="2017-08-24T16:20:00-04:00" id="42">
  <Result>
    <Property>1234</Property>
    <Checkin>2018-06-07</Checkin>
    <Nights>1</Nights>
    <Baserate currency="USD">209.99</Baserate>
    <Tax currency="USD">25.12</Tax>
    <OtherFees currency="USD">2.00</OtherFees>
  </Result>
  <Result>
    <Property>1234</Property>
    <Checkin>2018-06-07</Checkin>
    <Nights>2</Nights>
    <Baserate currency="USD">419.98</Baserate>
    <Tax currency="USD">25.12</Tax>
    <OtherFees currency="USD">2.00</OtherFees>
  </Result>
  <Result>
    <Property>1234</Property>
    <Checkin>2018-06-07</Checkin>
    <Nights>3</Nights>
    <Baserate currency="USD">614.97</Baserate>
    <Tax currency="USD">21.12</Tax>
    <OtherFees currency="USD">2.00</OtherFees>
  </Result>
  <Result>
    <Property>1234</Property>
    <Checkin>2018-06-07</Checkin>
    <Nights>4</Nights>
    <Baserate currency="USD">819.96</Baserate>
    <Tax currency="USD">21.12</Tax>
    <OtherFees currency="USD">2.00</OtherFees>
  </Result>
  <Result>
    <Property>1234</Property>
    <Checkin>2018-06-07</Checkin>
    <Nights>5</Nights>
    <Baserate currency="USD">999.95</Baserate>
    <Tax currency="USD">21.12</Tax>
    <OtherFees currency="USD">2.00</OtherFees>
  </Result>
  <Result>
    <Property>1234</Property>
    <Checkin>2018-06-07</Checkin>
    <Nights>6</Nights>
    <Baserate currency="USD">1193.94</Baserate>
    <Tax currency="USD">21.12</Tax>
    <OtherFees currency="USD">2.00</OtherFees>
  </Result>
  <Result>
    <Property>1234</Property>
    <Checkin>2018-06-07</Checkin>
    <Nights>7</Nights>
    <Baserate currency="USD">1259.93</Baserate>
    <Tax currency="USD">21.12</Tax>
    <OtherFees currency="USD">2.00</OtherFees>
  </Result>
</Transaction>


기본 요금 및 조건부 요금

다음 예는 기본 요금과 조건부 요금이 포함된 거래 메시지를 보여줍니다.

<?xml version="1.0" encoding="UTF-8" ?>
<Transaction timestamp="2023-05-18T16:20:00-04:00" id="42">
  <Result>
    <Property>1234</Property>
    <Checkin>2023-04-10</Checkin>
    <Nights>1</Nights>

    <Baserate currency="USD">200.00</Baserate>
    <Tax currency="USD">20.00</Tax>
    <OtherFees currency="USD">1.00</OtherFees>

    <Rates>
      <!-- The rate_rule_id is required when using conditional rates -->
      <Rate rate_rule_id="mobile">
        <!-- Override base rate and taxes for conditional rates -->
        <Baserate currency="USD">180.00</Baserate>
        <Tax currency="USD">18.00</Tax>
        <!-- NOTE: OtherFees is inherited from the above setting -->
        <Custom1>ratecode123</Custom1>
      </Rate>
    </Rates>

  </Result>
</Transaction>

인벤토리 삭제

다음 예에서는 인벤토리에서 호텔의 여러 인벤토리 (서로 다른 여러 날짜의 1박)를 삭제합니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction timestamp="2023-05-23T16:20:00-04:00" id="42">
  <Result>
    <Property>1123581321</Property>
    <Checkin>2023-05-23</Checkin>
    <Nights>1</Nights>
    <Unavailable>
      <NoVacancy/>
    </Unavailable>
    <Tax currency="USD">0</Tax>
    <OtherFees currency="USD">0</OtherFees>
  </Result>
  <Result>
    <Property>1123581321</Property>
    <Checkin>2023-05-24</Checkin>
    <Nights>1</Nights>
    <Unavailable>
      <NoVacancy/>
    </Unavailable>
    <Tax currency="USD">0</Tax>
    <OtherFees currency="USD">0</OtherFees>
  </Result>
  <!---Sending <Baserate> is optional with <Unavailable> -->
  <Result>
    <Property>1123581321</Property>
    <Checkin>2023-05-25</Checkin>
    <Nights>1</Nights>
    <Baserate currency="USD">-1</Baserate>
    <Unavailable>
      <NoVacancy/>
    </Unavailable>
    <Tax currency="USD">0</Tax>
    <OtherFees currency="USD">0</OtherFees>
  </Result>
</Transaction>

<PropertyDataSet>

<Transaction> 메시지의 객실 및 패키지 (또는 객실 패키지) 정보의 컨테이너입니다. 호텔에 설정된 값이 파트너에 설정된 값을 재정의합니다. Google은 가격 업데이트를 보낼 때마다 이 정보를 정의할 필요가 없도록 이 정보를 저장합니다.

<PropertyDataSet> 요소는 트랜잭션 메시지 XML 계층 구조의 다음 위치에 표시됩니다.

+ <Transaction>
    + <PropertyDataSet>  // Room and package metadata
        + <Property>
        + <RoomData>
        + <PackageData>
    + <Result>  // Pricing and availability
        + <Rates>
        + <RoomBundle>
        + ...

자세한 내용은 객실 번들 메타데이터를 참고하세요.

문법

<PropertyDataSet> 요소는 다음 구문을 사용합니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction ... >
  <PropertyDataSet>
    <!-- (Required) ID that matches the Hotel List Feed -->
    <Property>hotel_ID</Property>

    <!-- (Optional) Defines metadata about a room -->
    <RoomData>
      ...
    </RoomData>

    <!-- (Optional) Defines package metadata to be paired with rooms (Room Bundles) -->
    <PackageData>
      ...
    </PackageData>
  </PropertyDataSet>
  ...
</Transaction>

특성

<PropertyDataSet> 요소에 속성이 없습니다.

하위 요소

<PropertyDataSet> 요소에는 다음과 같은 하위 요소가 있습니다.

하위 요소 필수 여부 유형 설명
<PackageData> Optional* <PackageData> 객실 패키지를 설명합니다. 이 데이터는 파트너 및 호텔과는 관련이 있지만 여행 일정과는 관련이 없습니다. 이 요소는 <RoomData>와 유사하지만 실제 객실 설명에 포함되지 않은 편의시설 및 용어를 설명합니다.

가격 업데이트에서 패키지 ID를 참조합니다.

자세한 내용은 Room 번들 메타데이터를 참고하세요.

<Property> Required string 연결된 데이터가 적용되는 호텔의 ID입니다. 이 요소의 값은 호텔 목록 피드의 등록정보 <id>과 일치하는 문자열이어야 합니다.
<RoomData> Optional* <RoomData> 방을 설명합니다. 이 데이터는 파트너 및 호텔과는 관련이 있지만 여행 일정과는 관련이 없습니다.

가격 업데이트에서 객실 ID를 참조합니다.

* <PackageData> 또는 <RoomData> 중 하나 이상이 필요합니다.

Room 및 패키지 데이터

다음 예는 <PropertyDataSet>의 방 및 패키지 데이터를 모두 보여줍니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction timestamp="2017-07-18T16:20:00-04:00" id="42">
  <PropertyDataSet>
    <Property>180054</Property>
    <RoomData>
      <RoomID>060773</RoomID>
      <Name>
        <Text text="Single Bed Room" language="en"/>
        <Text text="Chambre single" language="fr"/>
      </Name>
      <Description>
        <Text text="Non-smoking" language="en"/>
        <Text text="Pas de fumiers" language="fr"/>
      </Description>
      <PhotoURL>
        <Caption>
          <Text text="Living area" language="en"/>
          <Text text="Le chambre" language="fr"/>
        </Caption>
        <URL>http://www.foo.com/static/bar/image1234.jpg</URL>
      </PhotoURL>
    </RoomData>
    <PackageData>
      <PackageID>P54321</PackageID>
      <Name>
        <Text text="Breakfast Included" language="en"/>
        <Text text="Avec le petit déjeuner" language="fr"/>
      </Name>
      <Description>
        <Text text="Includes a delightful array of jams and jellies." language="en"/>
        <Text text="Comprend une délicieuse gamme de confitures et gelées." language="fr"/>
      </Description>
      <BreakfastIncluded>1</BreakfastIncluded>
    </PackageData>
  </PropertyDataSet>
</Transaction>

이 객실 및 객실 번들의 가격과 예약 가능 여부를 전송할 때 가격 메시지에서 객실 및 패키지 ID를 참조합니다. 따라서 메시지 크기를 크게 줄이고 중복 데이터로 인해 발생할 수 있는 오류의 양도 줄어듭니다. 자세한 내용은 객실 번들 메타데이터를 참고하세요.

<RoomData>

객실 및 추가 편의시설인 객실 패키지이므로 객실 일정과 상관없는 메타데이터 및 '객실 패키지'를 정의합니다. 가격 피드에서 설명 데이터의 반복을 줄이려면 <RoomData>를 사용하세요.

<RoomData> 요소는 트랜잭션 메시지 XML 계층 구조의 다음 위치에 표시됩니다.

+ <Transaction>
    + <PropertyDataSet>  // Room and package metadata
        + <Property>
        + <RoomData>
        + <PackageData>
    + <Result>           // Pricing and availability
        + <Rates>
        + <RoomBundle>
        + ...

<RoomData> 요소에는 파트너 및 호텔과 관련이 있지만 숙박 일정과는 연결된 정보가 포함되지 않습니다. 이 목적은 모든 비여행 일정 데이터를 위한 것입니다.

<RoomData> 요소는 <PackageData>와 유사하지만 패키지의 편의시설 및 약관보다는 실제 객실을 설명합니다. <RoomData><PackageData>를 함께 사용하여 객실 패키지 세부정보를 제공합니다. 패키지에 포함되지 않은 개별 객실의 경우 <RoomData>만 사용하세요.

같은 방 또는 객실 패키지에서 <RoomData><PackageData> 요소를 모두 정의할 수 있습니다. Google에서 해당 객실이나 패키지를 검색 결과에 표시할 때 두 객실의 설명이 하이픈으로 구분되어 포함됩니다.

자세한 내용은 객실 번들 메타데이터를 참고하세요.

문법

<RoomData> 요소는 다음 구문을 사용합니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction ... >
  <PropertyDataSet>
    ...
    <RoomData>
      <RoomID>room_ID</RoomID>

      <Name>
        <Text text="room_name" language="language_code"/>
        ...
      </Name>

      <Description>
        <Text text="room_description" language="language_code"/>
        ...
      </Description>

      <Capacity>max_number_of_occupants</Capacity>
      <Occupancy>max_number_of_intended_occupants</Occupancy>
      <OccupancyDetails> <!-- optional info about the types of guests,
      whether adults, children, or seniors --></OccupancyDetails>
      <OccupancySettings>
        <MinOccupancy>min_number_of_occupants</MinOccupancy>
        <MinAge>min_age_of_occupants</MinAge>
      </OccupancySettings>

      <PhotoURL>
        <Caption>
          <Text text="photo_description" language="language_code"/>
          ...
        </Caption>
        <URL>photo_location</URL>
      </PhotoURL>
      <RoomFeatures>
        ...
      </RoomFeatures>
    </RoomData>
    ...
  </PropertyDataSet>
</Transaction>

특성

<RoomData> 요소에 속성이 없습니다.

하위 요소

<RoomData> 요소에는 다음과 같은 하위 요소가 있습니다.

하위 요소 필수 여부 유형 설명
<Capacity> Optional integer 객실에서 실제로 수용할 수 있는 최대 투숙객 수입니다. 회의실의 경우 수용 인원이 숙박 인원보다 크거나 같습니다.

이 값을 지정하면 특정 방에 투숙할 투숙객 수인 <Occupancy> 요소 값보다 크거나 같아야 합니다. 예를 들어 대형 도구 모음의 <Capacity>는 6이지만 이 도구의 <Occupancy>은 4일 수 있습니다.

<Capacity> 값은 1에서 20 사이의 양의 정수여야 합니다.

<Description> Optional Object 방에 관한 자세한 설명입니다. 이 요소는 다른 요소나 <Name> 요소로 설명되지 않는 정보를 포함해야 합니다. 객실 설명을 지정할 때 전부 대문자를 사용해서는 안 됩니다.

<Description> 요소는 다음 두 가지 필수 속성이 있는 단일 하위 요소 <Text>를 사용합니다.

  • text: 방에 관한 자세한 설명입니다.
  • language: 2자리 언어 코드입니다(예: fr).

광고 또는 무료 예약 링크가 표시될 수 있는 언어마다 별도의 <Text> 요소를 사용합니다 (language 속성마다 다른 값 사용).

다음 예에서는 프랑스어와 영어 버전의 객실 설명을 보여줍니다.

<Description>
  <Text text="Two queen-sized beds" language="en"/>
  <Text text="Deux lits de la reine" language="fr"/>
</Description>
<Name> Required string 객실 카테고리의 이름입니다. 이 값은 호텔의 방문 페이지 (이전의 판매 시점)에 표시되는 값과 일치해야 합니다. 이 요소의 값을 모두 대문자로 설정하지 마세요.

이 요소는 다음 두 가지 필수 속성이 있는 단일 하위 요소 <Text>를 사용합니다.

  • text: 방의 이름
  • language: 2자리 언어 코드입니다(예: fr).

광고 또는 무료 예약 링크가 표시될 수 있는 언어마다 별도의 <Text> 요소를 사용합니다 (language 속성마다 다른 값 사용).

다음 예는 방 이름의 프랑스어와 영어 버전을 보여줍니다.

<Name>
  <Text text="Standard Double Room" language="en"/>
  <Text text="Le chambre double" language="fr"/>
</Name>
<Occupancy> Optional integer 회의실을 대상으로 하는 최대 참석자 수입니다. 예를 들어 대형 스위트룸은 물리적으로 6명의 투숙객을 수용할 수 있지만 (용량 = 6) 최대 4명까지 투숙할 수 있습니다.

이 값은 회의실에서 실제로 수용할 수 있는 사용자 수인 <Capacity> 요소 이하여야 합니다.

<Occupancy> 값은 1에서 99 사이의 양의 정수여야 합니다.

<Occupancy>에는 투숙객의 유형 (성인 또는 어린이)을 지정하는 <OccupancyDetails>가 함께 표시될 수 있습니다. 하위 요소의 구문과 설명은 <OccupancyDetails>를 참조하세요.

<OccupancySettings> Optional Object 회의실의 숙박 인원 요구사항을 제한하거나 수정할 수 있는 설정입니다.

<OccupancySettings> 요소는 다음과 같은 하위 요소를 받습니다.

  • <MinOccupancy>: 객실에 투숙할 수 있는 최소 투숙객 수입니다. 예를 들어 2로 설정된 경우 이 회의실을 1명으로 예약할 수 없습니다.

    <MinOccupancy> 값은 1에서 99 사이의 양의 정수여야 합니다.

  • <MinAge>: 객실에 투숙하는 모든 투숙객의 최소 연령입니다. 예를 들어 18로 설정하면 모든 참석자가 만 18세 이상인 그룹에만 이 회의실을 예약할 수 있습니다.

    <MinAge> 값은 0에서 99 사이의 양의 정수여야 합니다.

<OccupancySettings>
  <MinOccupancy>2</MinOccupancy>
  <MinAge>16</MinAge>
</OccupancySettings>

모든 하위 요소를 포함할 필요는 없습니다.

<PhotoURL> Optional Object 지정된 객실 또는 객실 패키지 사진의 URL 및 설명(선택사항)입니다. 객실 또는 객실 패키지 하나에 <PhotoURL>를 2개 이상 지정할 수 있습니다. 각 사진 URL은 자체 <PhotoURL>에 있어야 합니다.

이 요소는 다음과 같은 하위 요소를 받습니다.

  • <URL>: 사진의 위치를 지정합니다. 위치는 방화벽 뒤가 아닌 공개여야 하며 프로토콜(예: https://)을 포함해야 합니다. <PhotoURL>당 하나의 <URL>만 사용하세요.
  • <Caption>: 사진의 설명을 정의합니다. 이 요소는 textlanguage, 이렇게 두 개의 필수 속성이 있는 단일 하위 요소 <Text>를 사용합니다. text 속성은 자막이며 language 속성은 en과 같은 두 글자의 언어 코드를 지정합니다.

예:

<PhotoURL>
  <URL>https://www.example.com/static/bar/image1234.jpg</URL>
  <Caption>
    <Text text="A bright and breezy way to enjoy your mornin'
      cuppa tea." language="en"/>
    <Text text="Une façon lumineuse et aérée pour profiter
      de votre journée tasse de thé." language="fr"/>
  </Caption>
</PhotoURL>
<PhotoURL>
  <URL>https://www.foo.com/static/bar/image5678.jpg</URL>
  <Caption>
    <Text text="Or, perhaps you prefer coffee." language="en"/>
    <Text text="Ou peut-être préférez-vous le café." language="fr"/>
  </Caption>
</PhotoURL>
<RoomFeatures> Optional <RoomFeatures> 객실 특징에 관한 정보가 포함됩니다.
<RoomID> Required string 방의 고유 ID입니다. 이 ID를 사용하여 객실 데이터를 가격 업데이트의 <Result> 블록과 일치시킵니다. 자세한 내용은 Room 번들 메타데이터를 참고하세요. (또한 이 ID를 사용하여 회의실 데이터를 인라인으로 정의할 때 단일 트랜잭션 메시지에서 휴게실 정의를 참조할 수 있습니다.)

회의실 데이터

다음 예에서는 방 데이터를 정의합니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction timestamp="2017-07-18T16:20:00-04:00" id="42">
  <PropertyDataSet>
    <Property>1234</Property>
    <RoomData>
      <RoomID>5440OF</RoomID>
      <Name>
        <Text text="Single King Bed Room" language="en"/>
        <Text text="Simple Lit de Roi" language="fr"/>
      </Name>
      <Description>
        <Text text="One king bed with pillowtop mattresses, 300-thread-count linens,
          and down comforters (bedspreads). City view. 300 square feet. Desk with
          rolling chair. Multi-line phone with voice mail. Cable/satellite TV with
          complimentary HBO and pay movies." language="en"/>
        <Text text="Un très grand lit avec matelas à plateau-coussin, ..." language="fr"/>
      </Description>
      <PhotoURL>
        <Caption>
          <Text text="Bathroom View" language="en"/>
          <Text text="La salle de baines" language="fr"/>
        </Caption>
        <URL>http://www.foo.com/static/bar/image1234.jpg</URL>
      </PhotoURL>
      <Capacity>4</Capacity>
    </RoomData>
  </PropertyDataSet>
</Transaction>

Room 및 패키지 메타데이터

다음 예에서는 객실 및 패키지 메타데이터를 정의합니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction timestamp="2017-07-18T16:20:00-04:00" id="42">
  <PropertyDataSet>
    <Property>180054</Property>
    <RoomData>
      <RoomID>060773</RoomID>
      <Name>
        <Text text="Single Bed Room" language="en"/>
        <Text text="Chambre single" language="fr"/>
      </Name>
      <Description>
        <Text text="Non-smoking" language="en"/>
        <Text text="Pas de fumiers" language="fr"/>
      </Description>
      <PhotoURL>
        <Caption>
          <Text text="Living area" language="en"/>
          <Text text="Le chambre" language="fr"/>
        </Caption>
        <URL>http://www.foo.com/static/bar/image1234.jpg</URL>
      </PhotoURL>
    </RoomData>
    <PackageData>
      <PackageID>P54321</PackageID>
      <Name>
        <Text text="Breakfast Included" language="en"/>
        <Text text="Avec le petit déjeuner" language="fr"/>
      </Name>
      <Description>
        <Text text="Includes a delightful array of jams and jellies." language="en"/>
        <Text text="Comprend une délicieuse gamme de confitures et gelées." language="fr"/>
      </Description>
      <BreakfastIncluded>1</BreakfastIncluded>
    </PackageData>
  </PropertyDataSet>
</Transaction>

여러 객실 패키지

다음 예에서는 여러 Room 번들의 방 및 패키지 메타데이터를 정의합니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction timestamp="2017-07-18T16:20:00-04:00" id="42">
  <!-- A transaction message with room types result. -->
  <PropertyDataSet>
    <Property>12345</Property>
    <RoomData>
      <RoomID>single</RoomID>
      <Name>
        <Text text="Single room" language="en"/>
        <Text text="Chambre simple" language="fr"/>
      </Name>
      <Description>
        <Text text="A single room" language="en"/>
        <Text text="Le chambre simple" language="fr"/>
      </Description>
      <PhotoURL>
        <Caption>
          <Text text="Living area" language="en"/>
          <Text text="Le chambre" language="fr"/>
        </Caption>
        <URL>http://www.foo.com/static/bar/image1234.jpg</URL>
      </PhotoURL>
      <PhotoURL>
        <URL>http://www.foo.com/static/bar/image1235.jpg</URL>
      </PhotoURL>
      <Capacity>2</Capacity>
    </RoomData>
    <RoomData>
      <RoomID>double</RoomID>
      <Name>
        <Text text="Double room" language="en"/>
        <Text text="Chambre double" language="fr"/>
      </Name>
      <Occupancy>1</Occupancy>
    </RoomData>
    <PackageData>
      <PackageID>refundbreakfast</PackageID>
      <Name>
        <Text text="Refundable Room with Breakfast" language="en"/>
        <Text text="Chambre remboursable avec le petit déjeuner" language="fr"/>
      </Name>
      <Description>
        <Text text="Continental Breakfast" language="en"/>
        <Text text="Petit déjeuner continental" language="fr"/>
      </Description>
      <ChargeCurrency>hotel</ChargeCurrency>
      <Refundable available="1" refundable_until_days="3"/>
      <BreakfastIncluded>1</BreakfastIncluded>
    </PackageData>
    <PackageData>
      <PackageID>prepaid</PackageID>
      <Name>
        <Text text="Nonrefundable" language="en"/>
        <Text text="Non remboursable" language="fr"/>
      </Name>
      <Description>
        <Text text="Blah blah blad" language="en"/>
        <Text text="Le blah blah blad" language="fr"/>
      </Description>
      <Occupancy>2</Occupancy>
      <ChargeCurrency>web</ChargeCurrency>
      <Refundable available="0"/>
    </PackageData>
  </PropertyDataSet>
</Transaction>

<RoomFeatures>

방에 있는 기능을 정의합니다.

<RoomFeatures> 요소는 트랜잭션 메시지 XML 계층 구조의 다음 위치에 표시됩니다.

+ <Transaction>
    + <PropertyDataSet>  // Room and package metadata
        + <Property>
        + <RoomData>
            + <RoomFeatures>

문법

<RoomFeatures> 요소는 다음 구문을 사용합니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction ... >
  <PropertyDataSet ... >
    ...
    <RoomData>
      <RoomFeatures>
        <JapaneseHotelRoomStyle>[western|japanese|japanese_western]</JapaneseHotelRoomStyle>
        <Beds>
           <Bed size="[single|semi_double|double|queen|king]">
             <Width unit="cm" number="width"/>
             <Length unit="cm" number="length"/>
           </Bed>
           <!-- Include with any additional beds. -->
        </Beds>
        <Suite/>
        <Capsule/>
        <Roomsharing>[shared|private]</Roomsharing>
        <Outdoor/>
        <MobilityAccessible/>
        <Smoking>[smoking|non_smoking]</Smoking>
        <BathAndToilet relation="[together|separate]">
          <Bath bathtub="[false|true]" shower="[false|true]"/>
          <Toilet electronic_bidet="[false|true]" mobility_accessible="[false|true]"/>
        </BathAndToilet>
        <OpenAirBath/>
        <AirConditioning/>
        <Balcony/>
        <Views>
          <!-- (Optional) Defines the type of views from the room. -->
          <!-- Example: <OceanView/> -->
        </Views>

      </RoomFeatures>
      ...
    </RoomData>
    ...
  </PropertyDataSet>
</Transactions>

특성

<RoomFeatures> 요소에 속성이 없습니다.

하위 요소

<RoomFeatures> 요소에는 다음과 같은 하위 요소가 있습니다.

하위 요소 필수 여부 유형 설명
<JapaneseHotelRoomStyle> Optional enum

일본식 호텔 객실의 스타일을 나타냅니다.

유효한 값은 다음과 같습니다.

  • western: 침대가 있는 서양식 객실
  • japanese: 바닥에 깔 수 있는 요가 있는 일본식 객실
  • japanese_western: 서양식 침대와 일본식 바닥에 깔 수 있는 요가 마련된 일본 서양식 객실입니다.
<Beds> Optional Object 방에 있는 만큼의 <Bed>를 포함합니다. 일본식 바닥에 깔 수 있는 요는 여기에 포함되지 않습니다.

<Bed>에는 다음과 같은 속성이 있습니다.

  • size (선택사항): 유효한 값은 single, semi_double, double, queen, king입니다.
<Bed>에는 다음과 같은 하위 요소가 있습니다.
  • <Width> (선택사항): 침대 너비를 지정합니다. 값이 cmunit 속성과 침대 너비가 정수 센티미터인 number 속성이 있어야 합니다.
  • <Length> (선택사항): 침대 길이를 지정합니다. 값이 cmunit 속성과 침대 길이가 정수 센티미터인 number 속성이 있어야 합니다.
예:
<Beds>
  <Bed size="double">
    <Width unit="cm" number="140"/>
    <Length unit="cm" number="195"/>
  </Bed>
  <Bed/> <!-- Size unknown -->
</Beds>
<Suite> Optional empty 이 객실이 스위트룸인 경우 이 요소를 제공합니다.
<Capsule> Optional empty 캡슐형 객실인 경우 이 요소를 제공합니다.
<Roomsharing> Optional enum 이 회의실을 소유자 또는 다른 게스트 등 다른 투숙객과 공유하는지 여부입니다. 유효한 값은 sharedprivate입니다.
<Outdoor> Optional empty 고정된 벽, 배관, 실내 온도 조절기가 없는 야외 숙박 시설인 경우 이 요소를 제공하세요. 예를 들어 호텔 객실은 야외 숙박 시설이 아닌 반면 투숙객이 텐트에 머무르는 캠핑장과 투숙객이 RV를 가져가는 RV 주차장은 야외 숙박 시설입니다.
<MobilityAccessible> Optional empty 장애인이 이용할 수 있는 객실인 경우 이 요소를 제공합니다.
<Smoking> Optional enum 금연실 또는 흡연실 여부 유효한 값은 non_smokingsmoking입니다.
<BathAndToilet> Optional Object 객실 내 욕실 및 화장실에 관한 정보가 포함됩니다.

속성은 다음과 같습니다.

  • relation (선택사항): 욕실과 화장실이 서로 맞닿아 있는 방식을 나타냅니다. 유효한 값은 together(욕실과 화장실이 모두 같은 방(예: 욕실)에 나란히 배치되어 있음) 및 separate(욕실과 화장실 각각에 전용 공간이 있음)입니다. 욕실과 화장실이 모두 없는 경우에는 이 속성을 설정하면 안 됩니다.

이 요소는 선택적으로 다음 하위 요소를 받습니다.

  • <Bath> (선택사항): 이 요소가 있으면 방에 욕조가 있음을 나타냅니다.

    속성은 다음과 같습니다.

    • bathtub (선택사항): 욕실에 욕조가 있다는 것을 나타냅니다. 유효한 값은 0(또는 false) 및 1 (또는 true)입니다.
    • shower (선택사항): 욕조에 샤워 시설이 있음을 나타냅니다. 유효한 값은 0 (또는 false) 및 1 (또는 true)입니다.
  • <Toilet> (선택사항): 이 요소가 있으면 방에 화장실이 있음을 나타냅니다.

    속성은 다음과 같습니다.

    • electronic_bidet (선택사항): 화장실에 전자 비데가 있음을 나타냅니다. 유효한 값은 0 (또는 false) 및 1 (또는 true)입니다.
    • mobility_accessible (선택사항): 화장실에 장애인이 이용할 수 있는 화장실을 나타냅니다. 유효한 값은 0(또는 false) 및 1 (또는 true)입니다.

예:

<BathAndToilet relation="separate">
  <Bath bathtub="1" shower="1"/>
  <Toilet
    electronic_bidet="1"
    mobility_accessible="1"/>
</BathAndToilet>
<OpenAirBath> Optional empty 이 객실에 전용 노천탕이 있는 경우 이 요소를 제공하세요.
<AirConditioning> Optional empty 에어컨이 있는 객실에는 이 요소를 제공하세요.
<Balcony> Optional empty 발코니 또는 베란다가 있는 경우 이 요소를 제공하세요.
<Views> Optional Object 유효한 옵션은 다음과 같습니다.

<AirportView/>
<BayView/>
<BeachView>/>
<CastleView/>
<CityView/>
<CountrysideView/>
<CourtyardView/>
<DuneView/>
<ForestView/>
<GardenView/>
<GolfCourseView/>
<HarborView/>
<LagoonView/>
<LakeView/>
<MarinaView/>
<MountainView/>
<NatureView/>
<OceanView/>
<ParkView/>
<PartialOceanView/>
<PisteView/>
<PoolView/>
<PyramidView/>
<RiverView/>
<StreetView/>

JapaneseHotelRoomStyle에는 기본값이 없습니다. 값을 생략해도 XML 오류가 발생하지는 않지만 사용자가 객실 스타일 또는 침대로 필터링할 때 등록정보가 검색 결과에 표시되지 않습니다.

싱글 사이즈 침대 2개

다음 예는 <RoomFeatures>를 사용하는 방법을 보여줍니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction timestamp="2017-07-18T16:20:00-04:00" id="42">
  <PropertyDataSet>
    <Property>1234</Property>
    <RoomData>
      <RoomID>RoomID_1</RoomID>
      <RoomFeatures>
        <JapaneseHotelRoomStyle>western</JapaneseHotelRoomStyle>
        <Beds> <!-- Two single beds -->
          <Bed size="single">
            <Width unit="cm" number="97"/>
            <Length unit="cm" number="195"/>
          </Bed>
          <Bed size="single">
            <Width unit="cm" number="97"/>
            <Length unit="cm" number="195"/>
          </Bed>
        </Beds>
        <Suite/>
        <Capsule/>
        <Roomsharing>private</Roomsharing>
        <Outdoor/>
        <MobilityAccessible/>
        <Smoking>non_smoking</Smoking>
        <BathAndToilet relation="separate">
          <Bath bathtub="1" shower="1"/>
          <Toilet electronic_bidet="1" mobility_accessible="1"/>
        </BathAndToilet>
        <OpenAirBath/>
        <AirConditioning/>
        <Balcony/>
        <Views>
          <LakeView/>
          <MarinaView/>
          <BeachView/>
          <ForestView/>
          <MountainView/>
          <NatureView/>
        </Views>
      </RoomFeatures>
    </RoomData>
  </PropertyDataSet>
</Transaction>

더블 사이즈 침대 2개

다음은 double 침대 2개가 있는 western 스타일의 일본식 객실의 예입니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction timestamp="2023-07-23T16:20:00-04:00" id="42">
  <PropertyDataSet>
    <Property>1234</Property>
    <RoomData>
      <RoomID>RoomID_1</RoomID>
      <RoomFeatures>
        <JapaneseHotelRoomStyle>western</JapaneseHotelRoomStyle>
        <Beds> <!-- Two double beds-->
          <Bed size="double"></Bed>
          <Bed size="double"></Bed>
        </Beds>
      </RoomFeatures>
    </RoomData>
  </PropertyDataSet>
</Transaction>


침대가 없는 일본식

다음은 침대가 없는 일본식 객실의 예입니다. japanese 스타일 객실에는 침대 정보가 필요하지 않습니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction timestamp="2023-07-23T16:20:00-04:00" id="42">
  <PropertyDataSet>
    <Property>1234</Property>
    <RoomData>
      <RoomID>RoomID_1</RoomID>
      <RoomFeatures>
        <JapaneseHotelRoomStyle>japanese</JapaneseHotelRoomStyle>
      </RoomFeatures>
    </RoomData>
  </PropertyDataSet>
</Transaction>

침대가 있는 일본 서부 요리

다음은 king 크기의 침대가 있는 japanese_western 스타일 객실의 예입니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction timestamp="2023-07-23T16:20:00-04:00" id="42">
  <PropertyDataSet>
    <Property>1234</Property>
    <RoomData>
      <RoomID>RoomID_1</RoomID>
      <RoomFeatures>
        <JapaneseHotelRoomStyle>japanese_western</JapaneseHotelRoomStyle>
        <Beds>
          <Bed size="king"></Bed>
        </Beds>
      </RoomFeatures>
    </RoomData>
  </PropertyDataSet>
</Transaction>

파트너에게 방 japanese_western개의 침대 수 정보가 없는 경우 예를 따릅니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction timestamp="2023-07-23T16:20:00-04:00" id="42">
  <PropertyDataSet>
    <Property>1234</Property>
    <RoomData>
      <RoomID>RoomID_1</RoomID>
      <RoomFeatures>
        <JapaneseHotelRoomStyle>japanese_western</JapaneseHotelRoomStyle>
      </RoomFeatures>
    </RoomData>
  </PropertyDataSet>
</Transaction>

<PackageData>

숙박 시설의 객실 패키지와 관련된 숙박 일정과 무관한 메타데이터를 정의합니다. 이 요소에는 파트너 및 호텔과 관련되어 있지만 운항 일정과는 관련되지 않은 정보가 포함됩니다. 본래의 목적은 여행 일정이 아닌 모든 데이터를 한 번 정의하고 이를 여행 일정 데이터에서 참조하는 것입니다.

<PackageData> 요소는 트랜잭션 메시지 XML 계층 구조의 다음 위치에 표시됩니다.

+ <Transaction>
    + <PropertyDataSet>  // Room and package metadata
        + <Property>
        + <RoomData>
        + <PackageData>
    + <Result>           // Pricing and availability
        + <Rates>
        + <RoomBundle>
        + ...

<PackageData> 요소는 <RoomData>와 유사하지만, 실제 객실 설명에 포함되지 않은 요금 지형지물 및 용어를 설명합니다. <RoomData><PackageData>를 함께 사용하여 객실 패키지 및 요금 지형지물에 관한 세부정보를 제공합니다. 패키지에 포함되지 않은 개별 객실의 경우 <RoomData>만 사용하면 됩니다.

같은 방 또는 객실 패키지를 위해 <RoomData><PackageData> 요소를 모두 정의할 수 있습니다. Google에서 해당 객실이나 패키지를 검색 결과에 표시할 때 두 객실의 설명이 하이픈으로 구분되어 포함됩니다.

속성의 단일 <PackageData> 요소를 업데이트하는 경우 속성의 모든 <PackageData><RoomData> 요소를 업데이트해야 합니다. 각 <PropertyDataSet>는 속성에 관한 모든 데이터로 간주되며 기존 데이터를 덮어씁니다.

자세한 내용은 객실 번들 메타데이터를 참고하세요.

문법

<PackageData> 요소는 다음 구문을 사용합니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction ... >
  <PropertyDataSet ... >
    <PackageData>
      <PackageID>package_ID</PackageID>
      <Name>
        <Text text="package_name" language="language_code"/>
        ...
      </Name>
      <Description>
        <Text text="package_description" language="language_code"/>
        ...
      </Description>
      <Refundable available="[false|true]" refundable_until_days="number_of_days"
        refundable_until_time="time"/>
      <ChargeCurrency>[deposit|hotel|installments|web]</ChargeCurrency>
      <Occupancy>max_number_of_intended_occupants</Occupancy>
      <OccupancyDetails><!-- optional info about the types of guests,
      whether adults or children --></OccupancyDetails>
      <!-- For these next 3 elements, boolean_value can be 0/1 or true/false -->
      <BreakfastIncluded>boolean_value</BreakfastIncluded>
      <InternetIncluded>boolean_value</InternetIncluded>
      <ParkingIncluded>boolean_value</ParkingIncluded>
      <PhotoURL>
        <Caption>
          <Text text="photo_description" language="language_code"/>
          ...
        </Caption>
        <URL>photo_location</URL>
      </PhotoURL>
      ...
      <Meals>
        <Breakfast
          included="[true|false]" buffet="[true|false]"
          in_room="[true|false]" in_private_space="[true|false]"/>
        <Dinner
          included="[true|false]" buffet="[true|false]"
          in_room="[true|false]" in_private_space="[true|false]"/>
      </Meals>
      <CheckinTime>checkin_time</CheckinTime>
      <CheckoutTime>checkout_time</CheckoutTime>
      <MembershipBenefitsIncluded>
        <ProgramName>
          <Text language="en" text="Special Rewards">
        </ProgramName>
        <ProgramLevel>
          <Text language="en" text="Platinum">
        </ProgramLevel>
      </MembershipBenefitsIncluded>
      <OnPropertyCredit>
        <Amount currency="USD">123.45</Amount>
      </OnPropertyCredit>
    </PackageData>
    <!-- a PackageID with a MilesIncluded rate feature -->
    <PackageData>
      <PackageID>room_with_miles</PackageID>
      <Name>
       <Text text="Room with Bundled Miles" language="en">
      </Name>
      <ChargeCurrency>hotel </ChargeCurrency>
      <MilesIncluded>
        <NumberOfMiles>1000 </NumberOfMiles>
        <Provider>
          <Text language="en" text="United Airlines">
        </Provider>
      </MilesIncluded>
    </PackageData>
    ...
    ...
  </PropertyDataSet>
  ...
</Transaction>

특성

<PackageData> 요소에 속성이 없습니다.

하위 요소

<PackageData> 요소에는 다음과 같은 하위 요소가 있습니다.

하위 요소 필수 여부 유형 설명
<BreakfastIncluded> Optional boolean 이 패키지에 요금과 함께 조식이 포함되어 있는지 여부를 지정합니다. 유효한 값은 0 (또는 false) 및 1(또는 true)입니다.

<BreakfastIncluded> 대신 <Meals>를 사용하는 것이 좋습니다.

<ChargeCurrency> Optional enum 사용자가 예약 비용을 지불하는 시기 및 장소 이 요소는 <Result><ChargeCurrency>와 동일한 구문을 사용합니다.

기본값은 web입니다.

<CheckinTime> Optional Time 가장 빠른 체크인 시간입니다. 시간은 호텔 현지 시간을 기준으로 24:00 미만이어야 합니다.
<CheckoutTime> Optional Time 현지 시간을 기준으로 가장 늦은 체크아웃 시간입니다.
<Description> Optional Object 패키지에 대한 자세한 설명입니다. 이 요소는 다른 요소나 <Name> 요소로 설명되지 않는 정보를 포함해야 합니다. 객실 설명을 지정할 때 전부 대문자를 사용해서는 안 됩니다.

<Description> 요소는 textlanguage라는 두 개의 필수 속성이 있는 단일 하위 요소 <Text>를 사용합니다. text 속성은 설명이고 language 속성은 다음 예에 표시된 것처럼 2자리 언어 코드를 지정합니다.

<Description>
  <Text text="Two breakfast buffet certificates for
    each night of stay." language="en"/>
  <Text text="Deux certificats petit-déjeuner buffet
    pour chaque nuit de séjour." language="fr"/>
</Description>
<InternetIncluded> Optional boolean 패키지에 무료 인터넷 액세스가 포함되어 있다면 다른 패키지에는 이러한 편의시설이 포함되지 않습니다. 모든 객실에 무료 인터넷을 제공하는 호텔의 객실 번들에는 이 요소를 설정하지 마세요. 이 요소는 객실 내 유선 인터넷 또는 객실에서 사용할 수 없는 무선 인터넷에 적용되지 않습니다. 유효한 값은 0 (또는 false) 및 1(또는 true)입니다.
<Meals> Optional Object 이 패키지의 식사 정보가 포함됩니다.

<Meals> 요소는 다음과 같은 속성을 갖는 두 가지 선택적 하위 요소인 <Breakfast><Dinner>를 사용합니다.

  • included (필수): 요금에 조식/석식이 포함된 경우 1 (또는 true)로 설정하고 그렇지 않으면 0 또는 false로 설정합니다.
  • in_room (선택사항): 투숙객이 투숙하는 객실에서 조식 또는 석식을 즐길 수 있는 경우 1 (또는 true)로 설정합니다. 그렇지 않으면 0 (또는 false)로 설정합니다.
  • in_private_space (선택사항): 투숙객이 다른 손님과 연락을 피할 수 있는 공간 (숙박객 객실 제외)에서 조식/저녁 식사를 할 수 있는 경우 1 (또는 true)로 설정합니다. 그렇지 않으면 0 (또는 false)로 설정합니다.
  • buffet (선택사항): 조식/석식이 뷔페로 제공되는 경우 1 (또는 true)로 설정합니다. 그렇지 않으면 0(또는 false)로 설정합니다.

선택적 속성은 included가 true인 경우에만 사용됩니다.

식사 필터 (no meals, breakfast only, dinner only, breakfast and dinner)가 작동하려면 <Breakfast><Dinner> 모두에 included 속성을 제공해야 합니다.

<Name> Required string 패키지의 이름입니다. 이 값은 호텔의 방문 페이지에 표시되는 값과 일치해야 합니다. 이 요소의 값을 모두 대문자로 설정하지 마세요.

이 요소는 textlanguage의 두 속성이 있는 단일 하위 요소 <Text>를 사용합니다. text 속성은 설명이고 language 속성은 다음 예에 표시된 것처럼 2자리 언어 코드를 지정합니다.

<Name>
  <Text text="Bed and Breakfast" language="en"/>
  <Text text="Lit et petit déjeuné" language="fr"/>
</Name>
<Occupancy> Optional integer 객실 패키지를 대상으로하는 최대 투숙객 수입니다. 예를 들어 대규모 스위트룸은 물리적으로 6명을 수용할 수 있지만 최대 4명까지만 이용할 수 있습니다.

이 값은 회의실에서 실제로 수용할 수 있는 사용자 수인 <Capacity> 요소 이하여야 합니다.

<Occupancy> 값은 1에서 99 사이의 양의 정수여야 합니다.

이 요소를 <RoomBundle><PackageData>에서 모두 지정하면 <RoomBundle>의 값이 우선 적용됩니다.

참고:

<Occupancy>에는 투숙객의 유형(성인 또는 어린이)을 지정하는 <OccupancyDetails>가 함께 표시될 수 있습니다. 하위 요소의 구문과 설명은 <OccupancyDetails>를 참조하세요.
<PackageID> Required string

패키지의 고유 ID입니다. 이 ID를 사용하여 객실 번들 데이터를 가격 업데이트의 <Result> 블록과 일치시킵니다. 자세한 내용은 Room 번들 메타데이터를 참고하세요.

(또한 이 ID를 사용하여 Room 번들 데이터를 인라인으로 정의할 때 단일 트랜잭션 메시지에 사용되는 공통 Room 번들 정의를 참조할 수도 있습니다.)

<ParkingIncluded> Optional boolean 객실 패키지(무료)에 주차가 포함되어 있는지 여부입니다(이 호텔에서 주차는 유료 서비스임). 무료 주차를 제공하는 호텔의 경우 이 요소의 값을 지정하지 마세요.

유효한 값은 0 (또는 false) 및 1 (또는 true)입니다. 기본값은 false입니다.

<PhotoURL> Optional Object <RoomData><PhotoURL>와 동일하지만 패키지(예: 식사 사진)의 경우입니다.
<Refundable> Optional Object 요금을 전액 환불 가능으로 표시하거나 무료 취소 가능 여부를 표시할 수 있습니다. 제공하지 않으면 환불에 대한 정보가 표시되지 않습니다. <PackageData> 수준의 환불 정책이 <Result> 수준의 환불 정책보다 우선 적용됩니다. <Rates> 수준의 환불 정책이 <PackageData> 수준의 환불 정책보다 우선 적용됩니다. 거래 메시지 스키마를 직접 수정하지 않고도 대체 옵션을 통해 환불 가능한 가격을 사용자에게 강조 표시할 수 있습니다. 환불 가능 요금 정책 옵션에 대해 자세히 알아보세요.

다음 예에서는 모든 속성이 설정된 <Refundable> 요소를 보여줍니다.

<Refundable available="1" refundable_until_days="7"
refundable_until_time="18:00:00"/>

참고: 모든 속성을 설정하는 것이 좋습니다. 하나 이상의 속성이 설정되지 않은 경우 피드 상태 경고 메시지가 생성됩니다.

속성을 설정하지 않으면 요금이 환불 가능으로 표시되지 않습니다. 속성은 다음과 같습니다.

  • available: (필수) 요금이 전액 환불이 허용되는지 여부를 나타내려면 1 또는 true로 설정합니다. 그 외의 경우에는 0 또는 false로 설정합니다.
  • refundable_until_days: (availabletrue인 경우 필수) 체크인 전 전액 환불을 요청할 수 있는 일수를 지정합니다. refundable_until_days 값은 0에서 330 사이의 정수여야 합니다.
  • refundable_until_time: (availabletrue인 경우 적극 권장됨) 전액 환불 요청이 처리될 수 있는 가장 늦은 시간을 호텔 현지 시간으로 지정합니다. 이를 refundable_until_days와 함께 사용하여 예를 들어 '체크인 2일 전 오후 4:00까지 환불 가능합니다'를 지정할 수 있습니다. refundable_until_time를 설정하지 않으면 기본값은 자정입니다.

    이 속성의 값은 Time 형식을 사용합니다.

속성을 설정할 때는 다음 사항에 유의하세요.

  • available 또는 refundable_until_days를 설정하지 않으면 요금이 환불 가능으로 표시되지 않습니다.
  • available0 또는 false이면 다른 속성은 무시됩니다. 다른 속성 중 하나 또는 둘 다를 설정해도 요금이 환불 가능한 것으로 표시되지 않습니다.
<MembershipBenefits Included> Optional boolean 요금에는 숙박 기간 동안 제공되는 엘리트 등급 혜택이 포함됩니다. 다음과 같은 매개변수가 포함됩니다.
  • ProgramName: 엘리트 등급 프로그램의 이름
  • ProgramLevel: 프로그램의 수준입니다. 예: '골드'
  • NightlyValue (optional): 혜택의 1박 값입니다.
<CarRentalIncluded> Optional boolean 요금에는 숙박 기간 동안 무료 렌터카 서비스가 포함됩니다.
<MilesIncluded>> Optional boolean 요금에는 항공사 마일리지가 포함됩니다. 매개변수는 다음과 같습니다.
  • NumberofMiles: 운항 일정당 마일 수입니다.
  • Provider: 항공사 마일리지가 제공됩니다.
<OnPropertyCredit> Optional boolean 요금에는 숙박 시설 크레딧 (F&B, 리조트, 스파 등)이 포함됩니다. 매개변수:
  • Amount: 운항 일정별 크레딧 값(현지 통화)입니다.
<AirportTransportationIncluded> Optional Object 요금에는 인근 공항을 오가는 무료 교통편이 포함됩니다. 선택사항인 direction 속성은 교통수단의 방향을 지정합니다. 유효한 값은 다음과 같습니다.
    from: 공항에서 숙박 시설까지의 교통편이 제공됩니다. 방향을 지정하지 않을 경우 기본값입니다. to: 속성에서 공항까지 이동하는 교통편을 제공합니다. round_trip: 공항을 오가는 교통편이 제공됩니다.

싱글룸 패키지

다음 예에서는 숙박 인원이 2명 (성인 1명, 어린이 1명)인 객실 패키지를 정의하며 조식이 포함됩니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction timestamp="2017-07-18T16:20:00-04:00" id="42">
  <PropertyDataSet>
    <Property>1234</Property>
    <PackageData>
      <Occupancy>2</Occupancy>
      <OccupancyDetails>
        <NumAdults>1</NumAdults>
        <Children>
          <Child age="17"/>
        </Children>
      </OccupancyDetails>
      <PackageID>P54321</PackageID>
      <Name>
         <Text text="Breakfast Included" language="en"/>
         <Text text="Avec le petit déjeuner" language="fr"/>
      </Name>
      <Description>
        <Text text="Two certificates for continental
          breakfast will be provided." language="en"/>
        <Text text="Deux certificats pour le petit déjeuner
          continental seront fournis." language="fr"/>
      </Description>
      <BreakfastIncluded>1</BreakfastIncluded>
    </PackageData>
  </PropertyDataSet>
</Transaction>

Room 및 패키지 메타데이터

다음 예에서는 객실 및 패키지 메타데이터를 정의합니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction timestamp="2017-07-18T16:20:00-04:00" id="42">
  <PropertyDataSet>
    <Property>180054</Property>
    <RoomData>
      <RoomID>060773</RoomID>
      <Name>
        <Text text="Single Bed Room" language="en"/>
        <Text text="Chambre single" language="fr"/>
      </Name>
      <Description>
        <Text text="Non-smoking" language="en"/>
        <Text text="Pas de fumiers" language="fr"/>
      </Description>
      <PhotoURL>
        <Caption>
          <Text text="Living area" language="en"/>
          <Text text="Le chambre" language="fr"/>
        </Caption>
        <URL>http://www.foo.com/static/bar/image1234.jpg</URL>
      </PhotoURL>
    </RoomData>
    <PackageData>
      <PackageID>P54321</PackageID>
      <Name>
        <Text text="Breakfast Included" language="en"/>
        <Text text="Avec le petit déjeuner" language="fr"/>
      </Name>
      <Description>
        <Text text="Includes a delightful array of jams and jellies." language="en"/>
        <Text text="Comprend une délicieuse gamme de confitures et gelées." language="fr"/>
      </Description>
      <BreakfastIncluded>1</BreakfastIncluded>
    </PackageData>
  </PropertyDataSet>
</Transaction>

여러 객실 패키지

다음 예에서는 여러 Room 번들의 방 및 패키지 메타데이터를 정의합니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction timestamp="2017-07-18T16:20:00-04:00" id="42">
  <!-- A transaction message with room types result. -->
  <PropertyDataSet>
    <Property>12345</Property>
    <RoomData>
      <RoomID>single</RoomID>
      <Name>
        <Text text="Single room" language="en"/>
        <Text text="Chambre simple" language="fr"/>
      </Name>
      <Description>
        <Text text="A single room" language="en"/>
        <Text text="Le chambre simple" language="fr"/>
      </Description>
      <PhotoURL>
        <Caption>
          <Text text="Living area" language="en"/>
          <Text text="Le chambre" language="fr"/>
        </Caption>
        <URL>http://www.foo.com/static/bar/image1234.jpg</URL>
      </PhotoURL>
      <PhotoURL>
        <URL>http://www.foo.com/static/bar/image1235.jpg</URL>
      </PhotoURL>
      <Capacity>2</Capacity>
    </RoomData>
    <RoomData>
      <RoomID>double</RoomID>
      <Name>
        <Text text="Double room" language="en"/>
        <Text text="Chambre double" language="fr"/>
      </Name>
      <Occupancy>1</Occupancy>
    </RoomData>
    <PackageData>
      <PackageID>refundbreakfast</PackageID>
      <Name>
        <Text text="Refundable Room with Breakfast" language="en"/>
        <Text text="Chambre remboursable avec le petit déjeuner" language="fr"/>
      </Name>
      <Description>
        <Text text="Continental Breakfast" language="en"/>
        <Text text="Petit déjeuner continental" language="fr"/>
      </Description>
      <ChargeCurrency>hotel</ChargeCurrency>
      <Refundable available="1" refundable_until_days="3"/>
      <BreakfastIncluded>1</BreakfastIncluded>
    </PackageData>
    <PackageData>
      <PackageID>prepaid</PackageID>
      <Name>
        <Text text="Nonrefundable" language="en"/>
        <Text text="Non remboursable" language="fr"/>
      </Name>
      <Description>
        <Text text="Blah blah blad" language="en"/>
        <Text text="Le blah blah blad" language="fr"/>
      </Description>
      <Occupancy>2</Occupancy>
      <ChargeCurrency>web</ChargeCurrency>
      <Refundable available="0"/>
    </PackageData>
  </PropertyDataSet>
</Transaction>


요금이 포함된 객실 패키지

다음 예에서는 요금 기능이 있는 Room 번들의 객실 및 패키지 메타데이터를 정의합니다.

<Transaction timestamp="2010-04-24T20:44:56-04:00" id="TXNID">
  <PropertyDataSet>
    <Property>12345</Property>
    <RoomData>
     ...
    </RoomData>
<!-- definitions of PackageData types including rate features -->
    <PackageData>
      <PackageID>room_with_addl_benefits</PackageID>
      <Name>
        <Text text="Acme Hotels 2017 Promotion Package" language="en"/>
      </Name>
      <ChargeCurrency>hotel</ChargeCurrency>
      <BreakfastIncluded>1</BreakfastIncluded>
      <MembershipBenefitsIncluded>
        <ProgramName>
          <Text language="en" text="Marriott Rewards"/>
        </ProgramName>
        <ProgramLevel>
          <Text language="en" text="Platinum"/>
        </ProgramLevel>
      </MembershipBenefitsIncluded>
      <OnPropertyCredit>
        <Amount currency="USD">123.45</Amount>
      </OnPropertyCredit>
    </PackageData>
    <PackageData>
      <PackageID>room_with_miles</PackageID>
      <Name>
        <Text text="Room with Bundled Miles" language="en"/>
      </Name>
      <ChargeCurrency>hotel</ChargeCurrency>
      <MilesIncluded>
        <NumberOfMiles>1000</NumberOfMiles>
        <Provider>
          <Text language="en" text="United Airlines"/>
        </Provider>
      </MilesIncluded>
      <AirportTransportationIncluded direction="from"/>
    </PackageData>
  </PropertyDataSet>

<!-- The actual list of prices -->
  <Result>
…
  </Result>
</Transaction>

식사 및 사진

다음 예에서는 식사, 사진, 체크인/체크아웃 시간에 대한 객실 및 패키지 메타데이터를 정의합니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction timestamp="2017-07-18T16:20:00-04:00" id="42">
  <PropertyDataSet>
    <Property>1234</Property>
    <PackageData>
      <PackageID>PackageID_1</PackageID>
      <Name>
        <Text text="Meals Included" language="en"/>
      </Name>
      <PhotoURL>
        <Caption>
          <Text text="Breakfast" language="en"/>
          <Text text="朝食" language="ja"/>
        </Caption>
        <URL>http://example.com/static/bar/image1234.jpg</URL>
      </PhotoURL>
      <Meals>
        <!-- Guests can choose to have breakfast in their room or in another
        space to avoid contact with other guests. -->
        <Breakfast included="1" in_room="1" in_private_space="1"/>
        <Dinner included="1" buffet="1"/>
      </Meals>
      <CheckinTime>15:00</CheckinTime>
      <CheckoutTime>11:00</CheckoutTime>
    </PackageData>
  </PropertyDataSet>
</Transaction>

아침 식사

<?xml version="1.0" encoding="UTF-8"?>
<Transaction timestamp="2017-07-18T16:20:00-04:00" id="42">
  <PropertyDataSet>
    <Property>1234</Property>
    <PackageData>
      <PackageID>PackageID_1</PackageID>
      <Name>
        <Text text="Breakfast Included" language="en"/>
      </Name>
      <PhotoURL>
        <Caption>
          <Text text="Breakfast" language="en"/>
          <Text text="朝食" language="ja"/>
        </Caption>
        <URL>http://example.com/static/bar/image1234.jpg</URL>
      </PhotoURL>
      <Meals>
        <Breakfast included="true"/>
        <!-- Dinner not included needs to be explicitly specified -->
        <Dinner included="false"/>
      </Meals>
      <CheckinTime>15:00</CheckinTime>
      <CheckoutTime>11:00</CheckoutTime>
    </PackageData>
  </PropertyDataSet>
</Transaction>

<Result>

<Transaction> 메시지의 가격 및 재고 업데이트를 위한 컨테이너입니다.

<Result> 요소는 트랜잭션 메시지 XML 계층 구조의 다음 위치에 표시됩니다.

+ <Transaction>
    + <PropertyDataSet>  // Room and package metadata
        + <Property>
        + <RoomData>
        + <PackageData>
    + <Result>           // Pricing and availability
        + <Rates>
        + <RoomBundle>
        + ...

<Result>를 사용하여 객실 가격을 설정 또는 업데이트하고 사용 가능한 인벤토리를 정의합니다. 이 요소에 정의된 항목은 일반적으로 <PackageData><RoomData>에 정의된 객실 또는 패키지에 관한 여행 일정과 상관없는 메타데이터 (예: 설명 또는 편의시설 세트)를 참조합니다.

일반적으로 가격 업데이트가 포함된 거래 메시지를 자주 보냅니다. 정확한 업로드 빈도 및 방법은 전송 모드에 따라 다릅니다.

인벤토리 삭제에 설명된 대로 거래 메시지에서 <Result>를 사용하여 여행 일정을 삭제할 수 있습니다. 거래 메시지를 사용하여 가격 및 이용 가능 여부를 업데이트하는 자세한 방법은 인벤토리 추가 및 업데이트를 참조하세요.

메시지 크기가 100MB를 넘지 않는 한, 단일 트랜잭션 메시지에는 여러 <Result> 요소가 포함될 수 있습니다.

문법

<Result> 요소는 다음 구문을 사용합니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction ... >
  <Result>
    <!-- Required -->
    <Property>hotel_ID</Property>
    <!-- Required -->
    <Checkin>YYYY-MM-DD</Checkin>
    <!-- Required -->
    <Nights>number_of_nights</Nights>

    <Baserate currency="currency_code">price</Baserate>
    <!-- Only required when <Baserate> contains a real price -->
    <Tax currency="currency_code">tax_amount</Tax>
    <!-- Only required when <Baserate> contains a real price  -->
    <OtherFees currency="currency_code">fee_amount</OtherFees>
    <Refundable available="[false|true]" refundable_until_days="number_of_days"
      refundable_until_time="time"/>

    <RoomID>room_ID</RoomID>
    <PackageID>package_ID</PackageID>
    <ExpirationTime>expiration_time</ExpirationTime>
    <ChargeCurrency>[deposit|hotel|installments|web]</ChargeCurrency>

    <Occupancy>max_number_of_intended_occupants</Occupancy>
    <!-- For Baserate, occupancy value must be greater than or equal to 2.
         If a value is not provided for occupancy, it defaults to 2. -->
    <OccupancyDetails>occupancy_info</OccupancyDetails>

    <Rates>...</Rates>

    <RoomBundle>...</RoomBundle>

    <AllowablePointsOfSale>
      <PointOfSale id="landing_page_identifier"/>
      ...
    </AllowablePointsOfSale>

    <Custom[1-5]>custom_value</Custom[1-5]>
  </Result>
  ...
  </Transaction>

특성

<Result> 요소는 다음과 같은 속성을 포함합니다.

속성 필수 여부 유형 설명
mergeable Optional boolean 기본적으로 특정 호텔과 여행 일정 쌍의 새 가격은 Google 캐시에 있는 이전 (만료되지 않은) 가격을 덮어씁니다. 병합 가능한 속성을 사용하면 이전 가격 정보를 삭제하지 않고도 Google 캐시에 추가 가격을 저장할 수 있습니다. 컨텍스트 응답이 포함된 실시간 가격 쿼리는 트랜잭션 메시지 응답에 관계없이 항상 이 속성을 true로 설정합니다.

하위 요소

<Result> 요소에는 다음과 같은 하위 요소가 있습니다.

하위 요소 필수 여부 유형 설명
<AllowablePointsOfSale> Optional Object 호텔에 해당하는 하나 이상의 방문 페이지입니다. 방문 페이지는 최종 사용자를 위해 예약 프로세스를 처리할 수 있는 웹사이트입니다. 특정 방문 페이지를 명시적으로 포함하고 다른 방문 페이지는 제외하려면 방문 페이지 파일에서 <PointOfSale> 요소의 id 속성과 일치하는 <AllowablePointsOfSale> 요소를 하나 이상 추가합니다.

이 요소를 포함하지 않으면 방문 페이지 파일에 정의된 모든 방문 페이지가 객실 예약에 사용될 수 있는 것으로 간주됩니다. 자세한 내용은 방문 페이지 파일 구문을 참조하세요.

<Baserate> Optional float

숙박 요금입니다. 이 요소의 값은 다음을 반영해야 합니다.

  • 개인용 객실의 경우 최저가 2인실 요금을 설정하세요.
  • 공용 채팅방의 경우 비워두고 <RoomBundle>를 사용합니다.
  • 평균 숙박 일수가 아닌 총 숙박 기간입니다.

숙박 일정에 객실을 사용할 수 없는 경우 <Baserate>를 생략하거나 -1로 설정해야 하며, <Unavailable>을(를) 이용할 수 없는 알려진 이유와 함께 지정해야 합니다.

객실 패키지를 삭제하려면 객실 패키지 삭제하기의 안내를 따르세요.

<Baserate>에는 쉼표 (,) 또는 마침표 (.)와 같은 숫자 그룹화 기호가 포함되면 안 됩니다. 항상 마침표 (.)를 소수점 기호로 사용하여 분수를 구분하세요. 예를 들어 $1,200.40을 다음과 같이 나타냅니다.

<Baserate currency="USD">1200.40</Baserate>

<Baserate> 요소는 다음과 같은 선택적 속성을 사용합니다.

  • all_inclusive: 이 요금에 세금과 수수료가 포함되어 있는지를 나타내는 불리언입니다. 일반적으로 미국 및 캐나다 최종 사용자의 경우 이 값을 false로 설정하고 <Tax><OtherFees> 요소의 값을 제공합니다. 올인클루시브 가격을 사용하는 경우 미국 및 캐나다 사용자의 세금과 수수료가 분리되지 않은 경우에는 등록정보에 표시되지 않을 수 있습니다.

    다른 모든 최종 사용자의 경우 일반적으로 기본 요금에 세금 및 수수료를 포함하고 all_inclusive 속성 값을 true로 설정합니다. 자세한 내용은 세금 및 수수료 정책을 참고하세요.

    기본값은 false입니다.

  • currency: 3자리 통화 코드입니다. 예를 들어 미국 달러의 경우 USD입니다.
<ChargeCurrency> Optional enum 사용자가 예약 비용을 지불하는 시기 및 장소 이 요소는 호텔 가격의 경우 <Result> 요소 또는 객실 번들의 경우 <PackageData> 블록에서 트랜잭션 메시지에 사용할 수 있습니다.

유효한 값은 다음과 같습니다.

  • web: 예약 시 사용자에게 온라인으로 청구됩니다. 기본값입니다. 실제 방문 페이지는 방문 페이지 파일에 의해 정의되며 사용자의 통화, 위치, 언어 또는 기타 요소의 영향을 받을 수 있습니다.
  • hotel: 호텔에 체크인할 때 사용자에게 요금이 청구됩니다. 항상 호텔의 통화로 결제해야 한다면 <ChargeCurrency>의 값을 hotel로 설정하세요. 실제 방문 페이지는 사용자의 통화로 영향을 받지 않습니다.
  • deposit: 사용자에게 즉시 일부 요금이 청구되고 나머지는 보통 사용자가 호텔에서 체크아웃할 때 나중에 청구됩니다.
  • installments: 총 합계의 초기 비율이 사용자에게 청구되고 정해진 기간에 정기적으로 설정된 잔액을 지불해야 합니다.

기본값은 web입니다.

<Checkin> Required Date 날짜 형식을 사용한 운항 일정의 체크인 날짜입니다. <Nights> 요소와 <Checkin> 요소의 조합이 여행 일정을 구성합니다.
<Custom[1‑5]> Optional string 호텔과 관련된 추가 데이터를 전달하는 데 사용할 수 있는 커스텀 필드를 정의합니다. 다음 요소 이름으로 최대 5개의 맞춤 값을 전달할 수 있습니다.
  • <Custom1>
  • <Custom2>
  • <Custom3>
  • <Custom4>
  • <Custom5>

<Custom> 요소를 사용하면 임의의 데이터를 전달할 수 있습니다. 예를 들어 이 필드에 값을 지정하면 방문 페이지 파일에서 이 값을 사용하여 방문 페이지의 맞춤 URL을 구성할 수 있습니다. 맞춤 입력란당 글자 수가 200자(영문 기준)로 제한됩니다. 자세한 내용은 방문 페이지 파일 을 참조하세요.

<Rate> 요소에 제공된 <Custom> 요소는 <RoomBundle> 요소에 상속되지 않습니다. 각 <RoomBundle>에서 개별적으로 <Custom> 속성을 정의해야 합니다.

<ExpirationTime> Optional DateTime 가격이 만료된 것으로 간주되는 날짜 및 시간입니다 (최소 3시간).

가격 책정 구조에 중요하지 않은 경우 만료 타임스탬프는 제공하지 않는 것이 좋습니다.

Google에서는 만료된 가격을 제공하지 않으며 가격이 만료된 운항 일정은 실시간 가격 쿼리를 사용할 수 있게 됩니다.

<Nights> Required integer 숙박 일정의 숙박 일수입니다. <Nights> 요소의 값은 양의 정수여야 합니다. <Nights><Checkin>의 조합으로 여행 일정이 구성됩니다.
<OtherFees> Optional float 객실의 최종 가격에 영향을 미치는 기본 요금 및 세금 외의 수수료입니다. <OtherFees> 요소는 수수료의 3글자 통화 코드를 정의하는 단일 필수 속성인 currency를 사용합니다. USD을 예로 들 수 있습니다.

<Baserate>이 0보다 크면 <OtherFees> 요소가 필요합니다.

<Occupancy> Optional integer 최대 숙박 인원을 지정합니다. <Occupancy><Result> 아래에 표시되면 2 이상을 지정해야 합니다. <Occupancy>에는 성인 또는 어린이 투숙객의 유형을 지정하는 <OccupancyDetails>가 함께 제공될 수 있습니다. 하위 요소의 구문과 설명은 <OccupancyDetails>를 참고하세요. <Occupancy> 요소가 제공되지 않으면 숙박 인원이 기본적으로 2로 설정됩니다.

참고: 2인실이 아닌 가격을 전송하는 기능을 사용 설정하려면 지원팀에 문의하세요.

<PackageID> Optional string 사전 정의된 패키지 데이터에 매핑할 패키지의 고유 ID입니다. 또한 PACKAGE-ID 방문 페이지 변수를 채우는 데에도 사용됩니다. 자세한 내용은 Room 번들 메타데이터를 참고하세요.
<Property> Required string 관련 데이터 (가격, 여행 일정, 객실 패키지 또는 메타데이터)의 영향을 받는 호텔의 ID입니다. 이 요소의 값은 문자열이어야 합니다. 이 요소의 값은 호텔 목록 피드에 정의한 등록정보 <id>과 일치해야 합니다.
<Rates> Optional <Rates> 하나 이상의 <Rate> 블록의 컨테이너입니다. <Rates>의 각 <Rate>은 객실/여행 일정 조합의 다른 가격을 정의합니다.

동일한 객실/여행 일정 조합에 여러 요금이 있는 경우에만 <Rates> 요소를 사용하세요. 예를 들어 조건부 요금, 특별 요금 또는 객실 번들의 조건부 요금을 여러 개 정의할 수 있습니다.

<Refundable> Optional Object 요금을 전액 환불 가능으로 표시하거나 무료 취소 가능 여부를 표시할 수 있습니다. 제공하지 않으면 환불에 대한 정보가 표시되지 않습니다. <PackageData> 수준의 환불 정책이 <Result> 수준의 환불 정책보다 우선 적용됩니다. <Rates> 수준의 환불 정책이 <PackageData> 수준의 환불 정책보다 우선 적용됩니다. 거래 메시지 스키마를 직접 수정하지 않고도 대체 옵션을 통해 환불 가능한 가격을 사용자에게 강조 표시할 수 있습니다. 환불 가능 요금 정책에 대해 자세히 알아보세요.

다음 예에서는 모든 속성이 설정된 <Refundable> 요소를 보여줍니다.

<Refundable available="1" refundable_until_days="7"
refundable_until_time="18:00:00"/>

참고: 모든 속성을 설정하는 것이 좋습니다. 하나 이상의 속성이 설정되지 않은 경우 피드 상태 경고 메시지가 생성됩니다.

속성을 설정하지 않으면 요금이 환불 가능으로 표시되지 않습니다. 속성은 다음과 같습니다.

  • available: (필수) 요금이 전액 환불이 허용되는지 여부를 나타내려면 1 (또는 true)로 설정합니다. 그렇지 않으면 0 (또는 false)로 설정합니다.
  • refundable_until_days: (availabletrue인 경우 필수) 체크인 전 전액 환불을 요청할 수 있는 일수를 지정합니다. refundable_until_days 값은 0에서 330 사이의 정수여야 합니다.
  • refundable_until_time: (availabletrue인 경우 적극 권장됨) 전액 환불 요청이 처리될 수 있는 가장 늦은 시간을 호텔 현지 시간으로 지정합니다. 이를 refundable_until_days와 함께 사용하여 예를 들어 '체크인 2일 전 오후 4:00까지 환불 가능합니다'를 지정할 수 있습니다. refundable_until_time를 설정하지 않으면 기본값은 자정입니다.

    이 속성의 값은 Time 형식을 사용합니다.

속성을 설정할 때는 다음 사항에 유의하세요.

  • available 또는 refundable_until_days를 설정하지 않으면 요금이 환불 가능으로 표시되지 않습니다.
  • available0 (또는 false)이면 다른 속성은 무시됩니다. 다른 속성 중 하나 또는 둘 다를 설정해도 요금이 환불 가능한 것으로 표시되지 않습니다.
<RoomBundle> Optional <RoomBundle> 객실의 실제 가격 설명, 편의시설 포장, 특정 호텔 및 여행 일정의 일부 구매 정책 세부정보에 대한 정보를 제공하는 컨테이너입니다.

일반적으로 이 요소를 사용하여 기본 객실과 동일한 숙박 시설 내의 여러 유형의 객실의 가격을 정의합니다. 객실 번들 설명을 인라인으로 정의할 수도 있지만, 이 정보를 정의하려면 별도의 트랜잭션 메시지를 사용해야 합니다. Google에서는 향후 모든 가격 업데이트에서 사용자가 메타데이터를 반복하는 대신 참조할 수 있도록 메타데이터를 저장합니다.

<RoomID> Optional string 사전 정의된 방 데이터에 매핑할 방의 고유 ID입니다. 또한 PARTNER-ROOM-ID 방문 페이지 변수를 채우는 데 사용됩니다. 자세한 내용은 Room 번들 메타데이터를 참고하세요.
<Tax> Optional float 객실의 최종 가격에 대해 계산되는 세금입니다. <Tax> 요소는 3글자로 된 세금의 통화 코드를 정의하는 단일 필수 속성인 currency를 사용합니다. USD을 예로 들 수 있습니다. <Baserate>이 0보다 크면 <Tax> 요소가 필요합니다.
<Unavailable> Optional Object 운항 일정을 예약할 수 없음을 나타냅니다. 운항 일정을 사용할 수 없었던 자세한 이유를 설명하는 컨테이너 역할을 합니다. 다음 중 하나 이상의 비가용성 이유가 <Unavailable> 태그 아래에 중첩되어 있을 수 있습니다.
  • <NoVacancy/>: 1박 이상의 숙박 기간 동안 더 이상 객실을 판매할 수 없습니다.
  • <MinNightStay value=N/>: 숙박 일정이 숙박 날짜의 최소 숙박 일수 N 미만입니다.
  • <MaxNightStay value=N/>: 숙박 일정이 숙박 날짜의 최대 숙박 일수 N를 초과했습니다.
  • <MinAdvancePurchase value=N/>: 일정이 숙박 날짜의 최소 사전 예약 기간인 N보다 짧았습니다.
  • <MaxAdvancePurchase value=N/>: 숙박 일정이 숙박 날짜의 최대 사전 예약 기간인 N를 초과했습니다.
  • <ClosedToArrival/>: 숙박 일정의 도착 날짜에 체크인할 수 없습니다.
  • <ClosedToDeparture/>: 숙박 일정의 출발 날짜에 체크아웃할 수 없는 숙박 시설입니다.
  • <PropertyClosed first_open="YYYY-MM-DD" first_closed="YYYY-MM-DD"/>: 숙박 시설이 일부 또는 전체 숙박 기간 동안 폐쇄됩니다. 권장 속성 first_openfirst_closed은 각각 숙박 시설이 영업 중인 도착 날짜 또는 폐업한 도착 날짜보다 크거나 같은 첫 번째 날짜를 지정합니다. 숙박 시설에 도착한 시간이 지난 후에 닫는 경우 first_open는 도착일과 같고 first_closed은 숙박 시설이 닫히는 날짜여야 합니다. 도착 날짜에 폐업하는 숙박 시설의 경우 first_closed는 도착 날짜와 같고 first_opened는 해당 숙박 시설이 열리는 다음 날짜여야 합니다.
  • <NotFetched/>: 다운스트림 데이터 소스에서 숙박 일정 가격을 제공하지 않았습니다.
  • <InvalidProperty/>: 요청된 속성 식별자가 인식되지 않았습니다.
  • <InvalidOccupancy/>: 요청된 숙박 인원을 속성에서 지원하지 않습니다.
  • <PriceIssue/>: 가격 문제로 인해 전송되지 않았습니다.
  • <InternalError reason=""/>: 열거되지 않은 오류가 발생했습니다. 선택사항인 reason 속성은 오류를 텍스트로 보고할 수 있습니다.
  • <OtherRestriction restriction=""/>: 일부 나열되지 않은 예약 제한으로 인해 운항 일정을 사용할 수 없습니다. 선택적 제한 속성을 사용하면 제한사항을 텍스트로 보고할 수 있습니다.

여러 속성 예

다음 예에서는 두 숙박 시설에 대한 하나의 숙박 일정과 가격 책정을 정의합니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction timestamp="2017-07-23T16:20:00-04:00" id="42">
  <Result>
    <Property>060773</Property>
    <RoomID>RoomType101</RoomID>
    <PackageID>Package101</PackageID>
    <Checkin>2018-06-10</Checkin>
    <Nights>2</Nights>
    <Baserate currency="USD">278.33</Baserate>
    <Tax currency="USD">25.12</Tax>
    <OtherFees currency="USD">2.00</OtherFees>
    <AllowablePointsOfSale>
      <PointOfSale id="site1"/>
    </AllowablePointsOfSale>
  </Result>
  <Result>
    <Property>052213</Property>
    <RoomID>RoomType101</RoomID>
    <PackageID>Package101</PackageID>
    <Checkin>2018-06-10</Checkin>
    <Nights>2</Nights>
    <Baserate currency="USD">299.98</Baserate>
    <Tax currency="USD">26.42</Tax>
    <OtherFees currency="USD">2.00</OtherFees>
    <AllowablePointsOfSale>
      <PointOfSale id="otto"/>
      <PointOfSale id="simon"/>
    </AllowablePointsOfSale>
  </Result>
</Transaction>

이 예시에는 설명, 사진 및 자막, 회의실 이름, 수용 인원 등 회의실에 대한 세부정보가 표시되지 않습니다.

Google이 저장하는 별도의 거래 메시지에서 이 정보를 한 번 정의할 수 있습니다. 그러면 이후의 모든 가격 책정 및 인벤토리 업데이트에서 이를 참조할 수 있습니다. 자세한 내용은 Room 번들 메타데이터를 참고하세요.

다중 요금의 예

다음 예에서는 다양한 숙박 인원에 대한 여러 요금이 포함된 단일 숙박 일정과 숙박 시설을 정의합니다. <Rates> 요소를 활용하여 특정 숙박 시설에 대한 다중 가격 책정을 제공할 수 있습니다. 다음 예는 공유숙박 (VR) 속성에도 유용합니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction timestamp="2020-07-23T16:20:00-04:00" id="42">
  <Result>
    <Property>1234</Property>
    <Checkin>2021-01-13</Checkin>
    <Nights>9</Nights>
    <Baserate currency="USD">3196.1</Baserate>
    <Tax currency="USD">559.49</Tax>
    <OtherFees currency="USD">543.34</OtherFees>
    <Occupancy>2</Occupancy>
    <Rates>
      <Rate>
        <Baserate currency="USD">3196.1</Baserate>
        <Tax currency="USD">559.49</Tax>
        <OtherFees currency="USD">543.34</OtherFees>
        <Occupancy>1</Occupancy>
      </Rate>
      <Rate>
        <Baserate currency="USD">3196.1</Baserate>
        <Tax currency="USD">559.49</Tax>
        <OtherFees currency="USD">543.34</OtherFees>
        <Occupancy>3</Occupancy>
      </Rate>
      <Rate>
        <Baserate currency="USD">3196.1</Baserate>
        <Tax currency="USD">559.49</Tax>
        <OtherFees currency="USD">543.34</OtherFees>
        <Occupancy>4</Occupancy>
      </Rate>
      <Rate>
        <Baserate currency="USD">3196.1</Baserate>
        <Tax currency="USD">559.49</Tax>
        <OtherFees currency="USD">543.34</OtherFees>
        <Occupancy>5</Occupancy>
      </Rate>
      <Rate>
        <Baserate currency="USD">3196.1</Baserate>
        <Tax currency="USD">559.49</Tax>
        <OtherFees currency="USD">543.34</OtherFees>
        <Occupancy>6</Occupancy>
      </Rate>
    </Rates>
  </Result>
</Transaction>

사용할 수 없는 경우의 예

다음 예에서는 다운스트림 채널에서 이용 가능 여부를 가져올 수 없는 숙박 일정, 두 번째 일정이 지정된 날짜에 대해 최소 숙박 일수보다 낮고 이미 예약된 숙박 일정, 도착일에 숙박 시설이 종료되었지만 숙박 기간 중에 열리는 세 번째 일정을 정의합니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction timestamp="2017-07-23T16:20:00-04:00" id="42">
  <Result>
    <Property>060773</Property>
    <Checkin>2018-06-10</Checkin>
    <Nights>2</Nights>
    <Unavailable>
      <NotFetched/>
    </Unavailable>
  </Result>
  <Result>
    <Property>073313</Property>
    <Checkin>2018-06-10</Checkin>
    <Nights>2</Nights>
    <Unavailable>
      <NoVacancy/>
      <MinNightStay value=3/>
    </Unavailable>
  </Result>
  <Result>
    <Property>052213</Property>
    <Checkin>2018-06-10</Checkin>
    <Nights>10</Nights>
    <Unavailable>
      <PropertyClosed first_open="2018-06-15" first_closed="2018-06-10"/>
    </Unavailable>
  </Result>
</Transaction>

<Rates>

하나 이상의 <Rate> 블록의 컨테이너입니다. <Rates>의 각 <Rate>은 객실 또는 여행 일정 조합의 다른 가격을 정의합니다.

동일한 객실 또는 숙박 일정 조합에 대한 요금이 여러 개 있는 경우에만 <Rates> 요소를 사용하세요. 예를 들어 조건부 요금, 특별 요금 또는 객실 번들의 조건부 요금을 여러 개 정의할 수 있습니다.

<Rates> 요소는 트랜잭션 메시지 XML 계층 구조의 다음 위치에 표시됩니다.

+ <Transaction>
    + <PropertyDataSet>  // Room and package metadata
        + <Property>
        + <RoomData>
        + <PackageData>
    + <Result>         // Pricing and availability
        + <Rates>
        + <RoomBundle> (Can also contain <Rates>)
        + ...

<Rate>에 설정된 값은 상위 <Result> 또는 <RoomBundle> 요소의 가격 관련 값을 재정의합니다. <Rate>에 설정되어 있지 않으면 상위 요소에서 값을 상속받습니다. <AllowablePointsofSale>만 <RoomBundle> 요소에 상속됩니다.

문법

<Rates> 요소는 다음 구문을 사용합니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction ... >
  <Result>
    <Rates>
      <Rate rate_rule_id="rate_rule_id">
        <Baserate currency="currency_code">price</Baserate>
        <Tax currency="currency_code">tax_amount</Tax>
        <OtherFees currency="currency_code">fee_amount</OtherFees>
        <ExpirationTime>expiration_time</ExpirationTime>
        <Refundable available="[false|true]" refundable_until_days="number_of_days"
        refundable_until_time="time"/>
        <ChargeCurrency>[deposit|hotel|installments|web]</ChargeCurrency>
        <AllowablePointsOfSale>
          <PointOfSale id="landing_page_identifier"/>
        </AllowablePointsOfSale>
        <Occupancy>max_number_of_intended_occupants</Occupancy>
        <OccupancyDetails> <!-- optional info about the types of guests,
      whether adults or children --></OccupancyDetails>
          ...
        <Custom[1-5]>custom_value</Custom[1-5]>
      </Rate>
      ...
    </Rates>
  </Result>
  ...
</Transaction>

특성

<Rates> 요소는 다음과 같은 속성을 포함합니다.

속성 필수 여부 설명
rate_rule_id Optional 조건부 요금의 경우 이 ID는 요금 규칙 정의 파일의 정의와 요금을 일치시킵니다. 이 필드의 글자 수 제한은 40자(영문 기준)입니다.

하위 요소

<Rates> 요소에는 다음과 같은 하위 요소가 있습니다.

하위 요소 필수 여부 유형 설명
<AllowablePointsOfSale> Optional Object 호텔에 해당하는 하나 이상의 방문 페이지입니다. 이 요소는 <Result><AllowablePointsOfSale>와 동일한 구문을 사용합니다.
<Baserate> Required float 숙박 요금입니다. 이 요소는 <Result><Baserate>와 동일한 구문을 사용합니다.

참고: <Rate> 아래의 <Baserate> 하위 요소는 사용할 수 없는 것으로 정의할 수 없습니다.

<ChargeCurrency> Optional enum 사용자가 예약 비용을 지불하는 시기 및 장소 이 요소는 <Result><ChargeCurrency>와 동일한 구문을 사용합니다.
<Custom[1‑5]> Optional string 호텔과 관련된 추가 데이터를 방문 페이지로 전달하는 데 사용할 수 있는 맞춤 필드입니다. 이 요소는 <Result><Custom[1‑5]>와 동일한 구문을 사용합니다. 커스텀 필드당 200자(영문 기준)로 제한됩니다. 자세한 내용은 방문 페이지 파일을 참조하세요.

<Custom> 요소가 <Result> 요소에 제공되면 <RoomBundle> 요소에서 상속되지 않으며 각 <RoomBundle>에 관해 개별적으로 정의되거나 필요한 경우 <PackageData>에 포함할 수 있습니다.

<ExpirationTime> Optional DateTime 요금이 만료된 것으로 간주되는 날짜 및 시간입니다. 이 요소는 <Result><ExpirationTime>와 동일한 구문을 사용합니다.
<Occupancy> Optional integer

최대 숙박 인원을 지정합니다. <Occupancy>에는 투숙객의 유형 (성인 또는 어린이)을 지정하는 <OccupancyDetails>가 함께 표시될 수 있습니다. 하위 요소의 구문과 설명은 <OccupancyDetails>를 참고하세요.

<OtherFees> Required float 객실의 최종 가격에 영향을 미치는 기본 요금 및 세금을 제외한 수수료입니다. 이 요소는 <Result><OtherFees>와 동일한 구문을 사용합니다.
<Refundable> Optional Object 요금을 전액 환불 가능으로 표시하거나 무료 취소 가능 여부를 표시할 수 있습니다. 제공하지 않으면 환불에 대한 정보가 표시되지 않습니다. <PackageData> 수준의 환불 정책이 <Result> 수준의 환불 정책보다 우선 적용됩니다. <Rates> 수준의 환불 정책이 <PackageData> 수준의 환불 정책보다 우선 적용됩니다. 거래 메시지 스키마를 직접 수정하지 않고도 대체 옵션을 통해 환불 가능한 가격을 사용자에게 강조 표시할 수 있습니다. 환불 가능 요금 정책 옵션에 대해 자세히 알아보세요.

다음 예에서는 모든 속성이 설정된 <Refundable> 요소를 보여줍니다.

<Refundable available="1" refundable_until_days="7"
refundable_until_time="18:00:00"/>

참고: 모든 속성을 설정하는 것이 좋습니다. 하나 이상의 속성이 설정되지 않은 경우 피드 상태 경고 메시지가 생성됩니다.

속성을 설정하지 않으면 요금이 환불 가능으로 표시되지 않습니다. 속성은 다음과 같습니다.

  • available: (필수) 요금이 전액 환불이 허용되는지 여부를 나타내려면 1 (또는 true)로 설정합니다. 그렇지 않으면 0 (또는 false)로 설정합니다.
  • refundable_until_days: (availabletrue인 경우 필수) 체크인 전 전액 환불을 요청할 수 있는 일수를 지정합니다. refundable_until_days 값은 0에서 330 사이의 정수여야 합니다.
  • refundable_until_time: (availabletrue인 경우 적극 권장됨) 전액 환불 요청이 처리될 수 있는 가장 늦은 시간을 호텔 현지 시간으로 지정합니다. 이를 refundable_until_days와 함께 사용하여 예를 들어 '체크인 2일 전 오후 4:00까지 환불 가능합니다'를 지정할 수 있습니다. refundable_until_time를 설정하지 않으면 기본값은 자정입니다.

    이 속성의 값은 Time 형식을 사용합니다.

속성을 설정할 때는 다음 사항에 유의하세요.

  • available 또는 refundable_until_days를 설정하지 않으면 요금이 환불 가능으로 표시되지 않습니다.
  • available0 (또는 false)이면 다른 속성은 무시됩니다. 다른 속성 중 하나 또는 둘 다를 설정해도 요금이 환불 가능한 것으로 표시되지 않습니다.
<Tax> Required float 객실의 최종 가격에 대해 계산되는 세금입니다. 이 요소는 <Result><Tax>와 동일한 구문을 사용합니다.

기본 요율 및 조건부 요금

다음 예는 기본 요금과 조건부 요금이 포함된 거래 메시지를 보여줍니다.

<?xml version="1.0" encoding="UTF-8" ?>
<Transaction timestamp="2023-05-18T16:20:00-04:00" id="42">
  <Result>
    <Property>1234</Property>
    <Checkin>2023-04-10</Checkin>
    <Nights>1</Nights>

    <Baserate currency="USD">200.00</Baserate>
    <Tax currency="USD">20.00</Tax>
    <OtherFees currency="USD">1.00</OtherFees>

    <Rates>
      <!-- The rate_rule_id is required when using conditional rates -->
      <Rate rate_rule_id="mobile">
        <!-- Override base rate and taxes for conditional rates -->
        <Baserate currency="USD">180.00</Baserate>
        <Tax currency="USD">18.00</Tax>
        <!-- NOTE: OtherFees is inherited from the above setting -->
        <Custom1>ratecode123</Custom1>
      </Rate>
    </Rates>

  </Result>
</Transaction>

여러 조건부 요금

다음 예에서는 <RoomBundle> 내에 기본 요율과 여러 조건부 요금을 정의합니다.

<?xml version="1.0" encoding="UTF-8" ?>
<Transaction timestamp="2023-05-18T16:20:00-04:00" id="42">
  <Result>
    <Property>1234</Property>
    <Checkin>2023-04-10</Checkin>
    <Nights>2</Nights>
    <!-- When Google receives new room bundle information for an itinerary, all
    previous room bundle pricing is dropped from Google's cache. Thus, if you
    want to delete a specific room bundle from Google's cache, you may do so
    by simply not providing that specific room bundle in subsequent transaction
    messages. -->
    <RoomBundle>
     ...
      <!-- RoomID is required, PackageID is recommended. -->
      <RoomID>5</RoomID>
      <PackageID>ABC</PackageID>
      <!-- Baserate is required. -->
      <Baserate currency="USD">275.00</Baserate>
      <Tax currency="USD">27.50</Tax>
      <OtherFees currency="USD">2.00</OtherFees>

      <!-- RatePlanID is optional and represents the unique identifier for a
      room and package data combination. We strongly recommend using RatePlanID
      as a variable to build your dynamic landing page (formerly Point of Sale)
      URL. For details, see Using Variables and Conditions. -->
      <RatePlanID>5-ABC</RatePlanID>

      <!-- Occupancy is mandatory for RoomBundle elements. -->
      <!-- Elements below will get inherited to nested rate elements. -->
      <Occupancy>2</Occupancy>
      <OccupancyDetails>
        <NumAdults>2</NumAdults>
      </OccupancyDetails>
      <InternetIncluded>1</InternetIncluded>


      <!-- Rate rule "mobile" overrides chargeCurrency, "us_or_gb" doesn't. -->
      <ChargeCurrency>web</ChargeCurrency>
      <Custom1>ratebasic</Custom1>
      <!-- Neither rate overrides Custom2. -->
      <Custom2>ratebasic</Custom2>

      <Rates>
        <Rate rate_rule_id="mobile">
          <Baserate currency="USD">258.33</Baserate>
          <Tax currency="USD">25.83</Tax>
          <OtherFees currency="USD">1.00</OtherFees>
          <!-- The value below overrides ChargeCurrency from roombundle. -->
          <ChargeCurrency>hotel</ChargeCurrency>
          <!-- The value below overrides Custom1 from roombundle. -->
          <Custom1>ratecode321</Custom1>
          <!-- Custom2 is inherited from roombundle. -->
        </Rate>
        <Rate rate_rule_id="us_or_gb">
          <Baserate currency="USD">268.33</Baserate>
          <Tax currency="USD">26.83</Tax>
          <OtherFees currency="USD">1.00</OtherFees>
          <!-- The value below overrides Custom1 from roombundle. -->
          <Custom1>ratecode432</Custom1>
          <!-- Custom2 is inherited from roombundle. -->
        </Rate>
      </Rates>
    </RoomBundle>
  </Result>
</Transaction>

<RoomBundle>

<Transaction> 메시지에서 <Result>의 하위 요소로 객실 번들의 요금 및 예약 가능 여부를 정의합니다. 각 패키지 또는 운항 일정 조합에 대해 별도의 요소를 정의하세요. 객실 번들의 패키지 및 약관을 정의하려면 <RoomData>을 사용하세요.

<RoomBundle> 요소는 트랜잭션 메시지 XML 계층 구조의 다음 위치에 표시됩니다.

+ <Transaction>
    + <PropertyDataSet>  // Room and package metadata
        + <Property>
        + <RoomData>
        + <PackageData>
    + <Result>           // Pricing and availability
        + <Rates>
        + <RoomBundle>
        + ...

자세한 내용은 Room 번들 사용을 참고하세요.

문법

<RoomBundle> 요소는 다음 구문을 사용합니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction ... >
  <Result>
    ...
    <RoomBundle>
      <!-- Required unless specified inline under <RoomData> -->
      <RoomID>room_ID</RoomID>
      <!-- Required  <PackageData> -->
      <PackageID>package_ID</PackageID>

      <!-- Required -->
      <Baserate currency="currency_code">price</Baserate>
      <!-- Required -->
      <Tax currency="currency_code">taxes</Tax>
      <!-- Required -->
      <OtherFees currency="currency_code">other_fees</OtherFees>

      <Refundable available="[false|true]" refundable_until_days="number_of_days"
        refundable_until_time="time"/>
      <!-- Required -->
      <ChargeCurrency>[deposit|hotel|installments|web]</ChargeCurrency>
      <Occupancy>max_number_of_intended_occupants</Occupancy>
      <OccupancyDetails> <!-- optional info about the types of guests,
      whether adults or children --></OccupancyDetails>

      <BreakfastIncluded>boolean_value</BreakfastIncluded>
      <InternetIncluded>boolean_value</InternetIncluded>
      <ParkingIncluded>boolean_value</ParkingIncluded>

      <RatePlanID>rate_plan_ID</RatePlanID>

      <Rates>...</Rates>

      <Custom1>custom_value_1</Custom1>
      <Custom2>custom_value_2</Custom2>
      <Custom3>custom_value_3</Custom3>
      <Custom4>custom_value_4</Custom4>
      <Custom5>custom_value_5</Custom5>
    </RoomBundle>
    ...
  </Result>
</Transaction>

특성

<RoomBundle> 요소에 속성이 없습니다.

하위 요소

<RoomBundle> 요소에는 다음과 같은 하위 요소가 있습니다.

하위 요소 필수 여부 유형 설명
<Baserate> Required float 숙박 요금 객실 패키지 가격을 정의합니다. 이 요소는 <Result><Baserate>와 동일한 구문을 사용하지만 다음과 같은 예외가 있습니다.
  • 숙박 일정에 사용할 수 없는 객실이 있으면 <RoomBundle> 요소를 삭제하여 객실이 더 이상 인벤토리에 없음을 나타냅니다. 자세한 내용은 객실 번들 삭제를 참고하세요.
<BreakfastIncluded> Optional boolean 객실 패키지에는 요금과 함께 조식이 포함되어 있는지 여부를 지정합니다.
<ChargeCurrency> Optional enum 사용자가 예약 비용을 지불하는 시기 및 장소 이 요소는 <Result><ChargeCurrency>와 동일한 구문을 사용합니다.

기본값은 web입니다.

<Custom[1‑5]> Optional string 객실 번들의 방문 페이지에 추가 데이터를 전달하기 위한 맞춤 필드 이러한 요소는 <Result><Custom[1-5]>와 동일한 구문을 사용합니다. 커스텀 필드당 200자(영문 기준)로 제한됩니다. 자세한 내용은 방문 페이지 파일을 참조하세요.

<Custom> 요소가 <Result> 요소에 제공되면 <RoomBundle> 요소에서 상속되지 않으며 각 <RoomBundle>에 관해 개별적으로 정의되거나 필요한 경우 <PackageData>에 포함할 수 있습니다.

<InternetIncluded> Optional boolean 객실 번들에 인터넷 연결이 무료로 포함되어 있는 경우 다른 번들에는 이러한 편의시설이 포함되지 않습니다. 모든 객실에 무료 인터넷을 제공하는 호텔의 객실 번들에는 이 요소를 설정하지 마세요. 이 요소는 객실 내 유선 인터넷 또는 객실에서 사용할 수 없는 무선 인터넷에 적용되지 않습니다.
<Occupancy> Required integer 객실 패키지를 제공할 최대 투숙객 수입니다. 예를 들어 큰 스위트룸은 실제로 6명을 수용할 수 있지만 '허니문 패키지'는 투숙객 2명만 이용할 수 있습니다.

이 값은 회의실에서 실제로 수용할 수 있는 사용자 수인 <Capacity> 이하여야 합니다.

방문 페이지 URL에서 숙박 인원을 정의할 때는 변수 및 조건 사용에 설명된 대로 NUM-ADULTSNUM-CHILDREN 변수를 사용하세요. 기본값은 성인 2명, 어린이 0명입니다.

<Occupancy> 값은 1에서 99 사이의 양의 정수여야 합니다.

참고:

  • <RoomBundle><Occupancy>를 사용하는 것이 좋습니다. 필수로 플래그를 지정하고 생략하면 1097 오류가 발생합니다.
  • <Occupancy><RoomBundle>, <PackageData>, <RoomData> 순서로 데이터 객체에서 가져옵니다. 값이 없는 경우 기본값은 2입니다.
  • <Occupancy>에는 투숙객의 유형 (성인 또는 어린이)을 지정하는 <OccupancyDetails>가 함께 표시될 수 있습니다. 하위 요소의 구문과 설명은 <OccupancyDetails>를 참고하세요.
  • <RoomBundle><PackageData>에서 모두 <Occupancy>를 설정하면 <RoomBundle>의 값이 우선 적용됩니다.
<OtherFees> Required float 객실의 최종 가격에 영향을 미치는 기본 요금 및 세금 외의 수수료입니다. <OtherFees> 요소는 수수료의 3글자 통화 코드를 정의하는 단일 필수 속성인 currency를 사용합니다. 예를 들어 미국 달러에는 USD를 사용합니다.
<PackageID> Optional (recommended) string 패키지 데이터의 고유 ID입니다. 이 ID를 사용하여 Room 번들 데이터를 <PackageData>에서 전송된 데이터와 일치시킵니다. 자세한 내용은 Room 번들 메타데이터를 참고하세요. (또한 이 ID를 사용하여 Room 번들 데이터를 인라인으로 정의할 때 단일 트랜잭션 메시지에 사용되는 공통 Room 번들 정의를 참조할 수도 있습니다.)
<ParkingIncluded> Optional boolean 객실 패키지(무료)에 주차가 포함되어 있는지 여부입니다(이 호텔에서 주차는 유료 서비스임). 무료 주차를 제공하는 호텔의 경우 이 요소의 값을 지정하지 마세요.

유효한 값은 0 (또는 false) 및 1 (또는 true)입니다. 기본값은 false입니다.

<RatePlanID> Optional string 요금제 ID는 객실 및 패키지 조합의 고유 식별자를 나타냅니다. 예를 들어 <RoomID> 값은 5이고 <PackageID> 값은 ABC인 경우 <RatePlanID>에 5-ABC 값을 사용할 수 있습니다. RatePlanID를 변수로 사용하여 동적 방문 페이지(이전 명칭: POS) URL을 만드는 것이 좋습니다.

자세한 내용은 변수 및 조건 사용을 참조하세요.

<Rates> Optional <Rates> 이 객실 패키지 숙박 시설의 기본값을 재정의하는 요금입니다. 이 요소는 <Result><Rates>와 동일한 구문을 사용합니다.
<Refundable> Optional Object 요금을 전액 환불 가능으로 표시하거나 무료 취소 가능 여부를 표시할 수 있습니다. 제공하지 않으면 환불에 대한 정보가 표시되지 않습니다. <PackageData> 수준의 환불 정책이 <Result> 수준의 환불 정책보다 우선 적용됩니다. <Rates> 수준의 환불 정책이 <PackageData> 수준의 환불 정책보다 우선 적용됩니다. 거래 메시지 스키마를 직접 수정하지 않고도 대체 옵션을 통해 환불 가능한 가격을 사용자에게 강조 표시할 수 있습니다. 환불 가능 요금 정책 옵션에 대해 자세히 알아보세요.

다음 예에서는 모든 속성이 설정된 <Refundable> 요소를 보여줍니다.

<Refundable available="1" refundable_until_days="7"
refundable_until_time="18:00:00"/>

참고: 모든 속성을 설정하는 것이 좋습니다. 하나 이상의 속성이 설정되지 않은 경우 피드 상태 경고 메시지가 생성됩니다.

속성을 설정하지 않으면 요금이 환불 가능으로 표시되지 않습니다. 속성은 다음과 같습니다.

  • available: (필수) 요금이 전액 환불이 허용되는지 여부를 나타내려면 1 (또는 true)로 설정합니다. 그렇지 않으면 0 (또는 false)로 설정합니다.
  • refundable_until_days: (availabletrue인 경우 필수) 체크인 전 전액 환불을 요청할 수 있는 일수를 지정합니다. refundable_until_days 값은 0에서 330 사이의 정수여야 합니다.
  • refundable_until_time: (availabletrue인 경우 적극 권장됨) 전액 환불 요청이 처리될 수 있는 가장 늦은 시간을 호텔 현지 시간으로 지정합니다. 이를 refundable_until_days와 함께 사용하여 예를 들어 '체크인 2일 전 오후 4:00까지 환불 가능합니다'를 지정할 수 있습니다. refundable_until_time를 설정하지 않으면 기본값은 자정입니다.

    이 속성의 값은 Time 형식을 사용합니다.

속성을 설정할 때는 다음 사항에 유의하세요.

  • available 또는 refundable_until_days를 설정하지 않으면 요금이 환불 가능으로 표시되지 않습니다.
  • available0 (또는 false)이면 다른 속성은 무시됩니다. 다른 속성 중 하나 또는 둘 다를 설정해도 요금이 환불 가능한 것으로 표시되지 않습니다.
<RoomID> Required string 방 데이터의 고유 ID입니다. 이 ID를 사용하여 Room 번들 데이터를 <RoomData>에서 전송한 데이터와 일치시킵니다. 자세한 내용은 Room 번들 메타데이터를 참고하세요. 회의실 데이터를 인라인으로 정의할 때 단일 트랜잭션 메시지에서 휴게실 정의를 참조하는 데에도 이 ID를 사용할 수 있습니다.
<Tax> Required float 객실의 최종 가격에 대해 계산되는 세금입니다. <Tax> 요소는 3글자로 된 세금의 통화 코드를 정의하는 단일 필수 속성인 currency를 사용합니다. 예를 들어 미국 달러에는 USD를 사용합니다.

1인 숙박 번들

다음 예에서는 단일 숙박 인원 번들이 포함된 응답을 정의합니다. 사용자가 숙박 인원 선택 도구에서 1를 선택하면 숙박 인원과 관계없이 적합한 최저 가격이 표시됩니다.

1인 숙박 인원 가격을 이용할 수 없는 경우 최저 2인실 가격이 표시됩니다. 숙박 일정에 대해 2인실 또는 그 이상의 가격이 캐시되는 경우 1인실 가격은 실시간 쿼리되지 않습니다.

이 예에서는 <RoomID><PackageID> 요소가 있는 사전 정의된 객실 및 패키지 메타데이터를 참조합니다. <RoomData><PackageData> 요소를 사용하여 이러한 정보를 정의합니다.

<!-- Efficient method of defining Room Bundles-->
<!----- Occupancy of 1 example ----->

<Transaction timestamp="2017-07-18T16:20:00-04:00" id="12345678">
  <!-- Part1: Define RoomData and PackageData in PropertyDataSet -->
  <!-- Note:  Once defined it does not have to be repeated for future
              Transaction Messages.
              PropertyDataSets can also be defined and sent in their own
              Transaction Message separately from pricing. Google can be
              configured to pull just PropertyDataSets once per day
              (or on a predefined frequency). -->
  <PropertyDataSet>
    <Property>180054</Property>
    <!-- Can be reused by multiple Room Bundles -->
    <RoomData>
      <RoomID>060773</RoomID>
      <Name>
        <Text text="Single Queen Room - Non-Smoking" language="en"/>
        <Text text="Chambre de la Roi Premium - Pas de Fumeurs" language="fr"/>
      </Name>
      <!-- Room can accommodate up to 4, but package data specifies occupancy
           between 1 to 4 -->
      <Capacity>4</Capacity>
    </RoomData>
    <RoomData>
      <RoomID>436233</RoomID>
      <Name>
        <Text text="Premium King Room - Non-Smoking" language="en"/>
        <Text text="Chambre de le Roi Premium - Pas de Fumeurs" language="fr"/>
      </Name>
      <Capacity>4</Capacity>
    </RoomData>
    <!-- Can be reused by multiple Room Bundles -->
    <PackageData>
      <PackageID>P11111</PackageID>
      <Occupancy>1</Occupancy>
      <ChargeCurrency>web</ChargeCurrency>
      <Refundable available="1" refundable_until_days="7"
           refundable_until_time="18:00:00"/>
      <ParkingIncluded>1</ParkingIncluded>
      <InternetIncluded>1</InternetIncluded>
    </PackageData>
    <PackageData>
      <PackageID>P54321</PackageID>
      <Occupancy>2</Occupancy>
      <ChargeCurrency>web</ChargeCurrency>
      <Refundable available="1" refundable_until_days="7"
           refundable_until_time="18:00:00"/>
      <ParkingIncluded>1</ParkingIncluded>
      <InternetIncluded>1</InternetIncluded>
    </PackageData>
    <PackageData>
      <PackageID>P12345</PackageID>
      <Occupancy>4</Occupancy>
      <ChargeCurrency>web</ChargeCurrency>
      <Refundable available="1" refundable_until_days="1"
           refundable_until_time="18:00:00"/>
      <ParkingIncluded>1</ParkingIncluded>
      <InternetIncluded>1</InternetIncluded>
    </PackageData>
  </PropertyDataSet>

    <!-- Efficient method of defining Room Bundles -->
    <!-- Part 2: Reference RoomData and PackageData through ID -->
  <Result>
    <!-- Single occupancy pricing will be specified in a room bundle below -->
    <Property>180054</Property>
    <Checkin>2017-10-07</Checkin>
    <Nights>2</Nights>
    <!-- Base Room Bundle -->
    <RoomBundle>
      <RoomID>060773</RoomID>
      <PackageID>P54321</PackageID>
      <Baserate currency="USD">199.99</Baserate>
      <Tax currency="USD">25.12</Tax>
      <OtherFees currency="USD">2.00</OtherFees>
      <RatePlanID>060773-P54321</RatePlanID>
    </RoomBundle>
    <RoomBundle>
      <RoomID>060773</RoomID>
      <PackageID>P11111</PackageID>
      <!-- Price for 1 ("occupancy") is the lowest price and will be
           displayed -->
      <Baserate currency="USD">174.99</Baserate>
      <Tax currency="USD">22.08</Tax>
      <OtherFees currency="USD">2.00</OtherFees>
      <RatePlanID>060773-P11111</RatePlanID>
    </RoomBundle>
    <!-- Premium Room Bundle -->
    <RoomBundle>
      <RoomID>436233</RoomID>
      <PackageID>P12345</PackageID>
      <!-- Price for 4 ("occupancy"), any eligible room bundle with 1 or more
           occupancy will be displayed-->
      <Baserate currency="USD">298.88</Baserate>
      <Tax currency="USD">42.12</Tax>
      <OtherFees currency="USD">10.00</OtherFees>
      <RatePlanID>436233-P12345</RatePlanID>
    </RoomBundle>
    <!-- ..Continue providing all available RoomBundle rates under matched
         property for 1 or more occupancies..-->
  </Result>
</Transaction>


숙박 인원 2명 이상

다음 예는 둘 이상의 숙박이 포함된 응답을 정의합니다.

이 예에서는 <RoomID><PackageID> 요소가 있는 사전 정의된 객실 및 패키지 메타데이터를 참조합니다. <RoomData><PackageData> 요소를 사용하여 이러한 정보를 정의합니다.

<!-- Efficient method of defining Room Bundles-->
<!----- Occupancy of 3 example ----->

<Transaction timestamp="2017-07-18T16:20:00-04:00" id="12345678">
  <!-- Efficient method of defining Room Bundles-->
  <!-- Part1: Define RoomData and PackageData in PropertyDataSet -->
  <PropertyDataSet>
    <Property>180054</Property>
    <!-- Can be reused by multiple Room Bundles -->
    <RoomData>
      <RoomID>060773</RoomID>
      <Name>
        <Text text="Single Queen Room - Non-Smoking" language="en"/>
        <Text text="Chambre de la Roi Premium - Pas de Fumeurs" language="fr"/>
      </Name>
      <!-- Room can accommodate up to 4, but package data specifies occupancy
           between 1 to 4 -->
      <Capacity>4</Capacity>
    </RoomData>
    <RoomData>
      <RoomID>436233</RoomID>
      <Name>
        <Text text="Premium King Room - Non-Smoking" language="en"/>
        <Text text="Chambre de le Roi Premium - Pas de Fumeurs" language="fr"/>
      </Name>
      <Capacity>4</Capacity>
    </RoomData>
    <!-- Can be reused by multiple Room Bundles -->
    <PackageData>
      <PackageID>P33333</PackageID>
      <Occupancy>3</Occupancy>
      <ChargeCurrency>web</ChargeCurrency>
      <Refundable available="1" refundable_until_days="7"
           refundable_until_time="18:00:00"/>
      <ParkingIncluded>1</ParkingIncluded>
      <InternetIncluded>1</InternetIncluded>
    </PackageData>
    <PackageData>
      <PackageID>P12345</PackageID>
      <Occupancy>4</Occupancy>
      <ChargeCurrency>web</ChargeCurrency>
      <Refundable available="1" refundable_until_days="1"
           refundable_until_time="18:00:00"/>
      <ParkingIncluded>1</ParkingIncluded>
      <InternetIncluded>1</InternetIncluded>
    </PackageData>
  </PropertyDataSet>

  <Result>
    <Property>180054</Property>
    <Checkin>2017-10-07</Checkin>
    <Nights>2</Nights>
    <!-- Efficient method of defining Room Bundles -->
    <!-- Part 2: Reference RoomData and PackageData through ID -->
    <!-- Base Room Bundle -->
    <RoomBundle>
      <!-- Baserate above and attributes must match atleast one room bundle
           below -->
      <RoomID>060773</RoomID>
      <PackageID>P33333</PackageID>
      <Baserate currency="USD">499.99</Baserate>
      <Tax currency="USD">55.12</Tax>
      <OtherFees currency="USD">22.00</OtherFees>
    </RoomBundle>
    <!-- Premium Room Bundle -->
    <RoomBundle>
      <RoomID>436233</RoomID>
      <PackageID>P12345</PackageID>
      <!-- Lowest price for 3 ("occupancy"), shown below, will be displayed -->
      <Baserate currency="USD">598.88</Baserate>
      <Tax currency="USD">62.12</Tax>
      <OtherFees currency="USD">30.00</OtherFees>
    </RoomBundle>
    <!-- ..Continue providing all available RoomBundle rates under matched
         property for 2 or more occupancies..-->
  </Result>
</Transaction>


여러 객실 패키지

다음 예에서는 여러 객실 번들에 숙박 인원을 설정하여 가능한 호스텔 객실 가격을 보여줍니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction ... >
  <Result>
    ...
    <!-- Suite Room Bundle -->
    <RoomBundle>
      <RoomID>suite1</RoomID>
      <PackageID>standard</PackageID>
      <Occupancy>2</Occupancy>
      <!-- Price for room -->
      <Baserate currency="USD">80.00</Baserate>
      <Tax currency="USD">5.12</Tax>
      <OtherFees currency="USD">2.00</OtherFees>
      <RoomData>
        <Name>
          <Text text="Suite for 2" language="en"/>
        </Name>
      </RoomData>
    </RoomBundle>

    <!-- Small Dorm Room Bundle -->
    <RoomBundle>
      <RoomID>small_dorm</RoomID>
      <PackageID>economy</PackageID>
      <Occupancy>1</Occupancy>
      <!-- Price per bed -->
      <Baserate currency="USD">35.00</Baserate>
      <Tax currency="USD">3.50</Tax>
      <OtherFees currency="USD">2.00</OtherFees>
      <RoomData>
        <Name>
          <Text text="1 bed in small dorm" language="en"/>
        </Name>
      </RoomData>
    </RoomBundle>

    <!-- Large Dorm Room Bundle -->
    <RoomBundle>
      <RoomID>large_dorm</RoomID>
      <PackageID>economy</PackageID>
      <Occupancy>1</Occupancy>
      <!-- Price per bed -->
      <Baserate currency="USD">20.00</Baserate>
      <Tax currency="USD">2.50</Tax>
      <OtherFees currency="USD">2.00</OtherFees>
      <RoomData>
        <Name>
          <Text text="1 bed in large dorm" language="en"/>
        </Name>
      </RoomData>
    </RoomBundle>
    ...
  </Result>
</Transaction>

여러 조건부 요금

다음 예에서는 <RoomBundle> 내에 기본 요율과 여러 조건부 요금을 정의합니다.

<?xml version="1.0" encoding="UTF-8" ?>
<Transaction timestamp="2023-05-18T16:20:00-04:00" id="42">
  <Result>
    <Property>1234</Property>
    <Checkin>2023-04-10</Checkin>
    <Nights>2</Nights>
    <!-- When Google receives new room bundle information for an itinerary, all
    previous room bundle pricing is dropped from Google's cache. Thus, if you
    want to delete a specific room bundle from Google's cache, you may do so
    by simply not providing that specific room bundle in subsequent transaction
    messages. -->
    <RoomBundle>
     ...
      <!-- RoomID is required, PackageID is recommended. -->
      <RoomID>5</RoomID>
      <PackageID>ABC</PackageID>
      <!-- Baserate is required. -->
      <Baserate currency="USD">275.00</Baserate>
      <Tax currency="USD">27.50</Tax>
      <OtherFees currency="USD">2.00</OtherFees>

      <!-- RatePlanID is optional and represents the unique identifier for a
      room and package data combination. We strongly recommend using RatePlanID
      as a variable to build your dynamic landing page (formerly Point of Sale)
      URL. For details, see Using Variables and Conditions. -->
      <RatePlanID>5-ABC</RatePlanID>

      <!-- Occupancy is mandatory for RoomBundle elements. -->
      <!-- Elements below will get inherited to nested rate elements. -->
      <Occupancy>2</Occupancy>
      <OccupancyDetails>
        <NumAdults>2</NumAdults>
      </OccupancyDetails>
      <InternetIncluded>1</InternetIncluded>


      <!-- Rate rule "mobile" overrides chargeCurrency, "us_or_gb" doesn't. -->
      <ChargeCurrency>web</ChargeCurrency>
      <Custom1>ratebasic</Custom1>
      <!-- Neither rate overrides Custom2. -->
      <Custom2>ratebasic</Custom2>

      <Rates>
        <Rate rate_rule_id="mobile">
          <Baserate currency="USD">258.33</Baserate>
          <Tax currency="USD">25.83</Tax>
          <OtherFees currency="USD">1.00</OtherFees>
          <!-- The value below overrides ChargeCurrency from roombundle. -->
          <ChargeCurrency>hotel</ChargeCurrency>
          <!-- The value below overrides Custom1 from roombundle. -->
          <Custom1>ratecode321</Custom1>
          <!-- Custom2 is inherited from roombundle. -->
        </Rate>
        <Rate rate_rule_id="us_or_gb">
          <Baserate currency="USD">268.33</Baserate>
          <Tax currency="USD">26.83</Tax>
          <OtherFees currency="USD">1.00</OtherFees>
          <!-- The value below overrides Custom1 from roombundle. -->
          <Custom1>ratecode432</Custom1>
          <!-- Custom2 is inherited from roombundle. -->
        </Rate>
      </Rates>
    </RoomBundle>
  </Result>
</Transaction>

<OccupancyDetails>

트랜잭션 메시지의 <Occupancy>는 객실 또는 패키지의 최대 투숙객 수를 지정합니다. <OccupancyDetails>에는 투숙객 수 및 유형 (성인 또는 어린이)과 같은 추가 정보가 포함될 수 있습니다.

<Occupancy><OccupancyDetails><Result> 또는 <RoomBundle><Rates> 요소 내에 표시되면 숙박 인원 세부정보에 따라 요금이 제한된다는 의미입니다.

문법

<OccupancyDetails>이 표시되면 항상 <Occupancy>가 앞에 옵니다. 다음 문법에 유의하세요.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction ... >
  <Result>
  ...
    <Occupancy>max_number_of_intended_occupants</Occupancy>
    <OccupancyDetails>
      <NumAdults>number_of_adults</NumAdults>
      <Children>
        <Child age=age_of_one_child_guest/>
        <Child age=age_of_one_child_guest/>
      </Children>
    </OccupancyDetails>
  </Result>
</Transaction>

하위 요소

<OccupancyDetails> 요소에는 다음과 같은 하위 요소가 있습니다.

하위 요소 필수 여부 유형 설명
<NumAdults> Required integer 성인 투숙객 수입니다. 최소:1, 최대:20.
<Children> Optional Object 하나 이상의 <Child> 요소의 컨테이너입니다.
<Child age> Optional integer 이 자녀의 최대 연령입니다(예: <Child age="17">).

다음 예는 <Results>, <RoomBundle> 또는 <Rates> 하위 요소 내에 <OccupancyDetails>가 표시되는 방식을 보여줍니다.

결과 응답

다음 예시에서는 사용자가 투숙객 수와 유형을 지정한 실시간 가격 쿼리에 대한 응답으로 한 숙박 시설의 숙박 일정과 가격을 정의합니다. 여기서는 <OccupancyDetails>(성인 2명과 어린이 1명)가 <Result>에 반환됩니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction timestamp="2017-07-23T16:20:00-04:00" id="42">
  <Result>
    <Property>060773</Property>
    <RoomID>RoomType101</RoomID>
    <PackageID>Package101</PackageID>
    <Checkin>2018-06-10</Checkin>
    <Nights>2</Nights>
    <Baserate currency="USD">278.33</Baserate>
    <Tax currency="USD">25.12</Tax>
    <OtherFees currency="USD">2.00</OtherFees>
    <AllowablePointsOfSale>
      <PointOfSale id="site1"/>
    </AllowablePointsOfSale>
    <Occupancy>3</Occupancy>
    <OccupancyDetails>
      <NumAdults>2</NumAdults>
      <Children>
        <Child age="17"/>
      </Children>
    </OccupancyDetails>
  </Result>
</Transaction>

요금 응답

다음 예시에서는 성인 1명과 어린이 1명을 대상으로 하는 숙박 일정과 가격을 정의합니다. 여기서 <OccupancyDetails><Result><Rates> 요소에 반환됩니다.

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Transaction id="Wtdj8QoQIWcAAbaTGlIAAAC4" timestamp="2018-04-18T11:27:45-04:00">
  <Result>
    <Property>8251</Property>
    <Checkin>2018-06-20</Checkin>
    <Nights>1</Nights>
    <Baserate currency="USD">62.18</Baserate>
    <Tax currency="USD">2.45</Tax>
    <OtherFees currency="USD">0.00</OtherFees>
    <Rates>
      <Rate rate_rule_id="rule-951">
        <Occupancy>2</Occupancy>
        <OccupancyDetails>
          <NumAdults>1</NumAdults>
          <Children>
            <Child age="17"/>
          </Children>
        </OccupancyDetails>
        <Baserate currency="USD">42.61</Baserate>
        <Tax currency="USD">5.70</Tax>
        <OtherFees currency="USD">0.00</OtherFees>
        <Custom1>abc4</Custom1>
        <AllowablePointsOfSale>
          <PointOfSale id="yourhotelpartnersite.com"/>
        </AllowablePointsOfSale>
      </Rate>
    </Rates>
  </Result>
</Transaction>

객실 패키지

다음 예시에서는 성인 2명, 어린이 1명으로 구성된 2박 숙박 인원을 환불 요금으로 정의합니다. 여기서 <OccupancyDetails><RoomBundle> 내부에 표시됩니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction timestamp="2017-07-23T16:20:00-04:00" id="42">
  <Result>
    <Property>6781291</Property>
    <Checkin>2017-08-05</Checkin>
    <Nights>2</Nights>
    ...
    <RoomBundle>
      <RoomID>10291</RoomID>
      <RatePlanID>564739</RatePlanID>
      <PackageID>564739</PackageID>
      <Occupancy>3</Occupancy>
      <OccupancyDetails>
        <NumAdults>2</NumAdults>
        <Children>
          <Child age="17"/>
        </Children>
      </OccupancyDetails>
      <ChargeCurrency>web</ChargeCurrency>
      <Refundable available="true" refundable_until_days="1" refundable_until_time="23:59:00" />
      <Baserate currency="USD">185.34</Baserate>
      <Tax currency="USD">37.06</Tax>
      <OtherFees currency="USD">2.22</OtherFees>
    </RoomBundle>
  </Result>
</Transaction>

여러 객실 패키지

다음 예에서는 숙박 인원이 성인 2명과 어린이 2명으로 제한된 여러 <RoomBundle> 요금을 정의합니다. 여기서 <OccupancyDetails><RoomBundle><Rates> 요소에 표시됩니다.

<?xml version="1.0" encoding="UTF-8"?>
<Transaction timestamp="2017-07-18T16:20:00-04:00" id="42">
  <Result>
    <Property>1234</Property>
    <Checkin>2018-06-10</Checkin>
    <Nights>2</Nights>
    <Baserate currency="USD">275.00</Baserate>
    <Tax currency="USD">27.50</Tax>
    <OtherFees currency="USD">0</OtherFees>
    <RoomBundle>
      <RoomID>5</RoomID>
      <PackageID>STD</PackageID>
      <Baserate currency="USD">275.00</Baserate>
      <Tax currency="USD">27.50</Tax>
      <OtherFees currency="USD">0</OtherFees>
      <InternetIncluded>1</InternetIncluded>
      <ChargeCurrency>web</ChargeCurrency>
      <Custom1>ratebasic</Custom1>
      <Custom2>ratebasic</Custom2>
      <Occupancy>4</Occupancy>
      <OccupancyDetails>
          <NumAdults>2</NumAdults>
          <Children>
              <Child age="17"/>
              <Child age="17"/>
          </Children>
      </OccupancyDetails>
      <Rates>
        <Rate rate_rule_id="mobile">
          <Baserate currency="USD">258.33</Baserate>
          <Tax currency="USD">25.83</Tax>
          <OtherFees currency="USD">1.00</OtherFees>
          <ChargeCurrency>hotel</ChargeCurrency>
          <Custom1>ratecode321</Custom1>
        </Rate>
        <Rate rate_rule_id="us_or_gb">
          <Baserate currency="USD">268.33</Baserate>
          <Tax currency="USD">26.83</Tax>
          <OtherFees currency="USD">1.00</OtherFees>
          <Custom1>ratecode432</Custom1>
        </Rate>
      </Rates>
    </RoomBundle>
  </Result>
</Transaction>