Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.13 KB

File metadata and controls

29 lines (20 loc) · 1.13 KB

UserEnhancedMetricsResponseFields

Properties

Name Type Description Notes
enabled bool [optional]

Example

from hyperstack.models.user_enhanced_metrics_response_fields import UserEnhancedMetricsResponseFields

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

# convert the object into a dict
user_enhanced_metrics_response_fields_dict = user_enhanced_metrics_response_fields_instance.to_dict()
# create an instance of UserEnhancedMetricsResponseFields from a dict
user_enhanced_metrics_response_fields_from_dict = UserEnhancedMetricsResponseFields.from_dict(user_enhanced_metrics_response_fields_dict)

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