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"}; Copy
const newContact: NewContact = { email: "[email protected]", name: "John Doe", avatar: "https://avatar.example.com/john.jpg"};
Email address of the contact (required)
Optional
Optional display name for the contact
Optional avatar image URL for the contact
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.
Example