Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.42 KB

InlineResponse20065ResultData.md

File metadata and controls

30 lines (21 loc) · 1.42 KB

InlineResponse20065ResultData

Properties

Name Type Description Notes
id str The type of path * `home` — The cPanel account's entire home directory. * `mail` — The cPanel account's email directory. * `public_html` — The cPanel account's web directory. * `public_ftp` — The cPanel account's FTP directory. [optional]
message str Short description of the path [optional]

Example

from clientapi_cpanel.models.inline_response20065_result_data import InlineResponse20065ResultData

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

# convert the object into a dict
inline_response20065_result_data_dict = inline_response20065_result_data_instance.to_dict()
# create an instance of InlineResponse20065ResultData from a dict
inline_response20065_result_data_from_dict = InlineResponse20065ResultData.from_dict(inline_response20065_result_data_dict)

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