FR24 OpenAPI
  1. API 参考
FR24 OpenAPI
  • FR24_API_V2.0
    • 指南
      • API调用流程
      • 介绍
      • 附录
      • 错误码
    • API 参考
      • OrderChangeInforming 订单信息变更通知
      • Shopping 航班搜索接口
        POST
      • Pricing 校验接口
        POST
      • Booking 生单接口
        POST
      • Ticketing 申请出票接口
        POST
      • OrderDetail 订单详情接口
        POST
      • PresaleAncillaryShopping 售前辅营搜索接口
        POST
      • PostsaleAncillaryShopping 售后行李搜索接口
        POST
      • seatMap 机型图接口
        POST
      • AncillaryBooking 辅营生单接口
        POST
      • AncillaryPurchase 辅营支付接口
        POST
      • AncillaryOrderDetail 辅营订单详情
        POST
      • ChangeReshop 改期搜索接口
        POST
      • ReissueRequest 改期申请接口
        POST
      • RefundRequest 退票申请接口
        POST
      • RefundConfirming 退票确认接口
        POST
      • VoidRequest 废票提交接口
        POST
      • FileUpload 文件上传
        POST
      • SelectBalance 余额查询接口
        POST
    • 关于我们
      • API 能力
      • 商务合作
      • 门户网站
  1. API 参考

Shopping 航班搜索接口

POST
/api/new/shopping.do
通过Shopping接口,查询可用航班信息。支持单程、往返程、缺口程线路查询。

请求参数

Header 参数
Accept-Encoding
string 
必需
使用gzip压缩格式
默认值:
gzip, deflate, br
content-Type
string 
响应格式
必需
默认值:
application/json
appKey
string 
用户账户
必需
默认值:
{{appKey}}
Body 参数application/json
authentication
object 
用户认证信息
必需
sign
string 
签名
必需
appkey + appsecret + timestamp加密后的字符串,加密见附录
timestamp
string 
使用 unix 时间戳
必需
单位:秒
searchLegs
array[object (搜索航段信息) {5}] 
搜索航段信息
必需
最多支持6段行程查询
>= 1 items<= 6 items
origin
string 
起飞城市
必需
使用IATA城市标准三字代码
>= 3 字符<= 3 字符
typeO
enum<string> 
对于origin类型限制
可选
枚举值:
airportcodeairportgroup
destination
string 
到达城市
必需
使用IATA城市标准三字代码
>= 3 字符<= 3 字符
typeD
enum<string> 
对于destination类型限制
可选
枚举值:
airportcodeairportgroup
depDate
string <date>
起飞日期
必需
格式:YYYY-MM-DD
>= 10 字符<= 10 字符
正则匹配:
^\d{4}-\d{2}-\d{2}$
adultNum
integer 
成人乘客人数
必需
成人、儿童和婴儿人数总和不能超过9
>= 1<= 9
默认值:
0
childNum
integer 
儿童乘客人数
可选
一成人最多带两个儿童或婴儿
>= 0<= 9
默认值:
0
infantNum
integer 
婴儿乘客人数
可选
一成人最多带两个儿童或婴儿
>= 0<= 9
默认值:
0
preferences
object 
搜索偏好
必需
可以设置首选项以获得过滤后的结果
preferredCarrier
array[string]
航空公司偏好过滤条目,必填航空公司 IATA 2 字符代码
可选
支持多承运航司过滤
prohibitedCarrier
array[string]
航空公司偏好过滤条目,非必填航空公司 IATA 2 字符代码
可选
支持多承运航司过滤
stops
integer 
可选
0- 仅直飞航班,1- 最多 1 次转机,2- 最多 2 次转机,依此类推
>= 0
cabin
enum<string> 
舱位偏好
可选
如果您选择不设置,则默认为经济舱。
>= 0 字符<= 1 字符
枚举值:
FCPY
默认值:
Y
seriesTraceId
string 
上一个业务请求接口返回的traceId
可选
此字段为开发者选项,FR24通过此traceId追踪并分析合作商的上一个调用接口,方便双方在出现问题时能够快速追踪整条链路
seriesRsTime
number 
上一个业务请求接口,从请求该接口到获取结果的时长
可选
单位为ms;此字段为开发者选项,FR24通过该时长分析合作商的网络延迟情况,以提升双方的数据质量。
示例
{
  "authentication": {
    "sign": "{{sign}}",
    "timestamp": "{{timestamp}}"
  },
  "searchLegs": [
    {
      "typeO": "airportgroup",
      "origin": "SIN",
      "typeD": "airportcode",
      "destination": "HKG",
      "depDate": "2025-11-15"
    }
  ],
  "adultNum": 2,
  "childNum": 0,
  "infantNum": 0,
  "preferences": {
    "cabin": "Y",
    "preferredCarrier": [
      "AB"
    ],
    "prohibitedCarrier": [
      "CD"
    ],
    "stops": 0
  }
}

示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://flight-test.flightroutes24.com/api/new/shopping.do' \
--header 'Accept-Encoding;' \
--header 'appKey;' \
--header 'content-Type: application/json' \
--data-raw '{
    "authentication": {
        "sign": "",
        "timestamp": ""
    },
    "searchLegs": [
        {
            "typeO": "airportgroup",
            "origin": "SIN",
            "typeD": "airportcode",
            "destination": "HKG",
            "depDate": "2025-11-15"
        }
    ],
    "adultNum": 2,
    "childNum": 0,
    "infantNum": 0,
    "preferences": {
        "cabin": "Y",
        "preferredCarrier": [
            "AB"
        ],
        "prohibitedCarrier": [
            "CD"
        ],
        "stops": 0
    }
}'

返回响应

