가격 및 객실 인벤토리 (거래) 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:09:00이고 타임스탬프가 2019-05-03 14:10:00인 메시지 이후에 수신된 가격 업데이트는 계속해서 순서대로 처리되며 타임스탬프가 2019-05-03 14:10:00인 메시지의 가격이 사용됩니다.

하위 요소

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

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

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

<Result> Optional* <Result>

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

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

객실 데이터

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

<?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>

가격 책정 데이터

다음 예시에서는 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>


기본 요금 및 조건부 요금

다음 예시에서는 기본 요금과 조건부 요금이 포함된 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> 메시지의 방 및 패키지 (또는 Room 번들) 정보의 컨테이너입니다. 호텔에 설정된 값은 파트너에 설정된 값보다 우선 적용됩니다. Google은 사용자가 가격 업데이트를 전송할 때마다 이 정보를 정의할 필요가 없도록 이 정보를 저장합니다.

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

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

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

문법

<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> 중 하나 이상이 필요합니다.

객실 및 패키지 데이터

다음 예는 <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를 참조합니다. 따라서 메시지 크기가 크게 줄어들고 중복 데이터로 인해 발생할 수 있는 오류도 줄어듭니다. 자세한 내용은 Room 번들 메타데이터를 참고하세요.

<RoomData>

객실에 관한 일정과 무관한 메타데이터 및 더 나아가 Room Bundle을 정의합니다 (객실 번들은 객실 및 추가 편의시설이기 때문). 가격 피드에 설명 데이터가 반복되는 빈도를 줄이려면 <RoomData>를 사용하세요.

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

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

<RoomData> 요소에는 파트너 및 호텔과 연결된 정보가 포함되지만 여행 일정과는 연결되지 않습니다. 의도된 목적은 일정이 아닌 모든 데이터를 대상으로 합니다.

<RoomData> 요소는 <PackageData>와 비슷하지만 패키지의 편의시설 및 약관이 아닌 실제 공간을 설명합니다. <RoomData><PackageData>를 함께 사용하여 Room 번들에 관한 세부정보를 제공합니다. 패키지에 포함되지 않은 개별 방의 경우 <RoomData>만 사용합니다.

동일한 방 또는 Room 번들에 <RoomData><PackageData> 요소를 모두 정의할 수 있습니다. Google에서 해당 방 또는 패키지를 검색 결과에 표시하면 하이픈으로 구분된 두 객실 또는 패키지의 설명이 모두 포함됩니다.

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

문법

<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로 설정하면 이 회의실을 투숙객 한 명으로 예약할 수 없습니다.

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

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

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

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

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

<PhotoURL> Optional Object 지정된 객실 또는 객실 패키지 사진의 URL 및 설명(선택사항)입니다. 객실 또는 객실 번들에 둘 이상의 <PhotoURL>를 지정할 수 있습니다. 각 사진 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>

회의실 및 패키지 메타데이터

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

<?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> (선택사항): 침대 너비를 지정합니다. 값이 cm인 속성 unit와 침대 너비가 정수 센티미터인 number 속성이 있어야 합니다.
  • <Length> (선택사항): 침대 길이를 지정합니다. 값이 cm인 속성 unit와 침대 길이가 정수 센티미터인 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>만 사용합니다.

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

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

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

문법

<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> 요소는 단일 하위 요소 <Text>를 사용하며, 여기에는 두 가지 필수 속성인 textlanguage가 있습니다. 다음 예에 표시된 것처럼 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 패키지의 이름입니다. 이 값은 호텔의 방문 페이지에 표시되는 값과 일치해야 합니다. 이 요소의 값을 모두 대문자로 설정하지 마세요.

이 요소는 단일 하위 요소 <Text>를 사용하며, 이 요소에는 textlanguage라는 두 가지 속성이 있습니다. 다음 예에 표시된 것처럼 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 Bundle 데이터를 인라인으로 정의할 때 단일 트랜잭션 메시지에 사용되는 공통 Room Bundle 정의를 참조할 수 있습니다.)

<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시까지 환불 가능'을 지정할 수 있습니다. refundable_until_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 요금에는 숙박 시설 내 크레딧 (식음료, 리조트, 스파 등)이 포함됩니다. 매개변수:
  • Amount: 숙박 일정별 크레딧 값(현지 통화)입니다.
<AirportTransportationIncluded> Optional Object 요금에는 인근 공항을 오가는 무료 교통편이 포함되어 있습니다. 선택사항인 direction 속성은 교통수단의 방향을 지정합니다. 유효한 값은 다음과 같습니다.
    from: 공항에서 숙박 시설까지 교통편이 제공됩니다. 방향을 지정하지 않으면 기본값입니다. to: 숙박 시설에서 공항까지 교통편이 제공됩니다. round_trip: 공항을 오가는 교통편이 제공됩니다.

