Merge branch '18195-Refresh-Button-does-not-seem-to-refresh-the-sidebar-tree' into...
[arvados-workbench2.git] / 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 }