🟢200OK
application/json
Body
traceId
string 
追溯码
必需
code
string 
状态码
必需
000000 代表成功,其他代表失败
message
string 
状态说明
必需
processingTime
number 
处理时长
必需
单位:ms
>= 0
data
object 
返回的所有数据
必需
当code非000000时,内容为空
offers
array [object {16}] 
报价信息
必需
包含了直飞和中转所有的报价组合
legs
array[object (行程信息) {2}] 
行程信息
必需
包含了所有航班组合
segments
array [object {16}] 
航段信息
必需
包含了所有不重复的航班信息
示例
{
  "traceId": "queryFlight_NEWAPI250117113553863087",
  "code": "000000",
  "message": "成功",
  "processingTime": 1717,
  "data": {
    "offers": [
      {
        "offerId": "18599004604928000",
        "legId": "1ebb56358b1c617a18a597543feceb77",
        "currency": "CNY",
        "platingCarrier": "CX",
        "pricePerPax": [
          {
            "paxType": "ADT",
            "baseFare": 581,
            "totalTax": 493,
            "taxBreakdown": [],
            "serviceFee": 10000
          }
        ],
        "cabin": [
          "Y"
        ],
        "fareBasis": [
          "QR21SGAO"
        ],
        "availability": [
          "9"
        ],
        "extraInfo": {
          "freeBaggageAllowance": [
            {
              "segmentId": "4453068fd343a3eb89b823fc48cc2cd9",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "7-e-e",
              "checkedBagPc": "1-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "e-e-e"
            }
          ]
        },
        "eligibilityFlag": false,
        "eligibilityDetail": null,
        "rules": {
          "refund": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "fullRefundAP": null,
              "refundFee": 1539
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "fullRefundAP": null,
              "refundFee": null
            }
          ],
          "change": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "changeFee": 513
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "changeFee": null
            }
          ]
        },
        "productType": null,
        "productTag": {
          "ticketPromise": null,
          "refuseDeadline": null,
          "ticketingTime": null,
          "reschedulePendingTime": null,
          "voluntaryRefundTime": null,
          "involuntaryRefundTime": null,
          "refundCondition": null,
          "reissueCondition": null,
          "voidingCondition": false,
          "voluntaryServiceStandard": null,
          "involuntaryServiceStandard": null,
          "rescheduleProcessingTime": null,
          "productSupplier": null,
          "RBDChangedRisk": false,
          "fareBrand": [
            ""
          ],
          "posArea": [
            null
          ]
        },
        "productSource": "OTH",
        "RBD": [
          "Q"
        ]
      },
      {
        "offerId": "18599004604928001",
        "legId": "d983cf575abe2d3ffad742382ab681db",
        "currency": "CNY",
        "platingCarrier": "CX",
        "pricePerPax": [
          {
            "paxType": "ADT",
            "baseFare": 581,
            "totalTax": 493,
            "taxBreakdown": [],
            "serviceFee": 10000
          }
        ],
        "cabin": [
          "Y"
        ],
        "fareBasis": [
          "QR21SGAO"
        ],
        "availability": [
          "9"
        ],
        "extraInfo": {
          "freeBaggageAllowance": [
            {
              "segmentId": "53b12297774d8fe96f199c3a9676ef47",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "7-e-e",
              "checkedBagPc": "1-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "e-e-e"
            }
          ]
        },
        "eligibilityFlag": false,
        "eligibilityDetail": null,
        "rules": {
          "refund": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "fullRefundAP": null,
              "refundFee": 1539
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "fullRefundAP": null,
              "refundFee": null
            }
          ],
          "change": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "changeFee": 513
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "changeFee": null
            }
          ]
        },
        "productType": null,
        "productTag": {
          "ticketPromise": null,
          "refuseDeadline": null,
          "ticketingTime": null,
          "reschedulePendingTime": null,
          "voluntaryRefundTime": null,
          "involuntaryRefundTime": null,
          "refundCondition": null,
          "reissueCondition": null,
          "voidingCondition": false,
          "voluntaryServiceStandard": null,
          "involuntaryServiceStandard": null,
          "rescheduleProcessingTime": null,
          "productSupplier": null,
          "RBDChangedRisk": false,
          "fareBrand": [
            ""
          ],
          "posArea": [
            null
          ]
        },
        "productSource": "OTH",
        "RBD": [
          "Q"
        ]
      },
      {
        "offerId": "18599004604928002",
        "legId": "3298ca1f7da8024920eee3586d7b232b",
        "currency": "CNY",
        "platingCarrier": "CX",
        "pricePerPax": [
          {
            "paxType": "ADT",
            "baseFare": 581,
            "totalTax": 493,
            "taxBreakdown": [],
            "serviceFee": 10000
          }
        ],
        "cabin": [
          "Y"
        ],
        "fareBasis": [
          "QR21SGAO"
        ],
        "availability": [
          "9"
        ],
        "extraInfo": {
          "freeBaggageAllowance": [
            {
              "segmentId": "32e58c28a691059e923ba54672ce4f50",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "7-e-e",
              "checkedBagPc": "1-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "e-e-e"
            }
          ]
        },
        "eligibilityFlag": false,
        "eligibilityDetail": null,
        "rules": {
          "refund": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "fullRefundAP": null,
              "refundFee": 1539
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "fullRefundAP": null,
              "refundFee": null
            }
          ],
          "change": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "changeFee": 513
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "changeFee": null
            }
          ]
        },
        "productType": null,
        "productTag": {
          "ticketPromise": null,
          "refuseDeadline": null,
          "ticketingTime": null,
          "reschedulePendingTime": null,
          "voluntaryRefundTime": null,
          "involuntaryRefundTime": null,
          "refundCondition": null,
          "reissueCondition": null,
          "voidingCondition": false,
          "voluntaryServiceStandard": null,
          "involuntaryServiceStandard": null,
          "rescheduleProcessingTime": null,
          "productSupplier": null,
          "RBDChangedRisk": false,
          "fareBrand": [
            ""
          ],
          "posArea": [
            null
          ]
        },
        "productSource": "OTH",
        "RBD": [
          "Q"
        ]
      },
      {
        "offerId": "18599004604928003",
        "legId": "d0a681604c6cc27f41a43d2c3f497712",
        "currency": "CNY",
        "platingCarrier": "CX",
        "pricePerPax": [
          {
            "paxType": "ADT",
            "baseFare": 581,
            "totalTax": 493,
            "taxBreakdown": [],
            "serviceFee": 10000
          }
        ],
        "cabin": [
          "Y"
        ],
        "fareBasis": [
          "QR21SGAO"
        ],
        "availability": [
          "9"
        ],
        "extraInfo": {
          "freeBaggageAllowance": [
            {
              "segmentId": "2fad8e6fba19d2b1803941cb18e8fb68",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "7-e-e",
              "checkedBagPc": "1-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "e-e-e"
            }
          ]
        },
        "eligibilityFlag": false,
        "eligibilityDetail": null,
        "rules": {
          "refund": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "fullRefundAP": null,
              "refundFee": 1539
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "fullRefundAP": null,
              "refundFee": null
            }
          ],
          "change": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "changeFee": 513
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "changeFee": null
            }
          ]
        },
        "productType": null,
        "productTag": {
          "ticketPromise": null,
          "refuseDeadline": null,
          "ticketingTime": null,
          "reschedulePendingTime": null,
          "voluntaryRefundTime": null,
          "involuntaryRefundTime": null,
          "refundCondition": null,
          "reissueCondition": null,
          "voidingCondition": false,
          "voluntaryServiceStandard": null,
          "involuntaryServiceStandard": null,
          "rescheduleProcessingTime": null,
          "productSupplier": null,
          "RBDChangedRisk": false,
          "fareBrand": [
            ""
          ],
          "posArea": [
            null
          ]
        },
        "productSource": "OTH",
        "RBD": [
          "Q"
        ]
      },
      {
        "offerId": "18599004604928004",
        "legId": "4be748ffedcbcda080aa5eeacdf4e122",
        "currency": "CNY",
        "platingCarrier": "CX",
        "pricePerPax": [
          {
            "paxType": "ADT",
            "baseFare": 581,
            "totalTax": 493,
            "taxBreakdown": [],
            "serviceFee": 10000
          }
        ],
        "cabin": [
          "Y"
        ],
        "fareBasis": [
          "QR21SGAO"
        ],
        "availability": [
          "9"
        ],
        "extraInfo": {
          "freeBaggageAllowance": [
            {
              "segmentId": "64111e1653f09e9e6c865a33956586b7",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "7-e-e",
              "checkedBagPc": "1-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "e-e-e"
            }
          ]
        },
        "eligibilityFlag": false,
        "eligibilityDetail": null,
        "rules": {
          "refund": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "fullRefundAP": null,
              "refundFee": 1539
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "fullRefundAP": null,
              "refundFee": null
            }
          ],
          "change": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "changeFee": 513
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "changeFee": null
            }
          ]
        },
        "productType": null,
        "productTag": {
          "ticketPromise": null,
          "refuseDeadline": null,
          "ticketingTime": null,
          "reschedulePendingTime": null,
          "voluntaryRefundTime": null,
          "involuntaryRefundTime": null,
          "refundCondition": null,
          "reissueCondition": null,
          "voidingCondition": false,
          "voluntaryServiceStandard": null,
          "involuntaryServiceStandard": null,
          "rescheduleProcessingTime": null,
          "productSupplier": null,
          "RBDChangedRisk": false,
          "fareBrand": [
            ""
          ],
          "posArea": [
            null
          ]
        },
        "productSource": "OTH",
        "RBD": [
          "Q"
        ]
      },
      {
        "offerId": "18599004604928005",
        "legId": "117798b21bfbd1ec93e97867d94acfc7",
        "currency": "CNY",
        "platingCarrier": "CX",
        "pricePerPax": [
          {
            "paxType": "ADT",
            "baseFare": 581,
            "totalTax": 500,
            "taxBreakdown": [],
            "serviceFee": 10000
          }
        ],
        "cabin": [
          "Y"
        ],
        "fareBasis": [
          "QR21SGAO"
        ],
        "availability": [
          "9"
        ],
        "extraInfo": {
          "freeBaggageAllowance": [
            {
              "segmentId": "647e13a89f4a18791a9792903fc1161c",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "7-e-e",
              "checkedBagPc": "1-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "e-e-e"
            }
          ]
        },
        "eligibilityFlag": false,
        "eligibilityDetail": null,
        "rules": {
          "refund": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "fullRefundAP": null,
              "refundFee": 1539
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "fullRefundAP": null,
              "refundFee": null
            }
          ],
          "change": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "changeFee": 513
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "changeFee": null
            }
          ]
        },
        "productType": null,
        "productTag": {
          "ticketPromise": null,
          "refuseDeadline": null,
          "ticketingTime": null,
          "reschedulePendingTime": null,
          "voluntaryRefundTime": null,
          "involuntaryRefundTime": null,
          "refundCondition": null,
          "reissueCondition": null,
          "voidingCondition": false,
          "voluntaryServiceStandard": null,
          "involuntaryServiceStandard": null,
          "rescheduleProcessingTime": null,
          "productSupplier": null,
          "RBDChangedRisk": false,
          "fareBrand": [
            ""
          ],
          "posArea": [
            null
          ]
        },
        "productSource": "OTH",
        "RBD": [
          "Q"
        ]
      },
      {
        "offerId": "18599004604928006",
        "legId": "b0bcc27cd5b692d7a3b5741856ffd887",
        "currency": "CNY",
        "platingCarrier": "TR",
        "pricePerPax": [
          {
            "paxType": "ADT",
            "baseFare": 665,
            "totalTax": 431,
            "taxBreakdown": [],
            "serviceFee": 10000
          }
        ],
        "cabin": [
          "Y"
        ],
        "fareBasis": [
          "O2TR24"
        ],
        "availability": [
          "7"
        ],
        "extraInfo": {
          "freeBaggageAllowance": [
            {
              "segmentId": "3fd4627891bbd2e75a88e22a6289b4f1",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "10-e-e",
              "checkedBagPc": "e-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "30-e-e"
            }
          ]
        },
        "eligibilityFlag": false,
        "eligibilityDetail": null,
        "rules": {
          "refund": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "airlinePolicyApplied",
              "applicableTime": [
                null,
                0
              ],
              "fullRefundAP": null,
              "refundFee": null
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "fullRefundAP": null,
              "refundFee": null
            }
          ],
          "change": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "airlinePolicyApplied",
              "applicableTime": [
                null,
                0
              ],
              "changeFee": null
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "changeFee": null
            }
          ]
        },
        "productType": null,
        "productTag": {
          "ticketPromise": null,
          "refuseDeadline": null,
          "ticketingTime": null,
          "reschedulePendingTime": null,
          "voluntaryRefundTime": null,
          "involuntaryRefundTime": null,
          "refundCondition": null,
          "reissueCondition": null,
          "voidingCondition": false,
          "voluntaryServiceStandard": null,
          "involuntaryServiceStandard": null,
          "rescheduleProcessingTime": null,
          "productSupplier": null,
          "RBDChangedRisk": false,
          "fareBrand": [
            ""
          ],
          "posArea": [
            null
          ]
        },
        "productSource": "OTH",
        "RBD": [
          "O"
        ]
      },
      {
        "offerId": "18599004604928007",
        "legId": "ca64c11cc0ffa257e6be8f81fdde8b58",
        "currency": "CNY",
        "platingCarrier": "TR",
        "pricePerPax": [
          {
            "paxType": "ADT",
            "baseFare": 665,
            "totalTax": 431,
            "taxBreakdown": [],
            "serviceFee": 10000
          }
        ],
        "cabin": [
          "Y"
        ],
        "fareBasis": [
          "O2TR24"
        ],
        "availability": [
          "7"
        ],
        "extraInfo": {
          "freeBaggageAllowance": [
            {
              "segmentId": "80fef04eaab0ffa974435c95c4b071d9",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "10-e-e",
              "checkedBagPc": "e-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "30-e-e"
            }
          ]
        },
        "eligibilityFlag": false,
        "eligibilityDetail": null,
        "rules": {
          "refund": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "airlinePolicyApplied",
              "applicableTime": [
                null,
                0
              ],
              "fullRefundAP": null,
              "refundFee": null
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "fullRefundAP": null,
              "refundFee": null
            }
          ],
          "change": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "airlinePolicyApplied",
              "applicableTime": [
                null,
                0
              ],
              "changeFee": null
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "changeFee": null
            }
          ]
        },
        "productType": null,
        "productTag": {
          "ticketPromise": null,
          "refuseDeadline": null,
          "ticketingTime": null,
          "reschedulePendingTime": null,
          "voluntaryRefundTime": null,
          "involuntaryRefundTime": null,
          "refundCondition": null,
          "reissueCondition": null,
          "voidingCondition": false,
          "voluntaryServiceStandard": null,
          "involuntaryServiceStandard": null,
          "rescheduleProcessingTime": null,
          "productSupplier": null,
          "RBDChangedRisk": false,
          "fareBrand": [
            ""
          ],
          "posArea": [
            null
          ]
        },
        "productSource": "OTH",
        "RBD": [
          "O"
        ]
      },
      {
        "offerId": "18599004604928008",
        "legId": "f3c95e5817b0121fe82c082dd6525907",
        "currency": "CNY",
        "platingCarrier": "TR",
        "pricePerPax": [
          {
            "paxType": "ADT",
            "baseFare": 665,
            "totalTax": 431,
            "taxBreakdown": [],
            "serviceFee": 10000
          }
        ],
        "cabin": [
          "Y"
        ],
        "fareBasis": [
          "O2TR24"
        ],
        "availability": [
          "7"
        ],
        "extraInfo": {
          "freeBaggageAllowance": [
            {
              "segmentId": "04ccef35620796d0b3465f82f7b25141",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "10-e-e",
              "checkedBagPc": "e-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "30-e-e"
            }
          ]
        },
        "eligibilityFlag": false,
        "eligibilityDetail": null,
        "rules": {
          "refund": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "airlinePolicyApplied",
              "applicableTime": [
                null,
                0
              ],
              "fullRefundAP": null,
              "refundFee": null
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "fullRefundAP": null,
              "refundFee": null
            }
          ],
          "change": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "airlinePolicyApplied",
              "applicableTime": [
                null,
                0
              ],
              "changeFee": null
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "changeFee": null
            }
          ]
        },
        "productType": null,
        "productTag": {
          "ticketPromise": null,
          "refuseDeadline": null,
          "ticketingTime": null,
          "reschedulePendingTime": null,
          "voluntaryRefundTime": null,
          "involuntaryRefundTime": null,
          "refundCondition": null,
          "reissueCondition": null,
          "voidingCondition": false,
          "voluntaryServiceStandard": null,
          "involuntaryServiceStandard": null,
          "rescheduleProcessingTime": null,
          "productSupplier": null,
          "RBDChangedRisk": false,
          "fareBrand": [
            ""
          ],
          "posArea": [
            null
          ]
        },
        "productSource": "OTH",
        "RBD": [
          "O"
        ]
      },
      {
        "offerId": "18599004604928009",
        "legId": "8588db22b24382d9c4bcf7df936bb301",
        "currency": "CNY",
        "platingCarrier": "OD",
        "pricePerPax": [
          {
            "paxType": "ADT",
            "baseFare": 590,
            "totalTax": 548,
            "taxBreakdown": [],
            "serviceFee": 10000
          }
        ],
        "cabin": [
          "Y",
          "Y"
        ],
        "fareBasis": [
          "XOWSG",
          "TOWMY"
        ],
        "availability": [
          "9",
          "3"
        ],
        "extraInfo": {
          "freeBaggageAllowance": [
            {
              "segmentId": "835485e3232374afa6fae8445c307db2",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "7-e-e",
              "checkedBagPc": "e-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "0-e-e"
            },
            {
              "segmentId": "eb0a5f5dc3f08b4c27e34f4e22eebc13",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "7-e-e",
              "checkedBagPc": "e-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "0-e-e"
            }
          ]
        },
        "eligibilityFlag": false,
        "eligibilityDetail": null,
        "rules": {
          "refund": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "notAllowed",
              "applicableTime": [
                null,
                0
              ],
              "fullRefundAP": null,
              "refundFee": null
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "fullRefundAP": null,
              "refundFee": null
            }
          ],
          "change": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "changeFee": 396
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                0,
                null
              ],
              "changeFee": 396
            }
          ]
        },
        "productType": null,
        "productTag": {
          "ticketPromise": null,
          "refuseDeadline": null,
          "ticketingTime": null,
          "reschedulePendingTime": null,
          "voluntaryRefundTime": null,
          "involuntaryRefundTime": null,
          "refundCondition": null,
          "reissueCondition": null,
          "voidingCondition": false,
          "voluntaryServiceStandard": null,
          "involuntaryServiceStandard": null,
          "rescheduleProcessingTime": null,
          "productSupplier": null,
          "RBDChangedRisk": false,
          "fareBrand": [
            ""
          ],
          "posArea": [
            null
          ]
        },
        "productSource": "OTH",
        "RBD": [
          "X",
          "T"
        ]
      },
      {
        "offerId": "18599004604928010",
        "legId": "4ca1a5c8626ce530e39f8145c33f1474",
        "currency": "CNY",
        "platingCarrier": "EK",
        "pricePerPax": [
          {
            "paxType": "ADT",
            "baseFare": 824,
            "totalTax": 356,
            "taxBreakdown": [],
            "serviceFee": 10000
          }
        ],
        "cabin": [
          "Y",
          "Y"
        ],
        "fareBasis": [
          "TLEOPTH1",
          "TLEOPTH1"
        ],
        "availability": [
          "9",
          "9"
        ],
        "extraInfo": {
          "freeBaggageAllowance": [
            {
              "segmentId": "48db523b8c0e9e013bb5a5c6231bcbcd",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "7-e-e",
              "checkedBagPc": "e-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "25-e-e"
            },
            {
              "segmentId": "4d75b7cb49d590ab24a6f8af27f6140f",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "7-e-e",
              "checkedBagPc": "e-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "25-e-e"
            }
          ]
        },
        "eligibilityFlag": false,
        "eligibilityDetail": null,
        "rules": {
          "refund": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "fullRefundAP": null,
              "refundFee": 1233
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "airlinePolicyApplied",
              "applicableTime": [
                0,
                null
              ],
              "fullRefundAP": null,
              "refundFee": null
            }
          ],
          "change": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "changeFee": 882
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                0,
                null
              ],
              "changeFee": 882
            }
          ]
        },
        "productType": null,
        "productTag": {
          "ticketPromise": null,
          "refuseDeadline": null,
          "ticketingTime": null,
          "reschedulePendingTime": null,
          "voluntaryRefundTime": null,
          "involuntaryRefundTime": null,
          "refundCondition": null,
          "reissueCondition": null,
          "voidingCondition": false,
          "voluntaryServiceStandard": null,
          "involuntaryServiceStandard": null,
          "rescheduleProcessingTime": null,
          "productSupplier": null,
          "RBDChangedRisk": false,
          "fareBrand": [
            ""
          ],
          "posArea": [
            null
          ]
        },
        "productSource": "OTH",
        "RBD": [
          "T",
          "T"
        ]
      },
      {
        "offerId": "18599004604928011",
        "legId": "7c65f4bc4aed7cf994f537c992724b7d",
        "currency": "CNY",
        "platingCarrier": "CX",
        "pricePerPax": [
          {
            "paxType": "ADT",
            "baseFare": 821,
            "totalTax": 493,
            "taxBreakdown": [],
            "serviceFee": 10000
          }
        ],
        "cabin": [
          "Y"
        ],
        "fareBasis": [
          "NR21SGAO"
        ],
        "availability": [
          "9"
        ],
        "extraInfo": {
          "freeBaggageAllowance": [
            {
              "segmentId": "aeceb274c449aba22f8a0b9ec4558a3b",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "7-e-e",
              "checkedBagPc": "1-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "e-e-e"
            }
          ]
        },
        "eligibilityFlag": false,
        "eligibilityDetail": null,
        "rules": {
          "refund": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "fullRefundAP": null,
              "refundFee": 1539
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "fullRefundAP": null,
              "refundFee": null
            }
          ],
          "change": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "changeFee": 513
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "changeFee": null
            }
          ]
        },
        "productType": null,
        "productTag": {
          "ticketPromise": null,
          "refuseDeadline": null,
          "ticketingTime": null,
          "reschedulePendingTime": null,
          "voluntaryRefundTime": null,
          "involuntaryRefundTime": null,
          "refundCondition": null,
          "reissueCondition": null,
          "voidingCondition": false,
          "voluntaryServiceStandard": null,
          "involuntaryServiceStandard": null,
          "rescheduleProcessingTime": null,
          "productSupplier": null,
          "RBDChangedRisk": false,
          "fareBrand": [
            ""
          ],
          "posArea": [
            null
          ]
        },
        "productSource": "OTH",
        "RBD": [
          "N"
        ]
      },
      {
        "offerId": "18599004604928012",
        "legId": "b0a8ee411c05462608f32cf47eb062a7",
        "currency": "CNY",
        "platingCarrier": "CX",
        "pricePerPax": [
          {
            "paxType": "ADT",
            "baseFare": 821,
            "totalTax": 493,
            "taxBreakdown": [],
            "serviceFee": 10000
          }
        ],
        "cabin": [
          "Y"
        ],
        "fareBasis": [
          "NR21SGAO"
        ],
        "availability": [
          "9"
        ],
        "extraInfo": {
          "freeBaggageAllowance": [
            {
              "segmentId": "48d614fca550c46b0d56780741166732",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "7-e-e",
              "checkedBagPc": "1-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "e-e-e"
            }
          ]
        },
        "eligibilityFlag": false,
        "eligibilityDetail": null,
        "rules": {
          "refund": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "fullRefundAP": null,
              "refundFee": 1539
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "fullRefundAP": null,
              "refundFee": null
            }
          ],
          "change": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "changeFee": 513
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "changeFee": null
            }
          ]
        },
        "productType": null,
        "productTag": {
          "ticketPromise": null,
          "refuseDeadline": null,
          "ticketingTime": null,
          "reschedulePendingTime": null,
          "voluntaryRefundTime": null,
          "involuntaryRefundTime": null,
          "refundCondition": null,
          "reissueCondition": null,
          "voidingCondition": false,
          "voluntaryServiceStandard": null,
          "involuntaryServiceStandard": null,
          "rescheduleProcessingTime": null,
          "productSupplier": null,
          "RBDChangedRisk": false,
          "fareBrand": [
            ""
          ],
          "posArea": [
            null
          ]
        },
        "productSource": "OTH",
        "RBD": [
          "N"
        ]
      },
      {
        "offerId": "18599004604928013",
        "legId": "36add87e629211e8fd18f4ef3148a573",
        "currency": "CNY",
        "platingCarrier": "PR",
        "pricePerPax": [
          {
            "paxType": "ADT",
            "baseFare": 715,
            "totalTax": 707,
            "taxBreakdown": [],
            "serviceFee": 10000
          }
        ],
        "cabin": [
          "Y",
          "Y"
        ],
        "fareBasis": [
          "EOFSG",
          "EOFSG"
        ],
        "availability": [
          "9",
          "9"
        ],
        "extraInfo": {
          "freeBaggageAllowance": [
            {
              "segmentId": "b69ff15aeb38e94cc2292252e04f8fcc",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "7-e-e",
              "checkedBagPc": "e-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "30-e-e"
            },
            {
              "segmentId": "00ef587e15a9cb36ec5c67162e8c5643",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "7-e-e",
              "checkedBagPc": "e-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "30-e-e"
            }
          ]
        },
        "eligibilityFlag": false,
        "eligibilityDetail": null,
        "rules": {
          "refund": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "fullRefundAP": null,
              "refundFee": 1521
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                0,
                null
              ],
              "fullRefundAP": null,
              "refundFee": 1521
            }
          ],
          "change": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "changeFee": 846
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                0,
                null
              ],
              "changeFee": 846
            }
          ]
        },
        "productType": null,
        "productTag": {
          "ticketPromise": null,
          "refuseDeadline": null,
          "ticketingTime": null,
          "reschedulePendingTime": null,
          "voluntaryRefundTime": null,
          "involuntaryRefundTime": null,
          "refundCondition": null,
          "reissueCondition": null,
          "voidingCondition": false,
          "voluntaryServiceStandard": null,
          "involuntaryServiceStandard": null,
          "rescheduleProcessingTime": null,
          "productSupplier": null,
          "RBDChangedRisk": false,
          "fareBrand": [
            ""
          ],
          "posArea": [
            null
          ]
        },
        "productSource": "OTH",
        "RBD": [
          "E",
          "E"
        ]
      },
      {
        "offerId": "18599004604928014",
        "legId": "8a25d757d244e4459275110dbcbd3db2",
        "currency": "CNY",
        "platingCarrier": "PR",
        "pricePerPax": [
          {
            "paxType": "ADT",
            "baseFare": 715,
            "totalTax": 707,
            "taxBreakdown": [],
            "serviceFee": 10000
          }
        ],
        "cabin": [
          "Y",
          "Y"
        ],
        "fareBasis": [
          "EOFSG",
          "EOFSG"
        ],
        "availability": [
          "9",
          "9"
        ],
        "extraInfo": {
          "freeBaggageAllowance": [
            {
              "segmentId": "b4a93db7246e92c831047bf960f106fc",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "7-e-e",
              "checkedBagPc": "e-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "30-e-e"
            },
            {
              "segmentId": "c28efad31e183d1b13b6d5bac4048f9d",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "7-e-e",
              "checkedBagPc": "e-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "30-e-e"
            }
          ]
        },
        "eligibilityFlag": false,
        "eligibilityDetail": null,
        "rules": {
          "refund": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "fullRefundAP": null,
              "refundFee": 1521
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                0,
                null
              ],
              "fullRefundAP": null,
              "refundFee": 1521
            }
          ],
          "change": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "changeFee": 846
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                0,
                null
              ],
              "changeFee": 846
            }
          ]
        },
        "productType": null,
        "productTag": {
          "ticketPromise": null,
          "refuseDeadline": null,
          "ticketingTime": null,
          "reschedulePendingTime": null,
          "voluntaryRefundTime": null,
          "involuntaryRefundTime": null,
          "refundCondition": null,
          "reissueCondition": null,
          "voidingCondition": false,
          "voluntaryServiceStandard": null,
          "involuntaryServiceStandard": null,
          "rescheduleProcessingTime": null,
          "productSupplier": null,
          "RBDChangedRisk": false,
          "fareBrand": [
            "",
            ""
          ],
          "posArea": [
            null,
            null
          ]
        },
        "productSource": "OTH",
        "RBD": [
          "E",
          "E"
        ]
      },
      {
        "offerId": "18599004604928015",
        "legId": "41bc8806ebee2a2657fcf7f776be4baf",
        "currency": "CNY",
        "platingCarrier": "PR",
        "pricePerPax": [
          {
            "paxType": "ADT",
            "baseFare": 715,
            "totalTax": 707,
            "taxBreakdown": [],
            "serviceFee": 10000
          }
        ],
        "cabin": [
          "Y",
          "Y"
        ],
        "fareBasis": [
          "EOFSG",
          "EOFSG"
        ],
        "availability": [
          "9",
          "9"
        ],
        "extraInfo": {
          "freeBaggageAllowance": [
            {
              "segmentId": "8a94f78fdbce5c10087e2ce5ce14d6e9",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "7-e-e",
              "checkedBagPc": "e-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "30-e-e"
            },
            {
              "segmentId": "b2bce281d91a97f91d782d42c3defe1a",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "7-e-e",
              "checkedBagPc": "e-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "30-e-e"
            }
          ]
        },
        "eligibilityFlag": false,
        "eligibilityDetail": null,
        "rules": {
          "refund": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "fullRefundAP": null,
              "refundFee": 1521
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                0,
                null
              ],
              "fullRefundAP": null,
              "refundFee": 1521
            }
          ],
          "change": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "changeFee": 846
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                0,
                null
              ],
              "changeFee": 846
            }
          ]
        },
        "productType": null,
        "productTag": {
          "ticketPromise": null,
          "refuseDeadline": null,
          "ticketingTime": null,
          "reschedulePendingTime": null,
          "voluntaryRefundTime": null,
          "involuntaryRefundTime": null,
          "refundCondition": null,
          "reissueCondition": null,
          "voidingCondition": false,
          "voluntaryServiceStandard": null,
          "involuntaryServiceStandard": null,
          "rescheduleProcessingTime": null,
          "productSupplier": null,
          "RBDChangedRisk": false,
          "fareBrand": [
            "",
            ""
          ],
          "posArea": [
            null,
            null
          ]
        },
        "productSource": "OTH",
        "RBD": [
          "E",
          "E"
        ]
      },
      {
        "offerId": "18599004604928016",
        "legId": "859fb20cfb266dd7b112cd3848b96a00",
        "currency": "CNY",
        "platingCarrier": "PR",
        "pricePerPax": [
          {
            "paxType": "ADT",
            "baseFare": 715,
            "totalTax": 707,
            "taxBreakdown": [],
            "serviceFee": 10000
          }
        ],
        "cabin": [
          "Y",
          "Y"
        ],
        "fareBasis": [
          "EOFSG",
          "EOFSG"
        ],
        "availability": [
          "9",
          "9"
        ],
        "extraInfo": {
          "freeBaggageAllowance": [
            {
              "segmentId": "b4a93db7246e92c831047bf960f106fc",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "7-e-e",
              "checkedBagPc": "e-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "30-e-e"
            },
            {
              "segmentId": "6492b26a5ed3f5b83f25cd2610ae6331",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "7-e-e",
              "checkedBagPc": "e-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "30-e-e"
            }
          ]
        },
        "eligibilityFlag": false,
        "eligibilityDetail": null,
        "rules": {
          "refund": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "fullRefundAP": null,
              "refundFee": 1521
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                0,
                null
              ],
              "fullRefundAP": null,
              "refundFee": 1521
            }
          ],
          "change": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "changeFee": 846
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                0,
                null
              ],
              "changeFee": 846
            }
          ]
        },
        "productType": null,
        "productTag": {
          "ticketPromise": null,
          "refuseDeadline": null,
          "ticketingTime": null,
          "reschedulePendingTime": null,
          "voluntaryRefundTime": null,
          "involuntaryRefundTime": null,
          "refundCondition": null,
          "reissueCondition": null,
          "voidingCondition": false,
          "voluntaryServiceStandard": null,
          "involuntaryServiceStandard": null,
          "rescheduleProcessingTime": null,
          "productSupplier": null,
          "RBDChangedRisk": false,
          "fareBrand": [
            "",
            ""
          ],
          "posArea": [
            null,
            null
          ]
        },
        "productSource": "OTH",
        "RBD": [
          "E",
          "E"
        ]
      },
      {
        "offerId": "18599004604928017",
        "legId": "8d303360b4a1b8c245362334f017c75c",
        "currency": "CNY",
        "platingCarrier": "PR",
        "pricePerPax": [
          {
            "paxType": "ADT",
            "baseFare": 715,
            "totalTax": 707,
            "taxBreakdown": [],
            "serviceFee": 10000
          }
        ],
        "cabin": [
          "Y",
          "Y"
        ],
        "fareBasis": [
          "EOFSG",
          "EOFSG"
        ],
        "availability": [
          "9",
          "9"
        ],
        "extraInfo": {
          "freeBaggageAllowance": [
            {
              "segmentId": "b4a93db7246e92c831047bf960f106fc",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "7-e-e",
              "checkedBagPc": "e-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "30-e-e"
            },
            {
              "segmentId": "3c4ea26562e2f10f4301854adc9c7d10",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "7-e-e",
              "checkedBagPc": "e-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "30-e-e"
            }
          ]
        },
        "eligibilityFlag": false,
        "eligibilityDetail": null,
        "rules": {
          "refund": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "fullRefundAP": null,
              "refundFee": 1521
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                0,
                null
              ],
              "fullRefundAP": null,
              "refundFee": 1521
            }
          ],
          "change": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "changeFee": 846
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                0,
                null
              ],
              "changeFee": 846
            }
          ]
        },
        "productType": null,
        "productTag": {
          "ticketPromise": null,
          "refuseDeadline": null,
          "ticketingTime": null,
          "reschedulePendingTime": null,
          "voluntaryRefundTime": null,
          "involuntaryRefundTime": null,
          "refundCondition": null,
          "reissueCondition": null,
          "voidingCondition": false,
          "voluntaryServiceStandard": null,
          "involuntaryServiceStandard": null,
          "rescheduleProcessingTime": null,
          "productSupplier": null,
          "RBDChangedRisk": false,
          "fareBrand": [
            "",
            ""
          ],
          "posArea": [
            null,
            null
          ]
        },
        "productSource": "OTH",
        "RBD": [
          "E",
          "E"
        ]
      },
      {
        "offerId": "18599004604928018",
        "legId": "349ff3b3a29f14525cc15b4801e8bb27",
        "currency": "CNY",
        "platingCarrier": "SL",
        "pricePerPax": [
          {
            "paxType": "ADT",
            "baseFare": 865,
            "totalTax": 1037,
            "taxBreakdown": [],
            "serviceFee": 10000
          }
        ],
        "cabin": [
          "Y",
          "Y"
        ],
        "fareBasis": [
          "QLTOW",
          "TLTOW"
        ],
        "availability": [
          "3",
          "5"
        ],
        "extraInfo": {
          "freeBaggageAllowance": [
            {
              "segmentId": "4c78e592e8176ccff7cf410215ed0652",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "7-e-e",
              "checkedBagPc": "e-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "0-e-e"
            },
            {
              "segmentId": "ae05a7ef99081eae066ab77c2a341dd6",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "7-e-e",
              "checkedBagPc": "e-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "0-e-e"
            }
          ]
        },
        "eligibilityFlag": false,
        "eligibilityDetail": null,
        "rules": {
          "refund": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "notAllowed",
              "applicableTime": [
                null,
                0
              ],
              "fullRefundAP": null,
              "refundFee": null
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "fullRefundAP": null,
              "refundFee": null
            }
          ],
          "change": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "changeFee": 324
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                0,
                null
              ],
              "changeFee": 324
            }
          ]
        },
        "productType": null,
        "productTag": {
          "ticketPromise": null,
          "refuseDeadline": null,
          "ticketingTime": null,
          "reschedulePendingTime": null,
          "voluntaryRefundTime": null,
          "involuntaryRefundTime": null,
          "refundCondition": null,
          "reissueCondition": null,
          "voidingCondition": false,
          "voluntaryServiceStandard": null,
          "involuntaryServiceStandard": null,
          "rescheduleProcessingTime": null,
          "productSupplier": null,
          "RBDChangedRisk": false,
          "fareBrand": [
            "",
            ""
          ],
          "posArea": [
            null,
            null
          ]
        },
        "productSource": "OTH",
        "RBD": [
          "Q",
          "T"
        ]
      },
      {
        "offerId": "18599004604928019",
        "legId": "39133ed727c0e82c4ac60e7d956f4267",
        "currency": "CNY",
        "platingCarrier": "HO",
        "pricePerPax": [
          {
            "paxType": "ADT",
            "baseFare": 1138,
            "totalTax": 1036,
            "taxBreakdown": [],
            "serviceFee": 10000
          }
        ],
        "cabin": [
          "Y",
          "Y"
        ],
        "fareBasis": [
          "KOWG",
          "KOWA"
        ],
        "availability": [
          "9",
          "5"
        ],
        "extraInfo": {
          "freeBaggageAllowance": [
            {
              "segmentId": "96e600dd1842f97ada204499be3b7f44",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "10-e-e",
              "checkedBagPc": "2-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "e-e-e"
            },
            {
              "segmentId": "97ab323296c8a64827df7cb76d219bcd",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "10-e-e",
              "checkedBagPc": "2-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "e-e-e"
            }
          ]
        },
        "eligibilityFlag": false,
        "eligibilityDetail": null,
        "rules": {
          "refund": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "fullRefundAP": null,
              "refundFee": 1062
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                0,
                null
              ],
              "fullRefundAP": null,
              "refundFee": 1062
            }
          ],
          "change": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "changeFee": 288
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                0,
                null
              ],
              "changeFee": 288
            }
          ]
        },
        "productType": null,
        "productTag": {
          "ticketPromise": null,
          "refuseDeadline": null,
          "ticketingTime": null,
          "reschedulePendingTime": null,
          "voluntaryRefundTime": null,
          "involuntaryRefundTime": null,
          "refundCondition": null,
          "reissueCondition": null,
          "voidingCondition": false,
          "voluntaryServiceStandard": null,
          "involuntaryServiceStandard": null,
          "rescheduleProcessingTime": null,
          "productSupplier": null,
          "RBDChangedRisk": false,
          "fareBrand": [
            "",
            ""
          ],
          "posArea": [
            null,
            null
          ]
        },
        "productSource": "OTH",
        "RBD": [
          "K",
          "K"
        ]
      },
      {
        "offerId": "18599004604928020",
        "legId": "e346b838aa5b68074d34ec3ae42e1173",
        "currency": "CNY",
        "platingCarrier": "MU",
        "pricePerPax": [
          {
            "paxType": "ADT",
            "baseFare": 1310,
            "totalTax": 995,
            "taxBreakdown": [],
            "serviceFee": 10000
          }
        ],
        "cabin": [
          "Y",
          "Y"
        ],
        "fareBasis": [
          "TLE0WCSS",
          "TSE0WCS1"
        ],
        "availability": [
          "9",
          "9"
        ],
        "extraInfo": {
          "freeBaggageAllowance": [
            {
              "segmentId": "e4a9f2ac53820653e7034a9d299ac83a",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "8-e-e",
              "checkedBagPc": "2-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "e-e-e"
            },
            {
              "segmentId": "006cea79d019cc7a973ab5007496baf5",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "8-e-e",
              "checkedBagPc": "2-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "e-e-e"
            }
          ]
        },
        "eligibilityFlag": false,
        "eligibilityDetail": null,
        "rules": {
          "refund": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "fullRefundAP": null,
              "refundFee": 1278
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                0,
                null
              ],
              "fullRefundAP": null,
              "refundFee": 1278
            }
          ],
          "change": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "changeFee": 387
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                0,
                null
              ],
              "changeFee": 387
            }
          ]
        },
        "productType": null,
        "productTag": {
          "ticketPromise": null,
          "refuseDeadline": null,
          "ticketingTime": null,
          "reschedulePendingTime": null,
          "voluntaryRefundTime": null,
          "involuntaryRefundTime": null,
          "refundCondition": null,
          "reissueCondition": null,
          "voidingCondition": false,
          "voluntaryServiceStandard": null,
          "involuntaryServiceStandard": null,
          "rescheduleProcessingTime": null,
          "productSupplier": null,
          "RBDChangedRisk": false,
          "fareBrand": [
            "",
            ""
          ],
          "posArea": [
            null,
            null
          ]
        },
        "productSource": "OTH",
        "RBD": [
          "T",
          "T"
        ]
      },
      {
        "offerId": "18599004604928021",
        "legId": "edfe8777f8bfaaabf5a77bbdf882e9c1",
        "currency": "CNY",
        "platingCarrier": "SQ",
        "pricePerPax": [
          {
            "paxType": "ADT",
            "baseFare": 2042,
            "totalTax": 344,
            "taxBreakdown": [],
            "serviceFee": 10000
          }
        ],
        "cabin": [
          "Y"
        ],
        "fareBasis": [
          "W13SGOPO"
        ],
        "availability": [
          "9"
        ],
        "extraInfo": {
          "freeBaggageAllowance": [
            {
              "segmentId": "6b960da8d52deb8dc95d523e475ef80e",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "99*99*99-e-e",
              "cabinBagWeight": "20-e-e",
              "checkedBagPc": "e-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "30-e-e"
            }
          ]
        },
        "eligibilityFlag": false,
        "eligibilityDetail": null,
        "rules": {
          "refund": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "fullRefundAP": null,
              "refundFee": 675
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "fullRefundAP": null,
              "refundFee": null
            }
          ],
          "change": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "changeFee": 162
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "changeFee": null
            }
          ]
        },
        "productType": null,
        "productTag": {
          "ticketPromise": null,
          "refuseDeadline": null,
          "ticketingTime": null,
          "reschedulePendingTime": null,
          "voluntaryRefundTime": null,
          "involuntaryRefundTime": null,
          "refundCondition": null,
          "reissueCondition": null,
          "voidingCondition": false,
          "voluntaryServiceStandard": null,
          "involuntaryServiceStandard": null,
          "rescheduleProcessingTime": null,
          "productSupplier": null,
          "RBDChangedRisk": false,
          "fareBrand": [
            "",
            ""
          ],
          "posArea": [
            null,
            null
          ]
        },
        "productSource": "OTH",
        "RBD": [
          "W"
        ]
      },
      {
        "offerId": "18599004604928022",
        "legId": "3cc5c538d275c170330034d78cfd83a7",
        "currency": "CNY",
        "platingCarrier": "SQ",
        "pricePerPax": [
          {
            "paxType": "ADT",
            "baseFare": 2042,
            "totalTax": 344,
            "taxBreakdown": [],
            "serviceFee": 10000
          }
        ],
        "cabin": [
          "Y"
        ],
        "fareBasis": [
          "W13SGOPO"
        ],
        "availability": [
          "9"
        ],
        "extraInfo": {
          "freeBaggageAllowance": [
            {
              "segmentId": "c01291ecd6695145bd85ee3c50fd8f42",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "99*99*99-e-e",
              "cabinBagWeight": "20-e-e",
              "checkedBagPc": "e-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "30-e-e"
            }
          ]
        },
        "eligibilityFlag": false,
        "eligibilityDetail": null,
        "rules": {
          "refund": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "fullRefundAP": null,
              "refundFee": 675
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "fullRefundAP": null,
              "refundFee": null
            }
          ],
          "change": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "changeFee": 162
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "changeFee": null
            }
          ]
        },
        "productType": null,
        "productTag": {
          "ticketPromise": null,
          "refuseDeadline": null,
          "ticketingTime": null,
          "reschedulePendingTime": null,
          "voluntaryRefundTime": null,
          "involuntaryRefundTime": null,
          "refundCondition": null,
          "reissueCondition": null,
          "voidingCondition": false,
          "voluntaryServiceStandard": null,
          "involuntaryServiceStandard": null,
          "rescheduleProcessingTime": null,
          "productSupplier": null,
          "RBDChangedRisk": false,
          "fareBrand": [
            ""
          ],
          "posArea": [
            null
          ]
        },
        "productSource": "OTH",
        "RBD": [
          "W"
        ]
      },
      {
        "offerId": "18599004604928023",
        "legId": "3b040a54341808cc80c000ace2a2e839",
        "currency": "CNY",
        "platingCarrier": "SQ",
        "pricePerPax": [
          {
            "paxType": "ADT",
            "baseFare": 2042,
            "totalTax": 344,
            "taxBreakdown": [],
            "serviceFee": 10000
          }
        ],
        "cabin": [
          "Y"
        ],
        "fareBasis": [
          "W13SGOPO"
        ],
        "availability": [
          "9"
        ],
        "extraInfo": {
          "freeBaggageAllowance": [
            {
              "segmentId": "d419b4249eb9cb802e5cf4289fea9730",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "99*99*99-e-e",
              "cabinBagWeight": "20-e-e",
              "checkedBagPc": "e-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "30-e-e"
            }
          ]
        },
        "eligibilityFlag": false,
        "eligibilityDetail": null,
        "rules": {
          "refund": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "fullRefundAP": null,
              "refundFee": 675
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "fullRefundAP": null,
              "refundFee": null
            }
          ],
          "change": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "changeFee": 162
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "changeFee": null
            }
          ]
        },
        "productType": null,
        "productTag": {
          "ticketPromise": null,
          "refuseDeadline": null,
          "ticketingTime": null,
          "reschedulePendingTime": null,
          "voluntaryRefundTime": null,
          "involuntaryRefundTime": null,
          "refundCondition": null,
          "reissueCondition": null,
          "voidingCondition": false,
          "voluntaryServiceStandard": null,
          "involuntaryServiceStandard": null,
          "rescheduleProcessingTime": null,
          "productSupplier": null,
          "RBDChangedRisk": false,
          "fareBrand": [
            ""
          ],
          "posArea": [
            null
          ]
        },
        "productSource": "OTH",
        "RBD": [
          "W"
        ]
      },
      {
        "offerId": "18599004604928024",
        "legId": "7657dce55673fe1bab522315aae0cb88",
        "currency": "CNY",
        "platingCarrier": "SQ",
        "pricePerPax": [
          {
            "paxType": "ADT",
            "baseFare": 2042,
            "totalTax": 344,
            "taxBreakdown": [],
            "serviceFee": 10000
          }
        ],
        "cabin": [
          "Y"
        ],
        "fareBasis": [
          "W13SGOPO"
        ],
        "availability": [
          "9"
        ],
        "extraInfo": {
          "freeBaggageAllowance": [
            {
              "segmentId": "d05cecbc8376d63126166903a26aba31",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "99*99*99-e-e",
              "cabinBagWeight": "20-e-e",
              "checkedBagPc": "e-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "30-e-e"
            }
          ]
        },
        "eligibilityFlag": false,
        "eligibilityDetail": null,
        "rules": {
          "refund": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "fullRefundAP": null,
              "refundFee": 675
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "fullRefundAP": null,
              "refundFee": null
            }
          ],
          "change": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "changeFee": 162
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "changeFee": null
            }
          ]
        },
        "productType": null,
        "productTag": {
          "ticketPromise": null,
          "refuseDeadline": null,
          "ticketingTime": null,
          "reschedulePendingTime": null,
          "voluntaryRefundTime": null,
          "involuntaryRefundTime": null,
          "refundCondition": null,
          "reissueCondition": null,
          "voidingCondition": false,
          "voluntaryServiceStandard": null,
          "involuntaryServiceStandard": null,
          "rescheduleProcessingTime": null,
          "productSupplier": null,
          "RBDChangedRisk": false,
          "fareBrand": [
            ""
          ],
          "posArea": [
            null
          ]
        },
        "productSource": "OTH",
        "RBD": [
          "W"
        ]
      },
      {
        "offerId": "18599004604928025",
        "legId": "56a9b70199cbbd080b61f6a85ebe745e",
        "currency": "CNY",
        "platingCarrier": "SQ",
        "pricePerPax": [
          {
            "paxType": "ADT",
            "baseFare": 2042,
            "totalTax": 344,
            "taxBreakdown": [],
            "serviceFee": 10000
          }
        ],
        "cabin": [
          "Y"
        ],
        "fareBasis": [
          "W13SGOPO"
        ],
        "availability": [
          "9"
        ],
        "extraInfo": {
          "freeBaggageAllowance": [
            {
              "segmentId": "bea805b04550473ba8600add22dead54",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "99*99*99-e-e",
              "cabinBagWeight": "20-e-e",
              "checkedBagPc": "e-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "30-e-e"
            }
          ]
        },
        "eligibilityFlag": false,
        "eligibilityDetail": null,
        "rules": {
          "refund": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "fullRefundAP": null,
              "refundFee": 675
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "fullRefundAP": null,
              "refundFee": null
            }
          ],
          "change": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "changeFee": 162
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "changeFee": null
            }
          ]
        },
        "productType": null,
        "productTag": {
          "ticketPromise": null,
          "refuseDeadline": null,
          "ticketingTime": null,
          "reschedulePendingTime": null,
          "voluntaryRefundTime": null,
          "involuntaryRefundTime": null,
          "refundCondition": null,
          "reissueCondition": null,
          "voidingCondition": false,
          "voluntaryServiceStandard": null,
          "involuntaryServiceStandard": null,
          "rescheduleProcessingTime": null,
          "productSupplier": null,
          "RBDChangedRisk": false,
          "fareBrand": [
            ""
          ],
          "posArea": [
            null
          ]
        },
        "productSource": "OTH",
        "RBD": [
          "W"
        ]
      },
      {
        "offerId": "18599004604928026",
        "legId": "9fe6872db6329c186bd173245a743001",
        "currency": "CNY",
        "platingCarrier": "SQ",
        "pricePerPax": [
          {
            "paxType": "ADT",
            "baseFare": 2042,
            "totalTax": 344,
            "taxBreakdown": [],
            "serviceFee": 10000
          }
        ],
        "cabin": [
          "Y"
        ],
        "fareBasis": [
          "W13SGOPO"
        ],
        "availability": [
          "9"
        ],
        "extraInfo": {
          "freeBaggageAllowance": [
            {
              "segmentId": "87a35cb1dc9476a62ffe7bffc08cb71a",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "99*99*99-e-e",
              "cabinBagWeight": "20-e-e",
              "checkedBagPc": "e-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "30-e-e"
            }
          ]
        },
        "eligibilityFlag": false,
        "eligibilityDetail": null,
        "rules": {
          "refund": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "fullRefundAP": null,
              "refundFee": 675
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "fullRefundAP": null,
              "refundFee": null
            }
          ],
          "change": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "changeFee": 162
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "changeFee": null
            }
          ]
        },
        "productType": null,
        "productTag": {
          "ticketPromise": null,
          "refuseDeadline": null,
          "ticketingTime": null,
          "reschedulePendingTime": null,
          "voluntaryRefundTime": null,
          "involuntaryRefundTime": null,
          "refundCondition": null,
          "reissueCondition": null,
          "voidingCondition": false,
          "voluntaryServiceStandard": null,
          "involuntaryServiceStandard": null,
          "rescheduleProcessingTime": null,
          "productSupplier": null,
          "RBDChangedRisk": false,
          "fareBrand": [
            ""
          ],
          "posArea": [
            null
          ]
        },
        "productSource": "OTH",
        "RBD": [
          "W"
        ]
      },
      {
        "offerId": "18599004604928027",
        "legId": "69473a87447d044b921896a865802e11",
        "currency": "CNY",
        "platingCarrier": "CI",
        "pricePerPax": [
          {
            "paxType": "ADT",
            "baseFare": 1694,
            "totalTax": 844,
            "taxBreakdown": [],
            "serviceFee": 10000
          }
        ],
        "cabin": [
          "Y",
          "Y"
        ],
        "fareBasis": [
          "NOSG",
          "NOSG"
        ],
        "availability": [
          "7",
          "7"
        ],
        "extraInfo": {
          "freeBaggageAllowance": [
            {
              "segmentId": "3f5a58c93b870c0b81523fe489a8f5bd",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "7-e-e",
              "checkedBagPc": "1-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "e-e-e"
            },
            {
              "segmentId": "22d97522c14100c559f62daf05b5705b",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "7-e-e",
              "checkedBagPc": "1-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "e-e-e"
            }
          ]
        },
        "eligibilityFlag": false,
        "eligibilityDetail": null,
        "rules": {
          "refund": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "fullRefundAP": null,
              "refundFee": 1026
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "notAllowed",
              "applicableTime": [
                0,
                null
              ],
              "fullRefundAP": null,
              "refundFee": null
            }
          ],
          "change": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "changeFee": 495
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                0,
                null
              ],
              "changeFee": 495
            }
          ]
        },
        "productType": null,
        "productTag": {
          "ticketPromise": null,
          "refuseDeadline": null,
          "ticketingTime": null,
          "reschedulePendingTime": null,
          "voluntaryRefundTime": null,
          "involuntaryRefundTime": null,
          "refundCondition": null,
          "reissueCondition": null,
          "voidingCondition": false,
          "voluntaryServiceStandard": null,
          "involuntaryServiceStandard": null,
          "rescheduleProcessingTime": null,
          "productSupplier": null,
          "RBDChangedRisk": false,
          "fareBrand": [
            "",
            ""
          ],
          "posArea": [
            null,
            null
          ]
        },
        "productSource": "OTH",
        "RBD": [
          "N",
          "N"
        ]
      },
      {
        "offerId": "18599004604928028",
        "legId": "77c75875e3881c9e73f7e340714b18b6",
        "currency": "CNY",
        "platingCarrier": "BR",
        "pricePerPax": [
          {
            "paxType": "ADT",
            "baseFare": 1882,
            "totalTax": 844,
            "taxBreakdown": [],
            "serviceFee": 10000
          }
        ],
        "cabin": [
          "Y",
          "Y"
        ],
        "fareBasis": [
          "VOSG",
          "VOSG"
        ],
        "availability": [
          "7",
          "7"
        ],
        "extraInfo": {
          "freeBaggageAllowance": [
            {
              "segmentId": "14490f2f79cba4e7ffb6695f1fd256de",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "7-e-e",
              "checkedBagPc": "1-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "e-e-e"
            },
            {
              "segmentId": "7e15ee6cbca91dc9cbae0aeaeecca904",
              "cabinBagPc": "1-e-e",
              "cabinBagSize": "e-e-e",
              "cabinBagWeight": "7-e-e",
              "checkedBagPc": "1-e-e",
              "checkedBagSize": "e-e-e",
              "checkedBagWeight": "e-e-e"
            }
          ]
        },
        "eligibilityFlag": false,
        "eligibilityDetail": null,
        "rules": {
          "refund": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "fullRefundAP": null,
              "refundFee": 1053
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "refundPolicy": "withCondition",
              "applicableTime": [
                0,
                null
              ],
              "fullRefundAP": null,
              "refundFee": 1053
            }
          ],
          "change": [
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                null,
                0
              ],
              "changeFee": 495
            },
            {
              "paxType": "ADT",
              "couponStatus": 0,
              "changePolicy": "withCondition",
              "applicableTime": [
                0,
                null
              ],
              "changeFee": 495
            }
          ]
        },
        "productType": null,
        "productTag": {
          "ticketPromise": null,
          "refuseDeadline": null,
          "ticketingTime": null,
          "reschedulePendingTime": null,
          "voluntaryRefundTime": null,
          "involuntaryRefundTime": null,
          "refundCondition": null,
          "reissueCondition": null,
          "voidingCondition": false,
          "voluntaryServiceStandard": null,
          "involuntaryServiceStandard": null,
          "rescheduleProcessingTime": null,
          "productSupplier": null,
          "RBDChangedRisk": false,
          "fareBrand": [
            "",
            ""
          ],
          "posArea": [
            null,
            null
          ]
        },
        "productSource": "OTH",
        "RBD": [
          "V",
          "V"
        ]
      }
    ],
    "legs": [
      {
        "legId": "1ebb56358b1c617a18a597543feceb77",
        "segmentIds": [
          "4453068fd343a3eb89b823fc48cc2cd9"
        ]
      },
      {
        "legId": "d983cf575abe2d3ffad742382ab681db",
        "segmentIds": [
          "53b12297774d8fe96f199c3a9676ef47"
        ]
      },
      {
        "legId": "3298ca1f7da8024920eee3586d7b232b",
        "segmentIds": [
          "32e58c28a691059e923ba54672ce4f50"
        ]
      },
      {
        "legId": "d0a681604c6cc27f41a43d2c3f497712",
        "segmentIds": [
          "2fad8e6fba19d2b1803941cb18e8fb68"
        ]
      },
      {
        "legId": "4be748ffedcbcda080aa5eeacdf4e122",
        "segmentIds": [
          "64111e1653f09e9e6c865a33956586b7"
        ]
      },
      {
        "legId": "117798b21bfbd1ec93e97867d94acfc7",
        "segmentIds": [
          "647e13a89f4a18791a9792903fc1161c"
        ]
      },
      {
        "legId": "b0bcc27cd5b692d7a3b5741856ffd887",
        "segmentIds": [
          "3fd4627891bbd2e75a88e22a6289b4f1"
        ]
      },
      {
        "legId": "ca64c11cc0ffa257e6be8f81fdde8b58",
        "segmentIds": [
          "80fef04eaab0ffa974435c95c4b071d9"
        ]
      },
      {
        "legId": "f3c95e5817b0121fe82c082dd6525907",
        "segmentIds": [
          "04ccef35620796d0b3465f82f7b25141"
        ]
      },
      {
        "legId": "8588db22b24382d9c4bcf7df936bb301",
        "segmentIds": [
          "835485e3232374afa6fae8445c307db2^eb0a5f5dc3f08b4c27e34f4e22eebc13"
        ]
      },
      {
        "legId": "4ca1a5c8626ce530e39f8145c33f1474",
        "segmentIds": [
          "48db523b8c0e9e013bb5a5c6231bcbcd^4d75b7cb49d590ab24a6f8af27f6140f"
        ]
      },
      {
        "legId": "7c65f4bc4aed7cf994f537c992724b7d",
        "segmentIds": [
          "aeceb274c449aba22f8a0b9ec4558a3b"
        ]
      },
      {
        "legId": "b0a8ee411c05462608f32cf47eb062a7",
        "segmentIds": [
          "48d614fca550c46b0d56780741166732"
        ]
      },
      {
        "legId": "36add87e629211e8fd18f4ef3148a573",
        "segmentIds": [
          "b69ff15aeb38e94cc2292252e04f8fcc^00ef587e15a9cb36ec5c67162e8c5643"
        ]
      },
      {
        "legId": "8a25d757d244e4459275110dbcbd3db2",
        "segmentIds": [
          "b4a93db7246e92c831047bf960f106fc^c28efad31e183d1b13b6d5bac4048f9d"
        ]
      },
      {
        "legId": "41bc8806ebee2a2657fcf7f776be4baf",
        "segmentIds": [
          "8a94f78fdbce5c10087e2ce5ce14d6e9^b2bce281d91a97f91d782d42c3defe1a"
        ]
      },
      {
        "legId": "859fb20cfb266dd7b112cd3848b96a00",
        "segmentIds": [
          "b4a93db7246e92c831047bf960f106fc^6492b26a5ed3f5b83f25cd2610ae6331"
        ]
      },
      {
        "legId": "8d303360b4a1b8c245362334f017c75c",
        "segmentIds": [
          "b4a93db7246e92c831047bf960f106fc^3c4ea26562e2f10f4301854adc9c7d10"
        ]
      },
      {
        "legId": "349ff3b3a29f14525cc15b4801e8bb27",
        "segmentIds": [
          "4c78e592e8176ccff7cf410215ed0652^ae05a7ef99081eae066ab77c2a341dd6"
        ]
      },
      {
        "legId": "39133ed727c0e82c4ac60e7d956f4267",
        "segmentIds": [
          "96e600dd1842f97ada204499be3b7f44^97ab323296c8a64827df7cb76d219bcd"
        ]
      },
      {
        "legId": "e346b838aa5b68074d34ec3ae42e1173",
        "segmentIds": [
          "e4a9f2ac53820653e7034a9d299ac83a^006cea79d019cc7a973ab5007496baf5"
        ]
      },
      {
        "legId": "edfe8777f8bfaaabf5a77bbdf882e9c1",
        "segmentIds": [
          "6b960da8d52deb8dc95d523e475ef80e"
        ]
      },
      {
        "legId": "3cc5c538d275c170330034d78cfd83a7",
        "segmentIds": [
          "c01291ecd6695145bd85ee3c50fd8f42"
        ]
      },
      {
        "legId": "3b040a54341808cc80c000ace2a2e839",
        "segmentIds": [
          "d419b4249eb9cb802e5cf4289fea9730"
        ]
      },
      {
        "legId": "7657dce55673fe1bab522315aae0cb88",
        "segmentIds": [
          "d05cecbc8376d63126166903a26aba31"
        ]
      },
      {
        "legId": "56a9b70199cbbd080b61f6a85ebe745e",
        "segmentIds": [
          "bea805b04550473ba8600add22dead54"
        ]
      },
      {
        "legId": "9fe6872db6329c186bd173245a743001",
        "segmentIds": [
          "87a35cb1dc9476a62ffe7bffc08cb71a"
        ]
      },
      {
        "legId": "69473a87447d044b921896a865802e11",
        "segmentIds": [
          "3f5a58c93b870c0b81523fe489a8f5bd^22d97522c14100c559f62daf05b5705b"
        ]
      },
      {
        "legId": "77c75875e3881c9e73f7e340714b18b6",
        "segmentIds": [
          "14490f2f79cba4e7ffb6695f1fd256de^7e15ee6cbca91dc9cbae0aeaeecca904"
        ]
      }
    ],
    "segments": [
      {
        "segmentId": "4453068fd343a3eb89b823fc48cc2cd9",
        "duration": 255,
        "carrier": "CX",
        "flightNo": "636",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "333",
        "depAirport": "SIN",
        "depTerminal": "4",
        "depTime": "2025-04-15T20:10",
        "arrAirport": "HKG",
        "arrTerminal": "1",
        "arrTime": "2025-04-16T00:25",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "53b12297774d8fe96f199c3a9676ef47",
        "duration": 245,
        "carrier": "CX",
        "flightNo": "714",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "333",
        "depAirport": "SIN",
        "depTerminal": "4",
        "depTime": "2025-04-15T01:45",
        "arrAirport": "HKG",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T05:50",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "32e58c28a691059e923ba54672ce4f50",
        "duration": 250,
        "carrier": "CX",
        "flightNo": "716",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "333",
        "depAirport": "SIN",
        "depTerminal": "4",
        "depTime": "2025-04-15T18:00",
        "arrAirport": "HKG",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T22:10",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "2fad8e6fba19d2b1803941cb18e8fb68",
        "duration": 260,
        "carrier": "CX",
        "flightNo": "690",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "333",
        "depAirport": "SIN",
        "depTerminal": "4",
        "depTime": "2025-04-15T12:55",
        "arrAirport": "HKG",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T17:15",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "64111e1653f09e9e6c865a33956586b7",
        "duration": 255,
        "carrier": "CX",
        "flightNo": "692",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "333",
        "depAirport": "SIN",
        "depTerminal": "4",
        "depTime": "2025-04-15T06:30",
        "arrAirport": "HKG",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T10:45",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "647e13a89f4a18791a9792903fc1161c",
        "duration": 410,
        "carrier": "CX",
        "flightNo": "712",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "333",
        "depAirport": "SIN",
        "depTerminal": "4",
        "depTime": "2025-04-15T13:25",
        "arrAirport": "HKG",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T20:15",
        "stopAirport": [
          "BKK"
        ],
        "stopDuration": null
      },
      {
        "segmentId": "3fd4627891bbd2e75a88e22a6289b4f1",
        "duration": 245,
        "carrier": "TR",
        "flightNo": "972",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "320",
        "depAirport": "SIN",
        "depTerminal": "1",
        "depTime": "2025-04-15T14:15",
        "arrAirport": "HKG",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T18:20",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "80fef04eaab0ffa974435c95c4b071d9",
        "duration": 210,
        "carrier": "TR",
        "flightNo": "978",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "320",
        "depAirport": "SIN",
        "depTerminal": "1",
        "depTime": "2025-04-15T06:25",
        "arrAirport": "HKG",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T09:55",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "04ccef35620796d0b3465f82f7b25141",
        "duration": 265,
        "carrier": "TR",
        "flightNo": "974",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "320",
        "depAirport": "SIN",
        "depTerminal": "1",
        "depTime": "2025-04-15T16:55",
        "arrAirport": "HKG",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T21:20",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "835485e3232374afa6fae8445c307db2",
        "duration": 60,
        "carrier": "OD",
        "flightNo": "806",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "738",
        "depAirport": "SIN",
        "depTerminal": "3",
        "depTime": "2025-04-15T21:30",
        "arrAirport": "KUL",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T22:30",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "eb0a5f5dc3f08b4c27e34f4e22eebc13",
        "duration": 240,
        "carrier": "OD",
        "flightNo": "605",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "738",
        "depAirport": "KUL",
        "depTerminal": "1",
        "depTime": "2025-04-16T10:15",
        "arrAirport": "HKG",
        "arrTerminal": "",
        "arrTime": "2025-04-16T14:15",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "48db523b8c0e9e013bb5a5c6231bcbcd",
        "duration": 145,
        "carrier": "EK",
        "flightNo": "7717",
        "codeShare": true,
        "operatingCarrier": "3K",
        "operatingFlightNo": "3K511",
        "aircraftCode": "320",
        "depAirport": "SIN",
        "depTerminal": "4",
        "depTime": "2025-04-15T07:15",
        "arrAirport": "BKK",
        "arrTerminal": "",
        "arrTime": "2025-04-15T08:40",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "4d75b7cb49d590ab24a6f8af27f6140f",
        "duration": 185,
        "carrier": "EK",
        "flightNo": "384",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "388",
        "depAirport": "BKK",
        "depTerminal": "",
        "depTime": "2025-04-15T14:00",
        "arrAirport": "HKG",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T18:05",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "aeceb274c449aba22f8a0b9ec4558a3b",
        "duration": 255,
        "carrier": "CX",
        "flightNo": "734",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "333",
        "depAirport": "SIN",
        "depTerminal": "4",
        "depTime": "2025-04-15T16:05",
        "arrAirport": "HKG",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T20:20",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "48d614fca550c46b0d56780741166732",
        "duration": 260,
        "carrier": "CX",
        "flightNo": "658",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "333",
        "depAirport": "SIN",
        "depTerminal": "4",
        "depTime": "2025-04-15T09:45",
        "arrAirport": "HKG",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T14:05",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "b69ff15aeb38e94cc2292252e04f8fcc",
        "duration": 225,
        "carrier": "PR",
        "flightNo": "502",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "321",
        "depAirport": "SIN",
        "depTerminal": "1",
        "depTime": "2025-04-15T10:30",
        "arrAirport": "MNL",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T14:15",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "00ef587e15a9cb36ec5c67162e8c5643",
        "duration": 145,
        "carrier": "PR",
        "flightNo": "310",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "321",
        "depAirport": "MNL",
        "depTerminal": "1",
        "depTime": "2025-04-15T19:00",
        "arrAirport": "HKG",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T21:25",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "b4a93db7246e92c831047bf960f106fc",
        "duration": 220,
        "carrier": "PR",
        "flightNo": "510",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "321",
        "depAirport": "SIN",
        "depTerminal": "1",
        "depTime": "2025-04-15T00:30",
        "arrAirport": "MNL",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T04:10",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "c28efad31e183d1b13b6d5bac4048f9d",
        "duration": 145,
        "carrier": "PR",
        "flightNo": "318",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "321",
        "depAirport": "MNL",
        "depTerminal": "1",
        "depTime": "2025-04-15T09:55",
        "arrAirport": "HKG",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T12:20",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "8a94f78fdbce5c10087e2ce5ce14d6e9",
        "duration": 235,
        "carrier": "PR",
        "flightNo": "512",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "321",
        "depAirport": "SIN",
        "depTerminal": "1",
        "depTime": "2025-04-15T19:45",
        "arrAirport": "MNL",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T23:40",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "b2bce281d91a97f91d782d42c3defe1a",
        "duration": 135,
        "carrier": "PR",
        "flightNo": "300",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "333",
        "depAirport": "MNL",
        "depTerminal": "1",
        "depTime": "2025-04-16T07:55",
        "arrAirport": "HKG",
        "arrTerminal": "1",
        "arrTime": "2025-04-16T10:10",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "6492b26a5ed3f5b83f25cd2610ae6331",
        "duration": 135,
        "carrier": "PR",
        "flightNo": "300",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "333",
        "depAirport": "MNL",
        "depTerminal": "1",
        "depTime": "2025-04-15T07:55",
        "arrAirport": "HKG",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T10:10",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "3c4ea26562e2f10f4301854adc9c7d10",
        "duration": 145,
        "carrier": "PR",
        "flightNo": "306",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "333",
        "depAirport": "MNL",
        "depTerminal": "1",
        "depTime": "2025-04-15T14:35",
        "arrAirport": "HKG",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T17:00",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "4c78e592e8176ccff7cf410215ed0652",
        "duration": 155,
        "carrier": "SL",
        "flightNo": "105",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "738",
        "depAirport": "SIN",
        "depTerminal": "3",
        "depTime": "2025-04-15T20:30",
        "arrAirport": "DMK",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T22:05",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "ae05a7ef99081eae066ab77c2a341dd6",
        "duration": 165,
        "carrier": "SL",
        "flightNo": "360",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "738",
        "depAirport": "DMK",
        "depTerminal": "",
        "depTime": "2025-04-16T09:20",
        "arrAirport": "HKG",
        "arrTerminal": "",
        "arrTime": "2025-04-16T13:05",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "96e600dd1842f97ada204499be3b7f44",
        "duration": 340,
        "carrier": "HO",
        "flightNo": "1606",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "320",
        "depAirport": "SIN",
        "depTerminal": "4",
        "depTime": "2025-04-15T23:55",
        "arrAirport": "PVG",
        "arrTerminal": "2",
        "arrTime": "2025-04-16T05:35",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "97ab323296c8a64827df7cb76d219bcd",
        "duration": 165,
        "carrier": "HO",
        "flightNo": "1291",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "320",
        "depAirport": "PVG",
        "depTerminal": "2",
        "depTime": "2025-04-16T16:55",
        "arrAirport": "HKG",
        "arrTerminal": "1",
        "arrTime": "2025-04-16T19:40",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "e4a9f2ac53820653e7034a9d299ac83a",
        "duration": 325,
        "carrier": "MU",
        "flightNo": "544",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "332",
        "depAirport": "SIN",
        "depTerminal": "3",
        "depTime": "2025-04-15T00:55",
        "arrAirport": "PVG",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T06:20",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "006cea79d019cc7a973ab5007496baf5",
        "duration": 175,
        "carrier": "MU",
        "flightNo": "501",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "73E",
        "depAirport": "PVG",
        "depTerminal": "1",
        "depTime": "2025-04-15T08:55",
        "arrAirport": "HKG",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T11:50",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "6b960da8d52deb8dc95d523e475ef80e",
        "duration": 235,
        "carrier": "SQ",
        "flightNo": "874",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "359",
        "depAirport": "SIN",
        "depTerminal": "3",
        "depTime": "2025-04-15T07:25",
        "arrAirport": "HKG",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T11:20",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "c01291ecd6695145bd85ee3c50fd8f42",
        "duration": 250,
        "carrier": "SQ",
        "flightNo": "896",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "359",
        "depAirport": "SIN",
        "depTerminal": "3",
        "depTime": "2025-04-15T15:30",
        "arrAirport": "HKG",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T19:40",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "d419b4249eb9cb802e5cf4289fea9730",
        "duration": 240,
        "carrier": "SQ",
        "flightNo": "894",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "359",
        "depAirport": "SIN",
        "depTerminal": "3",
        "depTime": "2025-04-15T13:05",
        "arrAirport": "HKG",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T17:05",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "d05cecbc8376d63126166903a26aba31",
        "duration": 255,
        "carrier": "SQ",
        "flightNo": "892",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "388",
        "depAirport": "SIN",
        "depTerminal": "3",
        "depTime": "2025-04-15T09:40",
        "arrAirport": "HKG",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T13:55",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "bea805b04550473ba8600add22dead54",
        "duration": 225,
        "carrier": "SQ",
        "flightNo": "898",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "359",
        "depAirport": "SIN",
        "depTerminal": "3",
        "depTime": "2025-04-15T19:00",
        "arrAirport": "HKG",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T22:45",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "87a35cb1dc9476a62ffe7bffc08cb71a",
        "duration": 240,
        "carrier": "SQ",
        "flightNo": "882",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "359",
        "depAirport": "SIN",
        "depTerminal": "3",
        "depTime": "2025-04-15T08:40",
        "arrAirport": "HKG",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T12:40",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "3f5a58c93b870c0b81523fe489a8f5bd",
        "duration": 295,
        "carrier": "CI",
        "flightNo": "756",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "32Q",
        "depAirport": "SIN",
        "depTerminal": "3",
        "depTime": "2025-04-15T02:00",
        "arrAirport": "TPE",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T06:55",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "22d97522c14100c559f62daf05b5705b",
        "duration": 115,
        "carrier": "CI",
        "flightNo": "903",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "32Q",
        "depAirport": "TPE",
        "depTerminal": "1",
        "depTime": "2025-04-15T08:10",
        "arrAirport": "HKG",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T10:05",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "14490f2f79cba4e7ffb6695f1fd256de",
        "duration": 275,
        "carrier": "BR",
        "flightNo": "226",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "77W",
        "depAirport": "SIN",
        "depTerminal": "3",
        "depTime": "2025-04-15T13:10",
        "arrAirport": "TPE",
        "arrTerminal": "2",
        "arrTime": "2025-04-15T17:45",
        "stopAirport": null,
        "stopDuration": null
      },
      {
        "segmentId": "7e15ee6cbca91dc9cbae0aeaeecca904",
        "duration": 105,
        "carrier": "BR",
        "flightNo": "809",
        "codeShare": false,
        "operatingCarrier": null,
        "operatingFlightNo": null,
        "aircraftCode": "321",
        "depAirport": "TPE",
        "depTerminal": "2",
        "depTime": "2025-04-15T19:00",
        "arrAirport": "HKG",
        "arrTerminal": "1",
        "arrTime": "2025-04-15T20:45",
        "stopAirport": null,
        "stopDuration": null
      }
    ]
  }
}
修改于 2025-04-10 09:18:50
上一页
OrderChangeInforming 订单信息变更通知
下一页
Pricing 校验接口
Built with