| Name | Type | Description | Notes |
|---|---|---|---|
| created_at | datetime | [optional] | |
| environment | KeypairEnvironmentFields | [optional] | |
| fingerprint | str | [optional] | |
| id | int | [optional] | |
| name | str | [optional] | |
| public_key | str | [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_from_dict = KeypairFields.from_dict(keypair_fields_dict)