feature-libs/organization/administration/core/model/user-group.model.ts
Properties |
|
members |
members:
|
Type : B2BUser[]
|
Optional |
membersCount |
membersCount:
|
Type : number
|
Optional |
name |
name:
|
Type : string
|
Optional |
orgUnit |
orgUnit:
|
Type : B2BUnit
|
Optional |
permissions |
permissions:
|
Type : Permission[]
|
Optional |
roles |
roles:
|
Type : B2BUserRole[]
|
Optional |
selected |
selected:
|
Type : boolean
|
Optional |
subGroups |
subGroups:
|
Type : UserGroup[]
|
Optional |
uid |
uid:
|
Type : string
|
Optional |
import { B2BUnit, B2BUser, B2BUserRole } from '@spartacus/core';
import { Permission } from './permission.model';
export interface UserGroup {
members?: B2BUser[];
membersCount?: number;
name?: string;
orgUnit?: B2BUnit;
permissions?: Permission[];
roles?: B2BUserRole[];
selected?: boolean;
subGroups?: UserGroup[];
uid?: string;
}