MonoCloud Management SDK
    Preparing search index...

    Log Actor Response: Represents the entity that performed the action recorded in the log entry.

    LogActor

    interface LogActor {
        id?: string | null;
        identifier?: string | null;
        name?: string | null;
        session_id?: string | null;
        type: ActorTypes;
    }
    Index

    Properties

    id?: string | null

    The unique identifier of the actor entity.

    LogActor

    identifier?: string | null

    The primary identifier of the actor (for example, email address).

    LogActor

    name?: string | null

    The display name of the actor.

    LogActor

    session_id?: string | null

    The unique identifier of the session associated with the action.

    LogActor

    The actor type.

    LogActor