Interface AddressValidationErrorInterfaceInternal

Interface version of AddressValidationError

interface AddressValidationErrorInterface {
    __typename: "AddressValidationError";
    error_code: CarrierErrorCode;
    error_message: null | string;
}

Hierarchy (View Summary)

Implemented by

Properties

__typename: "AddressValidationError"

Typename that can be used for type guards instead of instanceof

error_code: CarrierErrorCode

The error code for the error

error_message: null | string

The human-readable error message, if available