Search
    Preparing search index...

    Интерфейс описывающий роль

    interface RoleDataType {
        createdAt: null | string;
        createdBy: null | string;
        displayName: string;
        name: string;
        properties: string[];
        rights: string[];
        securityLabels: string[];
        type: string;
        updatedAt: null | string;
        updatedBy: null | string;
    }
    Index

    Properties

    createdAt: null | string

    Дата создания роли.

    createdBy: null | string

    Пользователь, создавший роль.

    displayName: string

    Отображаемое имя роли.

    name: string

    Уникальное имя роли.

    properties: string[]

    Список свойств роли.

    rights: string[]

    Список прав, доступных роли.

    securityLabels: string[]

    Метки безопасности роли.

    type: string

    Тип роли.

    updatedAt: null | string

    Дата последнего изменения роли.

    updatedBy: null | string

    Пользователь, изменивший роль.