Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.82 KB

File metadata and controls

32 lines (23 loc) · 1.82 KB

InlineResponse200278ResultData

Properties

Name Type Description Notes
errors List[str] An array of errors that the system generated. [optional]
failure_type str The reason why the system will register the hostname. * `new` — The host does not already exist. * `changed` — The host's information has changed. [optional]
host List[InlineResponse200278ResultDataHost] An array of objects that contain information about the host. [optional]
status int Whether the host already exists in the `/home/user/.ssh/known_hosts` file, where `user` is the cPanel account username. * `1` — Exists. * `0` — The host does not already exist, or the system must re-register the hostname. [optional]

Example

from clientapi_cpanel.models.inline_response200278_result_data import InlineResponse200278ResultData

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

# convert the object into a dict
inline_response200278_result_data_dict = inline_response200278_result_data_instance.to_dict()
# create an instance of InlineResponse200278ResultData from a dict
inline_response200278_result_data_from_dict = InlineResponse200278ResultData.from_dict(inline_response200278_result_data_dict)

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