File tree 2 files changed +11
-0
lines changed
EasyPost/Parameters/Tracker
2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 3
3
## Next Release
4
4
5
5
- Removes the deprecated ` create_list ` tracker endpoint function as it is no longer available via API
6
+ - Adds ` TrackingCodes ` optional parameter to ` Tracker.All ` parameter set for listing trackers
6
7
7
8
## v6.7.3 (2024-09-17)
8
9
Original file line number Diff line number Diff line change
1
+ using System ;
1
2
using System . Collections . Generic ;
2
3
using System . Diagnostics . CodeAnalysis ;
3
4
using EasyPost . Utilities . Internal . Attributes ;
@@ -51,10 +52,19 @@ public class All : BaseAllParameters<Models.API.Tracker>
51
52
52
53
/// <summary>
53
54
/// Only return trackers with the given tracking code.
55
+ /// Deprecated: Use <see cref="TrackingCodes"/> instead.
54
56
/// </summary>
57
+ // TODO: Remove in next major version.
58
+ [ Obsolete ( "This property will be removed in a future version and replaced with TrackingCodes." ) ]
55
59
[ TopLevelRequestParameter ( Necessity . Optional , "tracking_code" ) ]
56
60
public string ? TrackingCode { get ; set ; }
57
61
62
+ /// <summary>
63
+ /// Only return trackers with the given tracking codes.
64
+ /// </summary>
65
+ [ TopLevelRequestParameter ( Necessity . Optional , "tracking_codes" ) ]
66
+ public List < string > ? TrackingCodes { get ; set ; }
67
+
58
68
#endregion
59
69
60
70
/// <summary>
You can’t perform that action at this time.
0 commit comments