interface IToken {
    description?: string;
    name: string;
}

Hierarchy

Properties

Properties

description?: string

Token purpose description.

name: string

The human readable name for the token.

Notes

This can be useful for debugging and logging.