MonoCloud Management SDK
    Preparing search index...

    Log Target Response: Represents the entity affected by the log event.

    LogTarget

    interface LogTarget {
        id?: string | null;
        identifier?: string | null;
        name?: string | null;
        type: TargetTypes;
    }
    Index

    Properties

    id?: string | null

    The unique identifier of the target entity.

    LogTarget

    identifier?: string | null

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

    LogTarget

    name?: string | null

    The display name of the target entity.

    LogTarget

    The target type.

    LogTarget