| Name |
Type |
Description |
Notes |
| id |
int |
|
[optional] |
| name |
str |
|
[optional] |
| environment |
str |
|
[optional] |
| public_key |
str |
|
[optional] |
| fingerprint |
str |
|
[optional] |
| created_at |
datetime |
|
[optional] |
from hyperstack.models.keypair_fields import KeypairFields
# TODO update the JSON string below
json = "{}"
# create an instance of KeypairFields from a JSON string
keypair_fields_instance = KeypairFields.from_json(json)
# print the JSON string representation of the object
print KeypairFields.to_json()
# convert the object into a dict
keypair_fields_dict = keypair_fields_instance.to_dict()
# create an instance of KeypairFields from a dict
keypair_fields_form_dict = keypair_fields.from_dict(keypair_fields_dict)
[Back to Model list] [Back to API list] [Back to README]