Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 982 Bytes

File metadata and controls

35 lines (26 loc) · 982 Bytes

Crew

Properties

Name Type Description Notes
id float [optional]
credit_id str [optional]
gender float [optional]
name str [optional]
job str [optional]
department str [optional]
profile_path str [optional]

Example

from seerr.models.crew import Crew

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

# convert the object into a dict
crew_dict = crew_instance.to_dict()
# create an instance of Crew from a dict
crew_from_dict = Crew.from_dict(crew_dict)

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