| Name | Type | Description | Notes |
|---|---|---|---|
| person | AnimeStaffDataInnerPerson | [optional] | |
| positions | List[str] | Staff Positions | [optional] |
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)