Name: FileAttr

Information about a file returned by ls or stat.

Data Structure
{
   "typeId": "com.tintri.api.rest.v310.dto.domain.beans.file.FileAttr",
   "fileCreationTime": <Number>,
   "fileId": <Number>,
   "fileSize": <Number>,
   "name": <String>,
   "fileType": 'FILE' | 'DIR' | 'SYMLINK' | 'UNKNOWN',
   "path": FilePath,
}

Elements
NameTypeDescription
fileTypeFILE | DIR | SYMLINK | UNKNOWNFile or directory.
FILE
DIR
SYMLINK
UNKNOWN
pathFilePathPath of the file.

Attributes
NameTypeDescription
fileCreationTimexsd:intCreate time of file as unix time.
fileIdxsd:longId of file.
fileSizexsd:longSize of file.
namexsd:stringName of the file.