interface Project {
    createdAt?: Date;
    description: string;
    id: string;
    name: string;
    organizationId: string;
    updatedAt?: Date;
}

Properties

createdAt?: Date

Creation date of the Project.

description: string

Description of the Project.

id: string

ID of the Project.

name: string

Name of the Project.

organizationId: string

Organization ID of the Project.

updatedAt?: Date

Update date of the Project.