Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 890 Bytes

File metadata and controls

30 lines (21 loc) · 890 Bytes

ClubStaff

Club Staff Resource

Properties

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

Example

from jikan_openapi.models.club_staff import ClubStaff

# TODO update the JSON string below
json = "{}"
# create an instance of ClubStaff from a JSON string
club_staff_instance = ClubStaff.from_json(json)
# print the JSON string representation of the object
print(ClubStaff.to_json())

# convert the object into a dict
club_staff_dict = club_staff_instance.to_dict()
# create an instance of ClubStaff from a dict
club_staff_form_dict = club_staff.from_dict(club_staff_dict)

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