Interface version of DomesticLabelResponse

interface DomesticLabelResponseInterface {
    __typename: "DomesticLabelError" | "DomesticLabel";
    transaction_id: string;
}

Hierarchy (View Summary)

Implemented by

Properties

__typename: "DomesticLabelError" | "DomesticLabel"

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

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.