Class ReportCollection
Class representing a collection of EasyPost Reports.
Inheritance
System.Object
ReportCollection
Implements
Inherited Members
Namespace: EasyPost.Models.API
Assembly: EasyPost.dll
Syntax
public class ReportCollection : PaginatedCollection<Report>, IEasyPostObject
Properties
| Improve this Doc View SourceReports
The Reports in the collection.
Declaration
public List<Report>? Reports { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<List<Report>> |
Methods
| Improve this Doc View SourceBuildNextPageParameters<TParameters>(IEnumerable<Report>, Nullable<Int32>)
Construct the parameter set for retrieving the next page of this paginated collection.
Declaration
public override TParameters BuildNextPageParameters<TParameters>(IEnumerable<Report> entries, int? pageSize = null)
where TParameters : BaseParameters<Report>
Parameters
| Type | Name | Description |
|---|---|---|
| IEnumerable<Report> | 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.Report>.BuildNextPageParameters<TParameters>(IEnumerable<EasyPost.Models.API.Report>, System.Nullable<System.Int32>)