WatchInfo represents an API watch status of one repository
| Name | Type | Description | Notes |
|---|---|---|---|
| created_at | datetime | [optional] | |
| ignored | bool | [optional] | |
| reason | object | [optional] | |
| repository_url | str | [optional] | |
| subscribed | bool | [optional] | |
| url | str | [optional] |
from openapi_client.models.watch_info import WatchInfo
# TODO update the JSON string below
json = "{}"
# create an instance of WatchInfo from a JSON string
watch_info_instance = WatchInfo.from_json(json)
# print the JSON string representation of the object
print(WatchInfo.to_json())
# convert the object into a dict
watch_info_dict = watch_info_instance.to_dict()
# create an instance of WatchInfo from a dict
watch_info_from_dict = WatchInfo.from_dict(watch_info_dict)