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 item is a file or a directory. * `1` - File. * `0` - Directory.
[optional]
ismailbox
int
Whether the item is a mailbox. * `1` - Mailbox. * `0` - Not a mailbox.
[optional]
mtime
int
The item's modification time. A time, in Unix time format.
[optional]
path
str
The item's directory's path.
[optional]
relpath
str
The item's relative path.
[optional]
type
str
The item type. * `dir` - The item is a directory. * `file` - The item is a file.
[optional]
Example
fromclientapi_cpanel.models.inline_response200128_result_dataimportInlineResponse200128ResultData# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200128ResultData from a JSON stringinline_response200128_result_data_instance=InlineResponse200128ResultData.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200128ResultData.to_json())
# convert the object into a dictinline_response200128_result_data_dict=inline_response200128_result_data_instance.to_dict()
# create an instance of InlineResponse200128ResultData from a dictinline_response200128_result_data_from_dict=InlineResponse200128ResultData.from_dict(inline_response200128_result_data_dict)