Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.01 KB

File metadata and controls

34 lines (25 loc) · 1.01 KB

Keypairs

Properties

Name Type Description Notes
count int [optional]
keypairs List[KeypairFields] [optional]
message str [optional]
page int [optional]
page_size int [optional]
status bool [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_from_dict = Keypairs.from_dict(keypairs_dict)

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