Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.47 KB

File metadata and controls

30 lines (21 loc) · 1.47 KB

InlineResponse200109ResultDataParentState

An object containing the parent directory's leech protection information.

Properties

Name Type Description Notes
has_leech_protection int The parent directory's leech protection status. * `1` — Leech protection is enabled. * `0` — Leech protection is disabled. [optional]

Example

from clientapi_cpanel.models.inline_response200109_result_data_parent_state import InlineResponse200109ResultDataParentState

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

# convert the object into a dict
inline_response200109_result_data_parent_state_dict = inline_response200109_result_data_parent_state_instance.to_dict()
# create an instance of InlineResponse200109ResultDataParentState from a dict
inline_response200109_result_data_parent_state_from_dict = InlineResponse200109ResultDataParentState.from_dict(inline_response200109_result_data_parent_state_dict)

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