Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 982 Bytes

File metadata and controls

29 lines (20 loc) · 982 Bytes

InstanceKeypairFields

Properties

Name Type Description Notes
name str [optional]

Example

from hyperstack.models.instance_keypair_fields import InstanceKeypairFields

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

# convert the object into a dict
instance_keypair_fields_dict = instance_keypair_fields_instance.to_dict()
# create an instance of InstanceKeypairFields from a dict
instance_keypair_fields_from_dict = InstanceKeypairFields.from_dict(instance_keypair_fields_dict)

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