File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed
EasyPost/Parameters/Tracker Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 33## Next Release
44
55- 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
67
78## v6.7.3 (2024-09-17)
89
Original file line number Diff line number Diff line change 1+ using System ;
12using System . Collections . Generic ;
23using System . Diagnostics . CodeAnalysis ;
34using EasyPost . Utilities . Internal . Attributes ;
@@ -51,10 +52,19 @@ public class All : BaseAllParameters<Models.API.Tracker>
5152
5253 /// <summary>
5354 /// Only return trackers with the given tracking code.
55+ /// Deprecated: Use <see cref="TrackingCodes"/> instead.
5456 /// </summary>
57+ // TODO: Remove in next major version.
58+ [ Obsolete ( "This property will be removed in a future version and replaced with TrackingCodes." ) ]
5559 [ TopLevelRequestParameter ( Necessity . Optional , "tracking_code" ) ]
5660 public string ? TrackingCode { get ; set ; }
5761
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+
5868 #endregion
5969
6070 /// <summary>
You can’t perform that action at this time.
0 commit comments