Сетевой протокол
| Name | Type | Description | Notes |
|---|
from timeweb_cloud_api.models.firewall_rule_protocol import FirewallRuleProtocol
# TODO update the JSON string below
json = "{}"
# create an instance of FirewallRuleProtocol from a JSON string
firewall_rule_protocol_instance = FirewallRuleProtocol.from_json(json)
# print the JSON string representation of the object
print FirewallRuleProtocol.to_json()
# convert the object into a dict
firewall_rule_protocol_dict = firewall_rule_protocol_instance.to_dict()
# create an instance of FirewallRuleProtocol from a dict
firewall_rule_protocol_form_dict = firewall_rule_protocol.from_dict(firewall_rule_protocol_dict)