bitwarden-estensione-browser/libs/common/src/models/request/organizationUserInviteReque...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
405 B
TypeScript
Raw Normal View History

import { OrganizationUserType } from "../../enums/organizationUserType";
import { PermissionsApi } from "../api/permissionsApi";
2022-02-22 15:39:11 +01:00
import { SelectionReadOnlyRequest } from "./selectionReadOnlyRequest";
2018-07-10 19:03:24 +02:00
export class OrganizationUserInviteRequest {
emails: string[] = [];
type: OrganizationUserType;
accessAll: boolean;
collections: SelectionReadOnlyRequest[] = [];
permissions: PermissionsApi;
2018-07-10 19:03:24 +02:00
}