Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.12 KB

File metadata and controls

30 lines (22 loc) · 1.12 KB

FirewallGroupsOutResponse

Properties

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

Example

from timeweb_cloud_api.models.firewall_groups_out_response import FirewallGroupsOutResponse

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

# convert the object into a dict
firewall_groups_out_response_dict = firewall_groups_out_response_instance.to_dict()
# create an instance of FirewallGroupsOutResponse from a dict
firewall_groups_out_response_form_dict = firewall_groups_out_response.from_dict(firewall_groups_out_response_dict)

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