Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1021 Bytes

File metadata and controls

30 lines (21 loc) · 1021 Bytes

ClubStaffDataInner

Properties

Name Type Description Notes
url str User URL [optional]
username str User's username [optional]

Example

from jikan_openapi.models.club_staff_data_inner import ClubStaffDataInner

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

# convert the object into a dict
club_staff_data_inner_dict = club_staff_data_inner_instance.to_dict()
# create an instance of ClubStaffDataInner from a dict
club_staff_data_inner_form_dict = club_staff_data_inner.from_dict(club_staff_data_inner_dict)

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