Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.1 KB

File metadata and controls

30 lines (22 loc) · 1.1 KB

FirewallRulesOutResponse

Properties

Name Type Description Notes
response_id object ID запроса. [optional]
meta Meta
rules object

Example

from timeweb_cloud_api.models.firewall_rules_out_response import FirewallRulesOutResponse

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

# convert the object into a dict
firewall_rules_out_response_dict = firewall_rules_out_response_instance.to_dict()
# create an instance of FirewallRulesOutResponse from a dict
firewall_rules_out_response_form_dict = firewall_rules_out_response.from_dict(firewall_rules_out_response_dict)

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