Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.13 KB

File metadata and controls

32 lines (23 loc) · 1.13 KB

InternalEnvironmentFields

Properties

Name Type Description Notes
id int [optional]
name str [optional]
region str [optional]
created_at datetime [optional]

Example

from hyperstack.models.internal_environment_fields import InternalEnvironmentFields

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

# convert the object into a dict
internal_environment_fields_dict = internal_environment_fields_instance.to_dict()
# create an instance of InternalEnvironmentFields from a dict
internal_environment_fields_form_dict = internal_environment_fields.from_dict(internal_environment_fields_dict)

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