mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-19 09:43:15 +00:00
12 lines
380 B
TypeScript
12 lines
380 B
TypeScript
import { OrganizationUserType } from "../../enums/organizationUserType";
|
|
import { PermissionsApi } from "../api/permissionsApi";
|
|
|
|
import { SelectionReadOnlyRequest } from "./selectionReadOnlyRequest";
|
|
|
|
export class OrganizationUserUpdateRequest {
|
|
type: OrganizationUserType;
|
|
accessAll: boolean;
|
|
collections: SelectionReadOnlyRequest[] = [];
|
|
permissions: PermissionsApi;
|
|
}
|