Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.05 KB

File metadata and controls

34 lines (25 loc) · 1.05 KB

MonitorResponse

Properties

Name Type Description Notes
id str
url str
type ResourceType
is_enabled bool
created_at datetime
updated_at datetime

Example

from wordlift_client.models.monitor_response import MonitorResponse

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

# convert the object into a dict
monitor_response_dict = monitor_response_instance.to_dict()
# create an instance of MonitorResponse from a dict
monitor_response_from_dict = MonitorResponse.from_dict(monitor_response_dict)

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