Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.09 KB

File metadata and controls

29 lines (21 loc) · 1.09 KB

FirewallGroupOutResponse

Properties

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

Example

from timeweb_cloud_api.models.firewall_group_out_response import FirewallGroupOutResponse

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

# convert the object into a dict
firewall_group_out_response_dict = firewall_group_out_response_instance.to_dict()
# create an instance of FirewallGroupOutResponse from a dict
firewall_group_out_response_form_dict = firewall_group_out_response.from_dict(firewall_group_out_response_dict)

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