| Name | Type | Description | Notes |
|---|---|---|---|
| id | float | [optional] | |
| profile_path | str | [optional] | |
| adult | bool | [optional] | |
| media_type | str | [optional] [default to 'person'] | |
| known_for | List[PersonResultKnownForInner] | [optional] |
from seerr.models.person_result import PersonResult
# TODO update the JSON string below
json = "{}"
# create an instance of PersonResult from a JSON string
person_result_instance = PersonResult.from_json(json)
# print the JSON string representation of the object
print(PersonResult.to_json())
# convert the object into a dict
person_result_dict = person_result_instance.to_dict()
# create an instance of PersonResult from a dict
person_result_from_dict = PersonResult.from_dict(person_result_dict)