| Name |
Type |
Description |
Notes |
| url |
str |
|
|
| type |
str |
|
[optional] |
from wordlift_client.models.replace_monitor_item import ReplaceMonitorItem
# TODO update the JSON string below
json = "{}"
# create an instance of ReplaceMonitorItem from a JSON string
replace_monitor_item_instance = ReplaceMonitorItem.from_json(json)
# print the JSON string representation of the object
print(ReplaceMonitorItem.to_json())
# convert the object into a dict
replace_monitor_item_dict = replace_monitor_item_instance.to_dict()
# create an instance of ReplaceMonitorItem from a dict
replace_monitor_item_from_dict = ReplaceMonitorItem.from_dict(replace_monitor_item_dict)
[Back to Model list] [Back to API list] [Back to README]