A user updates the Name of a project. This payload comes with an event key of project:modified.

interface ProjectModified {
    actor: project.Actor;
    date: string;
    eventKey: "project:modified";
    new: project.Project;
    old: project.Project;
}

Properties

actor: project.Actor

The user who made the update.

date: string
eventKey: "project:modified"

The defaults of the current version of the project.

The details of the old version of the project.