Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.07 KB

File metadata and controls

35 lines (26 loc) · 1.07 KB

WatchInfo

WatchInfo represents an API watch status of one repository

Properties

Name Type Description Notes
created_at datetime [optional]
ignored bool [optional]
reason object [optional]
repository_url str [optional]
subscribed bool [optional]
url str [optional]

Example

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)

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