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 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
fromclientapi_cpanel.models.inline_response200238_result_dataimportInlineResponse200238ResultData# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200238ResultData from a JSON stringinline_response200238_result_data_instance=InlineResponse200238ResultData.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200238ResultData.to_json())
# convert the object into a dictinline_response200238_result_data_dict=inline_response200238_result_data_instance.to_dict()
# create an instance of InlineResponse200238ResultData from a dictinline_response200238_result_data_from_dict=InlineResponse200238ResultData.from_dict(inline_response200238_result_data_dict)