You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This field indicates whether the system should send CT monitoring notifications when this monitor is triggered. For default monitors, after the RIME engine creates a Monitor, this field should only be modified directly by the user. i.e. when we upsert the monitor in the Result synthesizer, we must not overwrite the value configured by the user.
Option to pin a monitor. Pinned monitors are pinned for all users visiting the monitor's project.
[optional]
Example
fromri.apiclient.models.update_monitor_request_monitorimportUpdateMonitorRequestMonitor# TODO update the JSON string belowjson="{}"# create an instance of UpdateMonitorRequestMonitor from a JSON stringupdate_monitor_request_monitor_instance=UpdateMonitorRequestMonitor.from_json(json)
# print the JSON string representation of the objectprint(UpdateMonitorRequestMonitor.to_json())
# convert the object into a dictupdate_monitor_request_monitor_dict=update_monitor_request_monitor_instance.to_dict()
# create an instance of UpdateMonitorRequestMonitor from a dictupdate_monitor_request_monitor_from_dict=UpdateMonitorRequestMonitor.from_dict(update_monitor_request_monitor_dict)