| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | [optional] | |
| project_id | int | [optional] | |
| name | str | [optional] | |
| code | str | [optional] | |
| settings | HeartbeatMonitorSettings | [optional] | |
| is_ok | int | [optional] | |
| uptime | float | [optional] | |
| downtime | float | [optional] | |
| total_runs | int | [optional] | |
| total_missed_runs | int | [optional] | |
| last_run_datetime | datetime | [optional] | |
| notifications | MonitorNotifications | [optional] | |
| is_enabled | bool | [optional] | |
| datetime | datetime | [optional] |
from openapi_client.models.heartbeat_monitor import HeartbeatMonitor
# TODO update the JSON string below
json = "{}"
# create an instance of HeartbeatMonitor from a JSON string
heartbeat_monitor_instance = HeartbeatMonitor.from_json(json)
# print the JSON string representation of the object
print(HeartbeatMonitor.to_json())
# convert the object into a dict
heartbeat_monitor_dict = heartbeat_monitor_instance.to_dict()
# create an instance of HeartbeatMonitor from a dict
heartbeat_monitor_from_dict = HeartbeatMonitor.from_dict(heartbeat_monitor_dict)