TopicResponse for returning topics
Name | Type | Description | Notes |
---|---|---|---|
created | datetime | [optional] | |
id | int | [optional] | |
repo_count | int | [optional] | |
topic_name | str | [optional] | |
updated | datetime | [optional] |
from clientapi_forgejo.models.topic_response import TopicResponse
# TODO update the JSON string below
json = "{}"
# create an instance of TopicResponse from a JSON string
topic_response_instance = TopicResponse.from_json(json)
# print the JSON string representation of the object
print(TopicResponse.to_json())
# convert the object into a dict
topic_response_dict = topic_response_instance.to_dict()
# create an instance of TopicResponse from a dict
topic_response_from_dict = TopicResponse.from_dict(topic_response_dict)