Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 976 Bytes

File metadata and controls

30 lines (21 loc) · 976 Bytes

SetDefaultsPayload

Properties

Name Type Description Notes
flavors List[int]
images List[int]

Example

from hyperstack.models.set_defaults_payload import SetDefaultsPayload

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

# convert the object into a dict
set_defaults_payload_dict = set_defaults_payload_instance.to_dict()
# create an instance of SetDefaultsPayload from a dict
set_defaults_payload_form_dict = set_defaults_payload.from_dict(set_defaults_payload_dict)

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