Merge branch '17754-federated-acct-merge'. Closes #17754.
[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 }