File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
trackingmore-gradle-example/src/main/java/com/trackingmore/maven/example/airWaybill Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ public static void main(String[] args) {
1414 try {
1515 String apiKey = "you api key" ;
1616 TrackingMore trackingMore = new TrackingMore (apiKey );
17- AirWaybillParams detectParams = new AirWaybillParams ();
18- detectParams .setAwbNumber ("235-69030430" );
19- TrackingMoreResponse result = trackingMore .airWaybills .CreateAnAirWayBill (detectParams );
17+ AirWaybillParams airWaybillParams = new AirWaybillParams ();
18+ airWaybillParams .setAwbNumber ("235-69030430" );
19+ TrackingMoreResponse result = trackingMore .airWaybills .CreateAnAirWayBill (airWaybillParams );
2020 System .out .println (result .getMeta ().getCode ());
2121 if (result .getData () != null ){
2222 AirWaybill airWaybills = (AirWaybill ) result .getData ();
You can’t perform that action at this time.
0 commit comments