Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.97 KB

InlineResponse200397ResultData.md

File metadata and controls

33 lines (24 loc) · 1.97 KB

InlineResponse200397ResultData

Properties

Name Type Description Notes
conflict int 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

from clientapi_cpanel.models.inline_response200397_result_data import InlineResponse200397ResultData

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

# convert the object into a dict
inline_response200397_result_data_dict = inline_response200397_result_data_instance.to_dict()
# create an instance of InlineResponse200397ResultData from a dict
inline_response200397_result_data_from_dict = InlineResponse200397ResultData.from_dict(inline_response200397_result_data_dict)

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