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).