Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.58 KB

InlineResponse200541ResultDataFeature.md

File metadata and controls

30 lines (21 loc) · 1.58 KB

InlineResponse200541ResultDataFeature

The available features on the account that exist in the /var/cpanel/users/user file, where user represents the cPanel user. **Note:** This object returns any custom features that the hosting provider adds to the /var/cpanel/users/user` file.

Properties

Name Type Description Notes
additional_properties int Whether the feature is enabled. * `1` - Enabled. * `0` - Disabled. Note: The feature's name is the return name. [optional]

Example

from clientapi_cpanel.models.inline_response200541_result_data_feature import InlineResponse200541ResultDataFeature

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

# convert the object into a dict
inline_response200541_result_data_feature_dict = inline_response200541_result_data_feature_instance.to_dict()
# create an instance of InlineResponse200541ResultDataFeature from a dict
inline_response200541_result_data_feature_from_dict = InlineResponse200541ResultDataFeature.from_dict(inline_response200541_result_data_feature_dict)

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