Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.67 KB

InlineResponse200107ResultDataHomeState.md

File metadata and controls

33 lines (24 loc) · 1.67 KB

InlineResponse200107ResultDataHomeState

The home directory's privacy information.

Properties

Name Type Description Notes
auth_name str The authentication resource name. [optional]
auth_type str The home directory's authentication type. * `Basic` * `None` [optional]
passwd_file str The absolute file path to the home directory's password file. [optional]
protected int Whether the home directory is protected. * `1` — Protected. * `0` — Not protected. [optional]

Example

from clientapi_cpanel.models.inline_response200107_result_data_home_state import InlineResponse200107ResultDataHomeState

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

# convert the object into a dict
inline_response200107_result_data_home_state_dict = inline_response200107_result_data_home_state_instance.to_dict()
# create an instance of InlineResponse200107ResultDataHomeState from a dict
inline_response200107_result_data_home_state_from_dict = InlineResponse200107ResultDataHomeState.from_dict(inline_response200107_result_data_home_state_dict)

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