You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Whether the file exists in the directory. * `1` — Exists. * `0` — Does not exist.
[optional]
file
str
The filename.
[optional]
fullpath
str
The file's full file path.
[optional]
gid
int
The file owner's system group ID.
[optional]
hash
str
The full file path's hash.
[optional]
humansize
str
The formatted size of the file. The function returns the size with one of the following symbols: * `KB` — Kilobytes. * `MB` — Megabytes. * `GB` — Gigabytes.
[optional]
isleaf
int
Whether the directory contains subdirectories. * `1` — Contains subdirectories. * `0` — Does not contain subdirectories.
[optional]
isparent
int
Whether the file is a parent record. * `1` — A parent record. * `0` — Not a parent record.
[optional]
mimename
str
The file's MIME type name.
[optional]
mimetype
str
The file's MIME type.
[optional]
mode
str
The file's textual permissions.
[optional]
mtime
int
The file's last modification time.
[optional]
nicemode
int
The file's numerical permissions.
[optional]
path
str
The absolute path to the file.
[optional]
phash
str
The parent filepath's file hash.
[optional]
rawmimename
str
The file's raw MIME type's name.
[optional]
rawmimetype
str
The file's raw MIME type.
[optional]
read
int
Whether the file is readable. * `1` — Readable. * `0` — Not readable. Note: The function only returns this value if the `include_permissions` value is `1`.
[optional]
size
int
The file's size, in bytes.
[optional]
type
str
The item's type. * `file` — A file. * `dir` — A directory. * `char` — A character special device. * `block` — A block special device. * `fifo` - A named pipe (FIFO). * `link` — A symbolic link. * `socket` — A Unix domain socket.
[optional]
uid
int
The file owner's system user ID.
[optional]
write
int
Whether the file is writable. * `1` — Writable. * `0` — Not writable. Note: The function only returns this value if the `include_permissions` value is `1`.
[optional]
Example
fromclientapi_cpanel.models.inline_response200239_result_data_filesimportInlineResponse200239ResultDataFiles# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200239ResultDataFiles from a JSON stringinline_response200239_result_data_files_instance=InlineResponse200239ResultDataFiles.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200239ResultDataFiles.to_json())
# convert the object into a dictinline_response200239_result_data_files_dict=inline_response200239_result_data_files_instance.to_dict()
# create an instance of InlineResponse200239ResultDataFiles from a dictinline_response200239_result_data_files_from_dict=InlineResponse200239ResultDataFiles.from_dict(inline_response200239_result_data_files_dict)