Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 929 Bytes

File metadata and controls

30 lines (21 loc) · 929 Bytes

ClubRelations

Club Relations

Properties

Name Type Description Notes
data ClubRelationsData [optional]

Example

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)

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