18874: Add 'services/workbench2/' from commit 'f6f88d9ca9cdeeeebfadcfe999789bfb9f69e5c6'
[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 }