An access token.

interface Token {
    expires?: Date;
    value: string;
}

Properties

Properties

expires?: Date

The expires date. It may be unknown, that's why it is optional.

value: string

The token value.