File tree Expand file tree Collapse file tree
trackingmore-sdk/src/main/java/com/trackingmore/model Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,6 +14,12 @@ public class AirWaybill {
1414 @ JsonProperty ("awb_number" )
1515 private String awbNumber ;
1616
17+ @ JsonProperty ("awb_status" )
18+ private String awbStatus ;
19+
20+ @ JsonProperty ("awb_substatus" )
21+ private String awbSubstatus ;
22+
1723 @ JsonProperty ("status_number" )
1824 private String statusNumber ;
1925
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ public class AirlineInfo {
1717 @ JsonProperty ("track_url" )
1818 private String trackUrl ;
1919
20- @ JsonProperty ("trackpage_url2 " )
21- private String trackpageUrl2 ;
20+ @ JsonProperty ("trackpage_url " )
21+ private String trackpageUrl ;
2222
2323}
Original file line number Diff line number Diff line change @@ -29,7 +29,10 @@ public class TrackInfo {
2929 @ JsonProperty ("piece" )
3030 private String piece ;
3131
32- @ JsonProperty ("weight" )
33- private String weight ;
32+ @ JsonProperty ("checkpoint_status" )
33+ private String checkpointStatus ;
34+
35+ @ JsonProperty ("checkpoint_substatus" )
36+ private String checkpointSubstatus ;
3437
3538}
Original file line number Diff line number Diff line change @@ -30,6 +30,9 @@ public class CreateTrackingParams {
3030 @ JsonProperty ("customer_sms" )
3131 private String customerSms ;
3232
33+ @ JsonProperty ("recipient_postcode" )
34+ private String recipientPostcode ;
35+
3336 @ JsonProperty ("title" )
3437 private String title ;
3538
@@ -66,6 +69,9 @@ public class CreateTrackingParams {
6669 @ JsonProperty ("note" )
6770 private String note ;
6871
72+ @ JsonProperty ("label" )
73+ private String label ;
74+
6975 @ JsonProperty ("auto_correct" )
7076 private String autoCorrect ;
7177
Original file line number Diff line number Diff line change @@ -86,6 +86,9 @@ public class Tracking {
8686 @ JsonProperty ("order_id" )
8787 private String orderId ;
8888
89+ @ JsonProperty ("recipient_postcode" )
90+ private String recipientPostcode ;
91+
8992 @ JsonProperty ("title" )
9093 private String title ;
9194
Original file line number Diff line number Diff line change @@ -62,6 +62,9 @@ public class UpdateTracking {
6262 @ JsonProperty ("customer_sms" )
6363 private String customerSms ;
6464
65+ @ JsonProperty ("recipient_postcode" )
66+ private String recipientPostcode ;
67+
6568 @ JsonProperty ("title" )
6669 private String title ;
6770
@@ -70,4 +73,10 @@ public class UpdateTracking {
7073
7174 @ JsonProperty ("note" )
7275 private String note ;
76+
77+ @ JsonProperty ("label" )
78+ private String label ;
79+
80+ @ JsonProperty ("archived_status" )
81+ private String archivedStatus ;
7382}
Original file line number Diff line number Diff line change @@ -27,6 +27,9 @@ public class UpdateTrackingParams {
2727 @ JsonProperty ("customer_sms" )
2828 private String customerSms ;
2929
30+ @ JsonProperty ("recipient_postcode" )
31+ private String recipientPostcode ;
32+
3033 @ JsonProperty ("title" )
3134 private String title ;
3235
@@ -63,4 +66,10 @@ public class UpdateTrackingParams {
6366 @ JsonProperty ("note" )
6467 private String note ;
6568
69+ @ JsonProperty ("label" )
70+ private String label ;
71+
72+ @ JsonProperty ("archived_status" )
73+ private String archivedStatus ;
74+
6675}
You can’t perform that action at this time.
0 commit comments