interface Token {
    createdAt?: Date;
    id: string;
    name: string;
    projectId: string;
    scopes?: TokenScopes;
    secretKey?: string;
    updatedAt?: Date;
}

Properties

createdAt?: Date

Date and time of the token's creation.

id: string

ID of the token.

name: string

Name of the token.

projectId: string

ID of the Project.

scopes?: TokenScopes

Token's permissions.

secretKey?: string

Token's secret key.

updatedAt?: Date

Date and time of the token's last update.