Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.08 KB

File metadata and controls

29 lines (21 loc) · 1.08 KB

FirewallRuleOutResponse

Properties

Name Type Description Notes
response_id object ID запроса. [optional]
rule FirewallRule

Example

from timeweb_cloud_api.models.firewall_rule_out_response import FirewallRuleOutResponse

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

# convert the object into a dict
firewall_rule_out_response_dict = firewall_rule_out_response_instance.to_dict()
# create an instance of FirewallRuleOutResponse from a dict
firewall_rule_out_response_form_dict = firewall_rule_out_response.from_dict(firewall_rule_out_response_dict)

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