interface Folder {
    createdAt?: Date;
    id: string;
    name: string;
    path: string;
    projectId: string;
    region: Region;
}

Properties

createdAt?: Date

Date and time of the folder's creation.

id: string

ID of the folder.

name: string

Name of the folder.

path: string

Location of the folder in the directory structure.

projectId: string

ID of the Project containing the folder.

region: Region

Region of the folder.