Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.07 KB

File metadata and controls

33 lines (24 loc) · 1.07 KB

PersonResult

Properties

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]

Example

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)

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