Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

FirewallEnvironmentFields

Properties

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

Example

from hyperstack.models.firewall_environment_fields import FirewallEnvironmentFields

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

# convert the object into a dict
firewall_environment_fields_dict = firewall_environment_fields_instance.to_dict()
# create an instance of FirewallEnvironmentFields from a dict
firewall_environment_fields_from_dict = FirewallEnvironmentFields.from_dict(firewall_environment_fields_dict)

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