Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

File metadata and controls

30 lines (21 loc) · 1.06 KB

AnimeStaffDataInner

Properties

Name Type Description Notes
person AnimeStaffDataInnerPerson [optional]
positions List[str] Staff Positions [optional]

Example

from jikan_openapi.models.anime_staff_data_inner import AnimeStaffDataInner

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

# convert the object into a dict
anime_staff_data_inner_dict = anime_staff_data_inner_instance.to_dict()
# create an instance of AnimeStaffDataInner from a dict
anime_staff_data_inner_form_dict = anime_staff_data_inner.from_dict(anime_staff_data_inner_dict)

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