Type Alias OauthToken

type OauthToken = {
    description?: string;
    deviceType?: string;
    id: string;
    lastUsed?: string;
    tenantId: string;
    userId: string;
}
Index

Properties

description?: string

The description of the token.

deviceType?: string

The type of the user device the authorization token is generated for (Tablet, Phone etc.).

id: string

The token ID.

lastUsed?: string

The last time the token was used.

tenantId: string

The ID of the owning tenant.

userId: string

The ID of the owning user.