Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.24 KB

File metadata and controls

31 lines (22 loc) · 1.24 KB

SubResourcesGraphResponseModel

Properties

Name Type Description Notes
message str [optional]
status bool [optional]
sub_resources_costs SubResourcesCostsResponseModel [optional]

Example

from hyperstack.models.sub_resources_graph_response_model import SubResourcesGraphResponseModel

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

# convert the object into a dict
sub_resources_graph_response_model_dict = sub_resources_graph_response_model_instance.to_dict()
# create an instance of SubResourcesGraphResponseModel from a dict
sub_resources_graph_response_model_from_dict = SubResourcesGraphResponseModel.from_dict(sub_resources_graph_response_model_dict)

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