Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

FeatureDescriptions

Properties

Name Type Description Notes
features List[str] The list of features in a role. [optional]
id str The role's ID. [optional]
title str The role's title. [optional]

Example

from clientapi_cpanel.models.feature_descriptions import FeatureDescriptions

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

# convert the object into a dict
feature_descriptions_dict = feature_descriptions_instance.to_dict()
# create an instance of FeatureDescriptions from a dict
feature_descriptions_from_dict = FeatureDescriptions.from_dict(feature_descriptions_dict)

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