| Name | Type | Description | Notes |
|---|---|---|---|
| created_at | datetime | [optional] | |
| description | str | [optional] | |
| environment | FirewallEnvironmentFields | [optional] | |
| id | int | [optional] | |
| name | str | [optional] | |
| status | str | [optional] |
from hyperstack.models.firewall_fields import FirewallFields
# TODO update the JSON string below
json = "{}"
# create an instance of FirewallFields from a JSON string
firewall_fields_instance = FirewallFields.from_json(json)
# print the JSON string representation of the object
print(FirewallFields.to_json())
# convert the object into a dict
firewall_fields_dict = firewall_fields_instance.to_dict()
# create an instance of FirewallFields from a dict
firewall_fields_from_dict = FirewallFields.from_dict(firewall_fields_dict)