Class TrackerCollection
Class representing a collection of EasyPost Trackers.
Inheritance
System.Object
TrackerCollection
Implements
Inherited Members
Namespace: EasyPost.Models.API
Assembly: EasyPost.dll
Syntax
public class TrackerCollection : PaginatedCollection<Tracker>, IEasyPostObject
Properties
| Improve this Doc View SourceTrackers
The Trackers in the collection.
Declaration
public List<Tracker>? Trackers { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<List<Tracker>> |
Methods
| Improve this Doc View SourceBuildNextPageParameters<TParameters>(IEnumerable<Tracker>, Nullable<Int32>)
Construct the parameter set for retrieving the next page of this paginated collection.
Declaration
public override TParameters BuildNextPageParameters<TParameters>(IEnumerable<Tracker> entries, int? pageSize = null)
where TParameters : BaseParameters<Tracker>
Parameters
| Type | Name | Description |
|---|---|---|
| IEnumerable<Tracker> | entries | The entries on the current page of this paginated collection. |
| System.Nullable<System.Int32> | pageSize | The request size of the next page. |
Returns
| Type | Description |
|---|---|
| TParameters | A TParameters-type parameters set. |
Type Parameters
| Name | Description |
|---|---|
| TParameters | The type of parameters to construct. |
Overrides
EasyPost.Models.Shared.PaginatedCollection<EasyPost.Models.API.Tracker>.BuildNextPageParameters<TParameters>(IEnumerable<EasyPost.Models.API.Tracker>, System.Nullable<System.Int32>)