Forum Resource
| Name | Type | Description | Notes |
|---|---|---|---|
| data | List[ForumDataInner] | [optional] |
from jikan_openapi.models.forum import Forum
# TODO update the JSON string below
json = "{}"
# create an instance of Forum from a JSON string
forum_instance = Forum.from_json(json)
# print the JSON string representation of the object
print(Forum.to_json())
# convert the object into a dict
forum_dict = forum_instance.to_dict()
# create an instance of Forum from a dict
forum_form_dict = forum.from_dict(forum_dict)