interface Folder {
    createdBy?: IdentityRef;
    createdOn?: Date;
    description?: string;
    lastChangedBy?: IdentityRef;
    lastChangedDate?: Date;
    path?: string;
}

Properties

createdBy?: IdentityRef

Identity who created this folder.

createdOn?: Date

Time when this folder created.

description?: string

Description of the folder.

lastChangedBy?: IdentityRef

Identity who last changed this folder.

lastChangedDate?: Date

Time when this folder last changed.

path?: string

path of the folder.