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