搜索请求和响应中的乘客类型不匹配

Passenger type mismatch in search request and response

我在搜索请求中发送了 3 名成人和 2 名儿童(操作:BargainFinderMax_RQ),作为响应(操作:BargainFinderMax_RS)我们收到了 5 名成人。

Sabre returns 作为信息:

CNN NOT APPLICABLE - ADT FARE USED - VERIFY RESTRICTIONS

我想问一下Sabre提供的参数有没有让我只接收给定的乘客类型。

编辑: 这是 BargainFinderMaxRQ:

  <s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <OTA_AirLowFareSearchRQ PrimaryLangID="En" Version="1.8.5" ResponseType="OTA" ResponseVersion="1.8.5" xmlns="http://www.opentravel.org/OTA/2003/05">
      <OriginDestinationInformation RPH="1">
        <DepartureDateTime>2016-08-26T12:00:00</DepartureDateTime>
        <DepartureWindow>00002359</DepartureWindow>
        <OriginLocation LocationCode="KRR" />
        <DestinationLocation LocationCode="DLM" />
      </OriginDestinationInformation>
      <OriginDestinationInformation RPH="2">
        <DepartureDateTime>2016-09-02T12:00:00</DepartureDateTime>
        <DepartureWindow>00002359</DepartureWindow>
        <OriginLocation LocationCode="DLM" />
        <DestinationLocation LocationCode="KRR" />
      </OriginDestinationInformation>
      <TravelPreferences>
        <TPA_Extensions>
          <DiversityParameters AdditionalNonStopsNumber="10" />
        </TPA_Extensions>
      </TravelPreferences>
      <TravelerInfoSummary>
        <SeatsRequested>5</SeatsRequested>
        <AirTravelerAvail>
          <PassengerTypeQuantity Code="ADT" Quantity="3" />
          <PassengerTypeQuantity Age="8" Code="CNN" Quantity="2" />
        </AirTravelerAvail>
      </TravelerInfoSummary>
    </OTA_AirLowFareSearchRQ>
  </s:Body>

您需要使用 XOFares 元素:

<!--"Value" (required) Indicator for whether to return only fares with a passenger type the same as the passenger type specified in the request.-->
<!--Value="true" Returns only fares with a passenger type the same as the passenger type specified in the request.-->
<!--Value="false" (default) Uses standard Bargain Finder Max logic.-->
<XOFares Value="true"/>