Show / Hide Table of Contents

Class AddressVerificationFieldError

Represents an error returned by the EasyPost API. These are typically informational about why a request failed (server-side validation issues, missing data, etc.). This is different than the EasyPostError class, which represents exceptions in the EasyPost library, such as bad HTTP status codes or local validation issues.

Inheritance
System.Object
AddressVerificationFieldError
Namespace: EasyPost.Models.API
Assembly: EasyPost.dll
Syntax
public class AddressVerificationFieldError : object

Properties

| Improve this Doc View Source

Code

A machine-readable description of the problem encountered.

Declaration
public string? Code { get; set; }
Property Value
Type Description
System.Nullable<System.String>
| Improve this Doc View Source

Field

The field of the request that caused the error.

Declaration
public string? Field { get; set; }
Property Value
Type Description
System.Nullable<System.String>
| Improve this Doc View Source

Message

A human-readable description of the problem encountered.

Declaration
public string? Message { get; set; }
Property Value
Type Description
System.Nullable<System.String>
| Improve this Doc View Source

Suggestion

A human-readable suggestion to resolve the problem encountered.

Declaration
public string? Suggestion { get; set; }
Property Value
Type Description
System.Nullable<System.String>
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX