Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

File metadata and controls

31 lines (22 loc) · 1.1 KB

CreateInstancesResponse

Properties

Name Type Description Notes
instances List[InstanceFields] [optional]
message str [optional]
status bool [optional]

Example

from hyperstack.models.create_instances_response import CreateInstancesResponse

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

# convert the object into a dict
create_instances_response_dict = create_instances_response_instance.to_dict()
# create an instance of CreateInstancesResponse from a dict
create_instances_response_from_dict = CreateInstancesResponse.from_dict(create_instances_response_dict)

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