Show / Hide Table of Contents

Class All

Parameters for API calls.

Inheritance
System.Object
BaseParameters<ReferralCustomer>
BaseAllParameters<ReferralCustomer>
All
Implements
IBaseParameters
Inherited Members
BaseParameters<ReferralCustomer>.MatchFunction
BaseParameters<ReferralCustomer>.Matches(ReferralCustomer)
BaseParameters<ReferralCustomer>.ToDictionary()
BaseParameters<ReferralCustomer>.ToSubDictionary(Type)
Namespace: EasyPost.Parameters.ReferralCustomer
Assembly: EasyPost.dll
Syntax
public class All : BaseAllParameters<ReferralCustomer>, IBaseParameters

Properties

| Improve this Doc View Source

AfterId

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>
| Improve this Doc View Source

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>
| Improve this Doc View Source

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 Source

FromDictionary(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.

Implements

IBaseParameters
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX