Skip to content

Latest commit

 

History

History
51 lines (42 loc) · 3.71 KB

InlineResponse200238ResultData.md

File metadata and controls

51 lines (42 loc) · 3.71 KB

InlineResponse200238ResultData

Properties

Name Type Description Notes
absdir str The path to the user's home directory. [optional]
ctime int The file's creation time, Unix time format. [optional]
exists int 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 filepath. [optional]
gid int The file owner's system group ID. [optional]
hash str The full filepath's hash. [optional]
humansize str The file's formatted size, followed by 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]
mimename str The file's MIME name. [optional]
mimetype str The file's MIME type. [optional]
mode str The file's textual permissions in Unix format. [optional]
mtime int The file's last modification time, in Unix time format. [optional]
nicemode int The file's numerical permissions in octal notation. [optional]
path str The file's path. [optional]
phash str The parent filepath's file hash. [optional]
rawmimename str The file's raw MIME name. [optional]
rawmimetype str The file's raw MIME type. [optional]
read int Whether the file is readable. The function only returns this value if you set the `include_permissions` value to 1. * `1` - Readable. * `0` - Not readable. [optional]
size int The file's size, in bytes. [optional]
type str The item's type. * `file` - File. * `dir` - Directory. * `char` - Character special device. * `block` - Block special device. * `fifo` - Named pipe. * `link` - Symbolic link. * `socket` - Unix domain socket. [optional]
uid int The file owner's system user ID. [optional]
write int Whether the file is writable. The function only returns this value if you set the `include_permissions` value to 1 . * `1` - Writable. * `0` - Not writable. [optional]

Example

from clientapi_cpanel.models.inline_response200238_result_data import InlineResponse200238ResultData

# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse200238ResultData from a JSON string
inline_response200238_result_data_instance = InlineResponse200238ResultData.from_json(json)
# print the JSON string representation of the object
print(InlineResponse200238ResultData.to_json())

# convert the object into a dict
inline_response200238_result_data_dict = inline_response200238_result_data_instance.to_dict()
# create an instance of InlineResponse200238ResultData from a dict
inline_response200238_result_data_from_dict = InlineResponse200238ResultData.from_dict(inline_response200238_result_data_dict)

[Back to Model list] [Back to API list] [Back to README]