Creating Plot Twists
    Preparing search index...

    Type Alias NewContact

    Represents contact information for creating a new contact.

    Contacts are used throughout Plot for representing people associated with activities, such as event attendees or task assignees.

    const newContact: NewContact = {
    email: "[email protected]",
    name: "John Doe",
    avatar: "https://avatar.example.com/john.jpg"
    };
    type NewContact = {
        email: string;
        name?: string;
        avatar?: string;
    }
    Index

    Properties

    Properties

    email: string

    Email address of the contact (required)

    name?: string

    Optional display name for the contact

    avatar?: string

    Optional avatar image URL for the contact