FileQueryFlags

FileQueryFlags
FileQueryFlags

The FileInfo.Details data object type is a set of flags for a search request.

This search request specifies which details to return for each matching file. This data object type is here to ensure that there is one flag corresponding to each FileInfo property other than the path name, which a search always returns.

AllOf
This class requires all of the following:
JSON Example
{
    "_typeName": "string",
    "fileType": false,
    "fileSize": false,
    "modification": false,
    "fileOwner": false
}
boolean
fileType
Required

The flag to indicate whether or not the files that match this query specification are returned along with file type information.

This field must be set to return specific details about the file type.

boolean
fileSize
Required

The flag to indicate whether or not the size of the file is returned.

boolean
modification
Required

The flag to indicate whether or not to return the date and time the file was last modified.

boolean
fileOwner
Required

The flag to indicate whether or not to return the file owner.