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
The backup type. * `compressed` — A compressed tar file. * `incremental` — A full tree of files and directories. * `uncompressed` — An uncompressed tar file.
[optional]
exists
int
Whether the item (a file, a directory, or a symlink) exists in the local disk or only in the backup. * `1` — The item exists in the local disk. * `0` — The item exists only in the backup. Note: This return appears only if you set the `exists` parameter to `1`.
[optional]
file_size
int
The size, in bytes, of the file in the backup. Note: The function returns this value only if the item is a file.
[optional]
mtime
int
The file's last modification time.
[optional]
path
str
The identical file path value that the system passed in the function.
[optional]
type
str
The item type stored in the backup. * `dir` — A directory. * `file` — A file. * `symlink` — A symlink. * `unknown` — An unknown file type.
[optional]
Example
fromclientapi_cpanel.models.inline_response200399_result_dataimportInlineResponse200399ResultData# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200399ResultData from a JSON stringinline_response200399_result_data_instance=InlineResponse200399ResultData.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200399ResultData.to_json())
# convert the object into a dictinline_response200399_result_data_dict=inline_response200399_result_data_instance.to_dict()
# create an instance of InlineResponse200399ResultData from a dictinline_response200399_result_data_from_dict=InlineResponse200399ResultData.from_dict(inline_response200399_result_data_dict)