Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.12 KB

File metadata and controls

31 lines (22 loc) · 1.12 KB

UpdateKeypairNameResponse

Properties

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

Example

from hyperstack.models.update_keypair_name_response import UpdateKeypairNameResponse

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

# convert the object into a dict
update_keypair_name_response_dict = update_keypair_name_response_instance.to_dict()
# create an instance of UpdateKeypairNameResponse from a dict
update_keypair_name_response_from_dict = UpdateKeypairNameResponse.from_dict(update_keypair_name_response_dict)

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