Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

File metadata and controls

31 lines (22 loc) · 1.03 KB

CreateFirewallPayload

Properties

Name Type Description Notes
name str
description str [optional]
environment_id int

Example

from hyperstack.models.create_firewall_payload import CreateFirewallPayload

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

# convert the object into a dict
create_firewall_payload_dict = create_firewall_payload_instance.to_dict()
# create an instance of CreateFirewallPayload from a dict
create_firewall_payload_form_dict = create_firewall_payload.from_dict(create_firewall_payload_dict)

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