Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.92 KB

File metadata and controls

37 lines (28 loc) · 1.92 KB

InlineResponse200128ResultData

Properties

Name Type Description Notes
depth int The directory depth of the item's path. [optional]
file str The item's base name. [optional]
fullpath str The item's absolute path. [optional]
isleaf int 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

from clientapi_cpanel.models.inline_response200128_result_data import InlineResponse200128ResultData

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

# convert the object into a dict
inline_response200128_result_data_dict = inline_response200128_result_data_instance.to_dict()
# create an instance of InlineResponse200128ResultData from a dict
inline_response200128_result_data_from_dict = InlineResponse200128ResultData.from_dict(inline_response200128_result_data_dict)

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