Name | Type | Description | Notes |
---|---|---|---|
status | bool | [optional] | |
message | str | [optional] | |
keypairs | List[KeypairFields] | [optional] |
from hyperstack.models.keypairs import Keypairs
# TODO update the JSON string below
json = "{}"
# create an instance of Keypairs from a JSON string
keypairs_instance = Keypairs.from_json(json)
# print the JSON string representation of the object
print Keypairs.to_json()
# convert the object into a dict
keypairs_dict = keypairs_instance.to_dict()
# create an instance of Keypairs from a dict
keypairs_form_dict = keypairs.from_dict(keypairs_dict)