CreateCustomMonitorResponse returns the created custom monitor.
| Name | Type | Description | Notes |
|---|---|---|---|
| monitor | Monitor | [optional] |
from ri.apiclient.models.create_custom_monitor_response import (
CreateCustomMonitorResponse,
)
# TODO update the JSON string below
json = "{}"
# create an instance of CreateCustomMonitorResponse from a JSON string
create_custom_monitor_response_instance = CreateCustomMonitorResponse.from_json(json)
# print the JSON string representation of the object
print(CreateCustomMonitorResponse.to_json())
# convert the object into a dict
create_custom_monitor_response_dict = create_custom_monitor_response_instance.to_dict()
# create an instance of CreateCustomMonitorResponse from a dict
create_custom_monitor_response_from_dict = CreateCustomMonitorResponse.from_dict(
create_custom_monitor_response_dict
)