Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 818 Bytes

File metadata and controls

30 lines (21 loc) · 818 Bytes

Forum

Forum Resource

Properties

Name Type Description Notes
data List[ForumDataInner] [optional]

Example

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)

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