Club Relations
| Name | Type | Description | Notes |
|---|---|---|---|
| data | ClubRelationsData | [optional] |
from jikan_openapi.models.club_relations import ClubRelations
# TODO update the JSON string below
json = "{}"
# create an instance of ClubRelations from a JSON string
club_relations_instance = ClubRelations.from_json(json)
# print the JSON string representation of the object
print(ClubRelations.to_json())
# convert the object into a dict
club_relations_dict = club_relations_instance.to_dict()
# create an instance of ClubRelations from a dict
club_relations_form_dict = club_relations.from_dict(club_relations_dict)