Interface DomesticLabelErrorInterfaceInternal

Interface version of DomesticLabelError

interface DomesticLabelErrorInterface {
    __typename: "DomesticLabelError";
    code: string;
    message: null | string;
    transaction_id: string;
}

Hierarchy (View Summary)

Implemented by

Properties

__typename: "DomesticLabelError"

A typename that can be used as a typeguard if preferred over isinstance

code: string

A code identifying the type of error

message: null | string

A human-facing message explaining the error, if available

transaction_id: string

The UUID of the label-creation transaction.

Can be used with recoverLabel to recover the label if the label data is lost.