Skip to content

Latest commit

 

History

History
51 lines (42 loc) · 1.76 KB

File metadata and controls

51 lines (42 loc) · 1.76 KB

CreditCast

Properties

Name Type Description Notes
id float [optional]
original_language str [optional]
episode_count float [optional]
overview str [optional]
origin_country List[str] [optional]
original_name str [optional]
vote_count float [optional]
name str [optional]
media_type str [optional]
popularity float [optional]
credit_id str [optional]
backdrop_path str [optional]
first_air_date str [optional]
vote_average float [optional]
genre_ids List[float] [optional]
poster_path str [optional]
original_title str [optional]
video bool [optional]
title str [optional]
adult bool [optional]
release_date str [optional]
character str [optional]
media_info MediaInfo [optional]

Example

from seerr.models.credit_cast import CreditCast

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

# convert the object into a dict
credit_cast_dict = credit_cast_instance.to_dict()
# create an instance of CreditCast from a dict
credit_cast_from_dict = CreditCast.from_dict(credit_cast_dict)

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