mirror of
https://github.com/bitwarden/jslib
synced 2026-01-09 03:53:18 +00:00
13 lines
405 B
TypeScript
13 lines
405 B
TypeScript
import { OrganizationUserType } from "../../enums/organizationUserType";
|
|
import { PermissionsApi } from "../api/permissionsApi";
|
|
|
|
import { SelectionReadOnlyRequest } from "./selectionReadOnlyRequest";
|
|
|
|
export class OrganizationUserInviteRequest {
|
|
emails: string[] = [];
|
|
type: OrganizationUserType;
|
|
accessAll: boolean;
|
|
collections: SelectionReadOnlyRequest[] = [];
|
|
permissions: PermissionsApi;
|
|
}
|