Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 2.38 KB

InlineResponse200399ResultData.md

File metadata and controls

36 lines (27 loc) · 2.38 KB

InlineResponse200399ResultData

Properties

Name Type Description Notes
backup_date str The date when the system created the backup. [optional]
backup_id InlineResponse200399ResultDataBackupID [optional]
backup_type str 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

from clientapi_cpanel.models.inline_response200399_result_data import InlineResponse200399ResultData

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

# convert the object into a dict
inline_response200399_result_data_dict = inline_response200399_result_data_instance.to_dict()
# create an instance of InlineResponse200399ResultData from a dict
inline_response200399_result_data_from_dict = InlineResponse200399ResultData.from_dict(inline_response200399_result_data_dict)

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