Skip to main content

UserAuthorization

type UserAuthorization = {
accessTokenId: string;
app: | {
description: string | null;
displayName: string;
iconMd: string | null;
id: string;
serviceUrl: string | null;
}
| null;
createdAt: Date;
scope: string[];
scopeDescriptions: string[];
};

A user authorization entry (access token granted to a third-party app).

Type Declaration

NameTypeDefault value
accessTokenIdstringStringOrNumberSchema
app| { description: string | null; displayName: string; iconMd: string | null; id: string; serviceUrl: string | null; } | null-
createdAtDate-
scopestring[]-
scopeDescriptionsstring[]-