Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

File metadata and controls

31 lines (22 loc) · 1.11 KB

EnvironmentFieldsForVolume

Properties

Name Type Description Notes
features object [optional]
name str [optional]
region str [optional]

Example

from hyperstack.models.environment_fields_for_volume import EnvironmentFieldsForVolume

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

# convert the object into a dict
environment_fields_for_volume_dict = environment_fields_for_volume_instance.to_dict()
# create an instance of EnvironmentFieldsForVolume from a dict
environment_fields_for_volume_from_dict = EnvironmentFieldsForVolume.from_dict(environment_fields_for_volume_dict)

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