TopicName a list of repo topic names
| Name | Type | Description | Notes |
|---|---|---|---|
| topics | List[str] | [optional] |
from openapi_client.models.topic_name import TopicName
# TODO update the JSON string below
json = "{}"
# create an instance of TopicName from a JSON string
topic_name_instance = TopicName.from_json(json)
# print the JSON string representation of the object
print(TopicName.to_json())
# convert the object into a dict
topic_name_dict = topic_name_instance.to_dict()
# create an instance of TopicName from a dict
topic_name_from_dict = TopicName.from_dict(topic_name_dict)