mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
* Implemented Custom role and permissions * converted Permissions interface into a class * formatting fix
12 lines
388 B
TypeScript
12 lines
388 B
TypeScript
import { SelectionReadOnlyRequest } from './selectionReadOnlyRequest';
|
|
|
|
import { OrganizationUserType } from '../../enums/organizationUserType';
|
|
import { PermissionsApi } from '../api/permissionsApi';
|
|
|
|
export class OrganizationUserUpdateRequest {
|
|
type: OrganizationUserType;
|
|
accessAll: boolean;
|
|
collections: SelectionReadOnlyRequest[] = [];
|
|
permissions: PermissionsApi;
|
|
}
|