| 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] |
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)