File tree 8 files changed +44
-2
lines changed
8 files changed +44
-2
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ The difference with dotnet cli is that you need to manually modify the .csproj f
37
37
38
38
``` text
39
39
<ItemGroup>
40
- <PackageReference Include="TrackingMore" Version="0.1.1 " />
40
+ <PackageReference Include="TrackingMore" Version="0.1.2 " />
41
41
</ItemGroup>
42
42
```
43
43
Original file line number Diff line number Diff line change 9
9
<AssemblyName >TrackingMore-API</AssemblyName >
10
10
<GenerateAssemblyInfo >false</GenerateAssemblyInfo >
11
11
<PackageId >TrackingMore</PackageId >
12
- <PackageVersion >0.1.1 </PackageVersion >
12
+ <PackageVersion >0.1.2 </PackageVersion >
13
13
<Authors >TrackingMore Team</Authors >
14
14
<Copyright >Copyright 2014-2023</Copyright >
15
15
<Owners >TrackingMore</Owners >
Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ public class AirWaybills
7
7
[ JsonProperty ( "awb_number" ) ]
8
8
public string awbNumber { get ; set ; }
9
9
10
+ [ JsonProperty ( "awb_status" ) ]
11
+ public string awbStatus { get ; set ; }
12
+
13
+ [ JsonProperty ( "awb_substatus" ) ]
14
+ public string awbSubstatus { get ; set ; }
15
+
10
16
[ JsonProperty ( "status_number" ) ]
11
17
public string statusNumber { get ; set ; }
12
18
Original file line number Diff line number Diff line change @@ -27,4 +27,10 @@ public class TrackInfo
27
27
28
28
[ JsonProperty ( "weight" ) ]
29
29
public string weight { get ; set ; }
30
+
31
+ [ JsonProperty ( "checkpoint_status" ) ]
32
+ public string checkpointStatus { get ; set ; }
33
+
34
+ [ JsonProperty ( "checkpoint_substatus" ) ]
35
+ public string checkpointSubstatus { get ; set ; }
30
36
}
Original file line number Diff line number Diff line change @@ -28,6 +28,9 @@ public class CreateTrackingParams
28
28
[ JsonProperty ( "customer_sms" ) ]
29
29
public string customerSms { get ; set ; }
30
30
31
+ [ JsonProperty ( "recipient_postcode" ) ]
32
+ public string recipientPostcode { get ; set ; }
33
+
31
34
[ JsonProperty ( "title" ) ]
32
35
public string title { get ; set ; }
33
36
@@ -64,6 +67,9 @@ public class CreateTrackingParams
64
67
[ JsonProperty ( "note" ) ]
65
68
public string note { get ; set ; }
66
69
70
+ [ JsonProperty ( "label" ) ]
71
+ public string label { get ; set ; }
72
+
67
73
[ JsonProperty ( "auto_correct" ) ]
68
74
public string autoCorrect { get ; set ; }
69
75
Original file line number Diff line number Diff line change @@ -79,6 +79,9 @@ public class Trackings
79
79
[ JsonProperty ( "customer_sms" ) ]
80
80
public string customerSms { get ; set ; }
81
81
82
+ [ JsonProperty ( "recipient_postcode" ) ]
83
+ public string recipientPostcode { get ; set ; }
84
+
82
85
[ JsonProperty ( "order_id" ) ]
83
86
public string orderId { get ; set ; }
84
87
@@ -91,6 +94,9 @@ public class Trackings
91
94
[ JsonProperty ( "note" ) ]
92
95
public string note { get ; set ; }
93
96
97
+ [ JsonProperty ( "label" ) ]
98
+ public string label { get ; set ; }
99
+
94
100
[ JsonProperty ( "signed_by" ) ]
95
101
public string signedBy { get ; set ; }
96
102
Original file line number Diff line number Diff line change @@ -58,6 +58,9 @@ public class UpdateTracking
58
58
[ JsonProperty ( "customer_sms" ) ]
59
59
public string customerSms { get ; set ; }
60
60
61
+ [ JsonProperty ( "recipient_postcode" ) ]
62
+ public string recipientPostcode { get ; set ; }
63
+
61
64
[ JsonProperty ( "title" ) ]
62
65
public string title { get ; set ; }
63
66
@@ -67,4 +70,10 @@ public class UpdateTracking
67
70
[ JsonProperty ( "note" ) ]
68
71
public string note { get ; set ; }
69
72
73
+ [ JsonProperty ( "label" ) ]
74
+ public string label { get ; set ; }
75
+
76
+ [ JsonProperty ( "archived_status" ) ]
77
+ public string archivedStatus { get ; set ; }
78
+
70
79
}
Original file line number Diff line number Diff line change @@ -25,6 +25,9 @@ public class UpdateTrackingParams
25
25
[ JsonProperty ( "customer_sms" ) ]
26
26
public string customerSms { get ; set ; }
27
27
28
+ [ JsonProperty ( "recipient_postcode" ) ]
29
+ public string recipientPostcode { get ; set ; }
30
+
28
31
[ JsonProperty ( "title" ) ]
29
32
public string title { get ; set ; }
30
33
@@ -61,4 +64,10 @@ public class UpdateTrackingParams
61
64
[ JsonProperty ( "note" ) ]
62
65
public string note { get ; set ; }
63
66
67
+ [ JsonProperty ( "label" ) ]
68
+ public string label { get ; set ; }
69
+
70
+ [ JsonProperty ( "archived_status" ) ]
71
+ public string archivedStatus { get ; set ; }
72
+
64
73
}
You can’t perform that action at this time.
0 commit comments