]> git.arvados.org - arvados.git/blob - src/models/api-client-authorization.ts
Merge branch '14491-graph-field-is-too-big-when-no-workflows-were-chosen'
[arvados.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 }