Class All
Parameters for
Implements
Inherited Members
Namespace: EasyPost.Parameters.ReferralCustomer
Assembly: EasyPost.dll
Syntax
public class All : BaseAllParameters<ReferralCustomer>, IBaseParameters
Properties
| Improve this Doc View SourceAfterId
Only records created after the given ID will be included. May not be used with BeforeId.
Declaration
public string? AfterId { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.String> |
BeforeId
Only records created before the given ID will be included. May not be used with AfterId.
Declaration
public string? BeforeId { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.String> |
PageSize
The number of records to return on each page. The maximum value is 100, and default is 20.
Declaration
public int? PageSize { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Int32> |
Methods
| Improve this Doc View SourceFromDictionary(Nullable<Dictionary<String, Object>>)
Convert a dictionary into this parameter set.
Declaration
public static All FromDictionary(Dictionary<string, object>? dictionary)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Nullable<Dictionary<System.String, System.Object>> | dictionary | Dictionary to parse. |
Returns
| Type | Description |
|---|---|
| All | An All parameters set. |