Объект, хранящий привязку роли к объекту.

interface IRoleLink {
    deltaKind: DeltaKind;
    objectId: string;
    roleId: string;
    roleName: string;
    clone(): IRoleLink;
    deserializeFromStorage(
        storage: IStorage,
        context?: StorageSerializableContext,
    ): this;
    serializeToStorage(
        storage?: IStorage,
        context?: StorageSerializableContext,
    ): IStorage;
}

Hierarchy (View Summary, Expand)

Implemented by

Properties

deltaKind: DeltaKind

Вид изменений.

objectId: string

Идентификатор объекта.

roleId: string

Идентификатор роли.

roleName: string

Имя роли.

Methods

  • Создает новый объект, который является копией текущего экземпляра.

    Returns IRoleLink

MMNEPVFCICPMFPCPTTAAATR