projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
15814: Catch error that otherwise goes unhandled
[arvados.git]
/
services
/
workbench2
/
src
/
models
/
client-authorization.ts
1
export interface ClientAuthorizationResource {
2
uuid: string;
3
apiToken: string;
4
apiClientId: number;
5
userId: number;
6
createdByIpAddress: string;
7
lastUsedByIpAddress: string;
8
lastUsedAt: string;
9
expiresAt: string;
10
ownerUuid: string;
11
scopes: string[];
12
}