mirror of
https://github.com/bitwarden/browser
synced 2025-12-06 00:13:28 +00:00
* refactor: add barrel file for admin-console enums, update references, refs AC-1202 * fix: lint/prettier updates, refs AC-1202 * refactor: add enum suffix, refs AC-1202 * refactor: add barrel file for billing enums, update imports to use it, refs AC-1202 * fix: prettier, refs AC-1202 * refactor: add enum suffix for billing enums, refs AC-1202
14 lines
520 B
TypeScript
14 lines
520 B
TypeScript
import { OrganizationUserType } from "../../../admin-console/enums";
|
|
import { PermissionsApi } from "../../../admin-console/models/api/permissions.api";
|
|
import { SelectionReadOnlyRequest } from "../../../admin-console/models/request/selection-read-only.request";
|
|
|
|
export class OrganizationUserInviteRequest {
|
|
emails: string[] = [];
|
|
type: OrganizationUserType;
|
|
accessAll: boolean;
|
|
accessSecretsManager: boolean;
|
|
collections: SelectionReadOnlyRequest[] = [];
|
|
groups: string[];
|
|
permissions: PermissionsApi;
|
|
}
|