Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 1.14 KB

File metadata and controls

36 lines (28 loc) · 1.14 KB

ListMonitorCategoriesResponse

Properties

Name Type Description Notes
categories List[TestCategoryType] [optional]

Example

from ri.apiclient.models.list_monitor_categories_response import (
    ListMonitorCategoriesResponse,
)

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

# convert the object into a dict
list_monitor_categories_response_dict = (
    list_monitor_categories_response_instance.to_dict()
)
# create an instance of ListMonitorCategoriesResponse from a dict
list_monitor_categories_response_from_dict = ListMonitorCategoriesResponse.from_dict(
    list_monitor_categories_response_dict
)

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