我正在尝试使用Retrofit向Google GeoCode API发送请求。服务界面如下所示:
@GET("api/job/costestimate?stops[0][latitude]=40.72822&stops[0][longitude]=-73.70667000000003&stops[0][type]=pickup&stops[1][latitude]=40.7382953&stops[1][longitude]=-73.64537630000001&stops[1][type]=dropoff")
Call<GetCostEstimateResponse> getCostEstimate(@Query("stops[{id}][latitude]") GetCostEstimateRequest getCostEstimateRequest, @Header("X-ACCESS-TOKEN") String xAccessToken);
如何通过Retrofit传递这种Structure参数