QueryResult

查价的结果,含各种运输方式的方案

{
	// 空运方案,数组
	"airPlans": [
		{ QueryPlanSeparated },
		...
	],
	// 推荐的空运方案,id为空运方案数组内,某个QueryPlanSeparated的id,无空运方案时为null
	"recommendedAirPlanId": "230524063245YhXWgfwT",
	// 铁运方案,数组
	"railPlans": [
		{ QueryPlanSeparated },
		...
	],
	// 推荐的铁运方案,id为铁运方案数组内,某个QueryPlanSeparated的id,无铁运方案时为null
	"recommendedRailPlanId": "230524063245as6s355U",
	// 海运方案,数组
	"shippingPlans": [
		{ QueryPlanSeparated },
		...
	],
	// 推荐的海运方案,id为海运方案数组内,某个QueryPlanSeparated的id,无海运方案时为null
	"recommendedShippingPlanId": "230524063245Mp1MnUiE",
	// 快递方案,数组
	"expressPlans": [
		{ QueryPlanCombined },
		...
	],
	// 推荐的快递方案,id为快递方案数组内,某个QueryPlanCombined的id,无快递方案时为null
	"recommendedExpressPlanId": "230524063254eOUiDuL9",
	// 原始查价信息,数据结构同运行查价API返回结果一致
	"originalQuery": {
		QueryHistory
	}
}

最后更新于