Merge branch 'origin/master' into 14478-log-in-into-clusters
[arvados-workbench2.git] / src / models / api-client-authorization.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 export interface ApiClientAuthorization {
6     uuid: string;
7     apiToken: string;
8     apiClientId: number;
9     userId: number;
10     createdByIpAddress: string;
11     lastUsedByIpAddress: string;
12     lastUsedAt: string;
13     expiresAt: string;
14     createdAt: string;
15     updatedAt: string;
16     ownerUuid: string;
17     defaultOwnerUuid: string;
18     scopes: string[];
19 }