| Name |
Type |
Description |
Notes |
| value |
float |
|
|
| unit |
str |
|
|
from hyperstack.models.power_usage_model import PowerUsageModel
# TODO update the JSON string below
json = "{}"
# create an instance of PowerUsageModel from a JSON string
power_usage_model_instance = PowerUsageModel.from_json(json)
# print the JSON string representation of the object
print(PowerUsageModel.to_json())
# convert the object into a dict
power_usage_model_dict = power_usage_model_instance.to_dict()
# create an instance of PowerUsageModel from a dict
power_usage_model_form_dict = power_usage_model.from_dict(power_usage_model_dict)
[Back to Model list] [Back to API list] [Back to README]