Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.18 KB

File metadata and controls

31 lines (22 loc) · 1.18 KB

UserDefaultChoiceForUserFields

Properties

Name Type Description Notes
flavor_id int [optional]
image_id int [optional]
keypair_id int [optional]

Example

from hyperstack.models.user_default_choice_for_user_fields import UserDefaultChoiceForUserFields

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

# convert the object into a dict
user_default_choice_for_user_fields_dict = user_default_choice_for_user_fields_instance.to_dict()
# create an instance of UserDefaultChoiceForUserFields from a dict
user_default_choice_for_user_fields_from_dict = UserDefaultChoiceForUserFields.from_dict(user_default_choice_for_user_fields_dict)

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