MetricsResponse

Properties

Name Type Description Notes
items List[MetricsItem] [optional]
limit int [optional]
offset int [optional]
total int [optional]

Example

from scc_firewall_manager_sdk.models.metrics_response import MetricsResponse

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

# convert the object into a dict
metrics_response_dict = metrics_response_instance.to_dict()
# create an instance of MetricsResponse from a dict
metrics_response_form_dict = metrics_response.from_dict(metrics_response_dict)

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