Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.07 KB

File metadata and controls

31 lines (22 loc) · 1.07 KB

ImportKeypairResponse

Properties

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

Example

from hyperstack.models.import_keypair_response import ImportKeypairResponse

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

# convert the object into a dict
import_keypair_response_dict = import_keypair_response_instance.to_dict()
# create an instance of ImportKeypairResponse from a dict
import_keypair_response_from_dict = ImportKeypairResponse.from_dict(import_keypair_response_dict)

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