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 a difference exists between the `type` and `onDiskType` returns. * `1` - Conflict exists. * `0` - No conflict exists.
[optional]
exists
int
Whether the file exists in the user's directory or only in the backup. * `1` - File exists in the user's directory. * `0` - File exists only in the backup.
[optional]
name
str
The name of the file or directory.
[optional]
on_disk_type
str
The item type stored on the disk. * `dir` - A directory. * `file` - A file. * `symlink` - A symlink. * `unknown` - An unknown file type.
[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_response200397_result_dataimportInlineResponse200397ResultData# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200397ResultData from a JSON stringinline_response200397_result_data_instance=InlineResponse200397ResultData.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200397ResultData.to_json())
# convert the object into a dictinline_response200397_result_data_dict=inline_response200397_result_data_instance.to_dict()
# create an instance of InlineResponse200397ResultData from a dictinline_response200397_result_data_from_dict=InlineResponse200397ResultData.from_dict(inline_response200397_result_data_dict)