interface IAddFolderResponse {
    folder: {
        id: string;
        title: string;
        username: string;
    };
    success: boolean;
}

Properties

Properties

folder: {
    id: string;
    title: string;
    username: string;
}

Information about created folder: its alphanumeric id, name, and owner's name.

Type declaration

  • id: string
  • title: string
  • username: string
success: boolean

Success or failure of request.