Skip to content

Commit b6bacfb

Browse files
committed
Field Update
1 parent 2f951a5 commit b6bacfb

File tree

8 files changed

+44
-2
lines changed

8 files changed

+44
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The difference with dotnet cli is that you need to manually modify the .csproj f
3737

3838
```text
3939
<ItemGroup>
40-
<PackageReference Include="TrackingMore" Version="0.1.1" />
40+
<PackageReference Include="TrackingMore" Version="0.1.2" />
4141
</ItemGroup>
4242
```
4343

TrackingMoreAPI/TrackingMoreAPI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<AssemblyName>TrackingMore-API</AssemblyName>
1010
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
1111
<PackageId>TrackingMore</PackageId>
12-
<PackageVersion>0.1.1</PackageVersion>
12+
<PackageVersion>0.1.2</PackageVersion>
1313
<Authors>TrackingMore Team</Authors>
1414
<Copyright>Copyright 2014-2023</Copyright>
1515
<Owners>TrackingMore</Owners>

TrackingMoreAPI/src/Model/AirWaybills/AirWaybills.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ public class AirWaybills
77
[JsonProperty("awb_number")]
88
public string awbNumber { get; set; }
99

10+
[JsonProperty("awb_status")]
11+
public string awbStatus { get; set; }
12+
13+
[JsonProperty("awb_substatus")]
14+
public string awbSubstatus { get; set; }
15+
1016
[JsonProperty("status_number")]
1117
public string statusNumber { get; set; }
1218

TrackingMoreAPI/src/Model/AirWaybills/TrackInfo.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,10 @@ public class TrackInfo
2727

2828
[JsonProperty("weight")]
2929
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; }
3036
}

TrackingMoreAPI/src/Model/Trackings/CreateTrackingParams.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ public class CreateTrackingParams
2828
[JsonProperty("customer_sms")]
2929
public string customerSms { get; set; }
3030

31+
[JsonProperty("recipient_postcode")]
32+
public string recipientPostcode { get; set; }
33+
3134
[JsonProperty("title")]
3235
public string title { get; set; }
3336

@@ -64,6 +67,9 @@ public class CreateTrackingParams
6467
[JsonProperty("note")]
6568
public string note { get; set; }
6669

70+
[JsonProperty("label")]
71+
public string label { get; set; }
72+
6773
[JsonProperty("auto_correct")]
6874
public string autoCorrect { get; set; }
6975

TrackingMoreAPI/src/Model/Trackings/Trackings.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,9 @@ public class Trackings
7979
[JsonProperty("customer_sms")]
8080
public string customerSms { get; set; }
8181

82+
[JsonProperty("recipient_postcode")]
83+
public string recipientPostcode { get; set; }
84+
8285
[JsonProperty("order_id")]
8386
public string orderId { get; set; }
8487

@@ -91,6 +94,9 @@ public class Trackings
9194
[JsonProperty("note")]
9295
public string note { get; set; }
9396

97+
[JsonProperty("label")]
98+
public string label { get; set; }
99+
94100
[JsonProperty("signed_by")]
95101
public string signedBy { get; set; }
96102

TrackingMoreAPI/src/Model/Trackings/UpdateTracking.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ public class UpdateTracking
5858
[JsonProperty("customer_sms")]
5959
public string customerSms { get; set; }
6060

61+
[JsonProperty("recipient_postcode")]
62+
public string recipientPostcode { get; set; }
63+
6164
[JsonProperty("title")]
6265
public string title { get; set; }
6366

@@ -67,4 +70,10 @@ public class UpdateTracking
6770
[JsonProperty("note")]
6871
public string note { get; set; }
6972

73+
[JsonProperty("label")]
74+
public string label { get; set; }
75+
76+
[JsonProperty("archived_status")]
77+
public string archivedStatus { get; set; }
78+
7079
}

TrackingMoreAPI/src/Model/Trackings/UpdateTrackingParams.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ public class UpdateTrackingParams
2525
[JsonProperty("customer_sms")]
2626
public string customerSms { get; set; }
2727

28+
[JsonProperty("recipient_postcode")]
29+
public string recipientPostcode { get; set; }
30+
2831
[JsonProperty("title")]
2932
public string title { get; set; }
3033

@@ -61,4 +64,10 @@ public class UpdateTrackingParams
6164
[JsonProperty("note")]
6265
public string note { get; set; }
6366

67+
[JsonProperty("label")]
68+
public string label { get; set; }
69+
70+
[JsonProperty("archived_status")]
71+
public string archivedStatus { get; set; }
72+
6473
}

0 commit comments

Comments
 (0)