싱글룸 패키지

다음 예에서는 숙박 인원이 2명 (성인 1명 및 어린이 1명)이고 조식이 포함된 단일 Room 번들을 정의합니다.

<?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>
false

<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인실 요금을 설정합니다. 2인 숙박 요금이 없고 계정에 2인 외의 숙박 인원 요금이 사용 설정된 경우 더 많은 숙박 인원이 허용됩니다. 2인 외의 숙박 인원을 사용 설정하려면 Google에 문의하세요. 여기에서는 1인 숙박 요금이 허용되지 않으며 <Rates>에서 설정해야 합니다.
  • 공용 공간의 경우 비워두고 <RoomBundle>를 사용합니다.
  • 이 값은 평균 1박 요금이 아니라 모든 숙박 일수의 총 기본 가격이어야 합니다.

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

객실 번들을 삭제하려면 객실 번들 삭제 안내를 따르세요.

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

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

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

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

    이제 올인클루시브 가격이 미국 사용자에게 표시됩니다.

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

    기본값은 false입니다.

  • currency: 세 글자로 된 통화 코드입니다. 예를 들어 미국 달러의 경우 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인 1실 외의 숙박 인원 가격을 전송하는 기능을 사용 설정하려면 지원팀에 문의하세요.

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

동일한 객실/여행 일정 조합에 요금이 여러 개 있거나 <Result> 수준에서 요금을 지정할 수 없는 경우 <Rates> 요소를 사용하세요. 예를 들어 조건부 요금, 특별 요금, 객실 번들의 조건부 요금 또는 다양한 숙박 인원에 요금을 여러 개 정의합니다.

참고: <Result> 내에서 1인실 요금은 <Rates>에서만 지정할 수 있습니다. 2인 외의 숙박 인원에 대한 가격은 Google에 문의해 주세요.

<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시까지 환불 가능'을 지정할 수 있습니다. refundable_until_time를 설정하지 않으면 기본값은 자정입니다.

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

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

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

일반적으로 이 요소는 기본 객실과 동일한 숙박 시설 내의 다양한 객실 유형의 가격을 정의하는 데 사용합니다. Room Bundle 설명을 인라인으로 정의할 수 있지만 별도의 트랜잭션 메시지를 사용하여 이러한 정보를 정의해야 합니다. 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=""/>: 열거되지 않은 오류가 발생했습니다. 이유 속성(선택사항)은 오류를 텍스트로 보고할 수 있습니다.
  • <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시까지 환불 가능'을 지정할 수 있습니다. refundable_until_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>의 하위 요소로 객실 패키지 가격 및 이용 가능 여부를 정의합니다. 패키지 또는 여행 일정 조합마다 별도의 요소를 정의합니다. Room 번들의 패키지 및 약관을 정의하려면 <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> 요소를 삭제하여 객실이 더 이상 인벤토리에 없음을 나타냅니다. 자세한 내용은 Room 번들 삭제를 참고하세요.
<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를 사용하여 객실 패키지 데이터를 <PackageData>에서 전송된 데이터와 일치시킵니다. 자세한 내용은 Room 번들 메타데이터를 참조하세요. (또한 이 ID를 사용하여 Room Bundle 데이터를 인라인으로 정의할 때 단일 트랜잭션 메시지에 사용되는 공통 Room 번들 정의를 참조할 수 있습니다.)
<ParkingIncluded> Optional boolean 객실 번들에 무료 주차가 포함되어 있는지 여부입니다. 이 경우 주차는 이 호텔의 유료 서비스입니다. 무료 주차를 제공하는 호텔의 경우 이 요소의 값을 지정하지 않습니다.

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

<RatePlanID> Optional string 요금제 ID는 객실 및 패키지 조합의 고유 식별자를 나타냅니다. 예를 들어 <RoomID> 값이 5이고 <PackageID> 값이 ABC이면 <RatePlanID>에 5-ABC 값을 사용할 수 있습니다. RatePlanID를 변수로 사용하여 동적 방문 페이지(이전의 판매 시점) 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시까지 환불 가능'을 지정할 수 있습니다. refundable_until_time를 설정하지 않으면 기본값은 자정입니다.

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

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

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

1인 패키지

다음 예에서는 숙박 인원 번들이 하나인 응답을 정의합니다. 사용자가 숙박 인원 선택 도구에서 1를 선택하면 숙박 인원과 관계없이 Google에서 운영 가능한 최저 가격을 표시합니다.

1인실 가격이 제공되지 않는 경우 Google에서는 가장 낮은 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명의 숙박 일정 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>