| Name |
Type |
Description |
Notes |
| check_interval_seconds |
int |
|
[optional] |
| timeout_seconds |
int |
|
[optional] |
| request_method |
str |
|
[optional] |
| request_body |
str |
|
[optional] |
| request_basic_auth_username |
str |
|
[optional] |
| request_basic_auth_password |
str |
|
[optional] |
| request_headers |
List[str] |
|
[optional] |
| response_status_code |
int |
|
[optional] |
| response_body |
str |
|
[optional] |
| response_headers |
List[str] |
|
[optional] |
from openapi_client.models.monitor_settings import MonitorSettings
# TODO update the JSON string below
json = "{}"
# create an instance of MonitorSettings from a JSON string
monitor_settings_instance = MonitorSettings.from_json(json)
# print the JSON string representation of the object
print(MonitorSettings.to_json())
# convert the object into a dict
monitor_settings_dict = monitor_settings_instance.to_dict()
# create an instance of MonitorSettings from a dict
monitor_settings_from_dict = MonitorSettings.from_dict(monitor_settings_dict)
[Back to Model list] [Back to API list] [Back to README]