Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.06 KB

TopicResponse.md

File metadata and controls

34 lines (25 loc) · 1.06 KB

TopicResponse

TopicResponse for returning topics

Properties

Name Type Description Notes
created datetime [optional]
id int [optional]
repo_count int [optional]
topic_name str [optional]
updated datetime [optional]

Example

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)

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