import { ISystemSecurityClearance } from "./system_security_clearance"; /** * This is a with an Id of . A user see that has this group assigned to its security * groups will have the default level of access. */ export interface IUserSecurityGroup extends ISystemSecurityClearance { /** Gets the unique identifier for this entity. see . */ id: string; /** Gets the name of this system group. Cannot be set. */ name: string; } //# sourceMappingURL=user_security_group.d.ts.map