Creating Plot Twists
    Preparing search index...

    Type Alias Actor

    Represents an actor in Plot - a user, contact, or twist.

    Actors can be associated with activities as authors, assignees, or mentions. The email field is only included when ContactAccess.Read permission is granted.

    const actor: Actor = {
    id: "f0ffd5f8-1635-4b13-9532-35f97446db90" as ActorId,
    type: ActorType.Contact,
    email: "[email protected]", // Only if ContactAccess.Read
    name: "John Doe"
    };
    type Actor = {
        id: ActorId;
        type: ActorType;
        email?: string;
        name?: string | null;
    }
    Index

    Properties

    Properties

    Unique identifier for the actor

    type: ActorType

    Type of actor (User, Contact, or Twist)

    email?: string

    Email address (only included with ContactAccess.Read permission)

    name?: string | null

    Display name (undefined if not included due to permissions, null if not set)