在 Amadeus 自助服务 API 中,price.total 是否包含所有税费?

In Amadeus self service APIs, is price.total inclusive of all taxes and fees?

对于 Amadeus 自助休息 API:v1/shopping/flight-offers 和航班日期,price.total 响应字段是否包含所有税费?

我似乎需要加上 total + totalTaxes 才能得到接近航空公司直接提供的价格。

如果有开发人员文档更详细地解释了每个响应字段,请务必指出它们。我一直找不到。

参考这些 API:

https://developers.amadeus.com/self-service/category/203/api-doc/4/api-docs-and-example/10002 https://developers.amadeus.com/self-service/category/203/api-doc/5/api-docs-and-example/10003

和这个字段:

"price": {
  "total": "259.91",
  "totalTaxes": "185.91"
},

“总计”是您需要支付的总价,包括总税费。

您可以直接在 Swagger 上访问模型(在响应 Class(状态 200) 下)您有“模型”按钮。但是你是对的,需要添加那些参数的描述,点了。

正如接受的答案中强调的那样,总价是包括所有税费在内的总价,就个人而言,我最初也很困惑,不得不手动与旅行社核实以确认。我建议 Amadeus 按如下方式拆分描述

"price": {
  "totalFare": "74.00",
  "totalTaxes": "185.91"
  "totalAmount": "259.91"
},