Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 972 Bytes

File metadata and controls

30 lines (21 loc) · 972 Bytes

ReplaceMonitorItem

Properties

Name Type Description Notes
url str
type str [optional]

Example

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]