Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 918 Bytes

Keypairs.md

File metadata and controls

31 lines (22 loc) · 918 Bytes

Keypairs

Properties

Name Type Description Notes
status bool [optional]
message str [optional]
keypairs List[KeypairFields] [optional]

Example

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)

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