PersonLookupInfo
Properties
Name |
Type |
Description |
Notes |
name |
str |
Gets or sets the name. |
[optional] |
original_title |
str |
Gets or sets the original title. |
[optional] |
path |
str |
Gets or sets the path. |
[optional] |
metadata_language |
str |
Gets or sets the metadata language. |
[optional] |
metadata_country_code |
str |
Gets or sets the metadata country code. |
[optional] |
provider_ids |
Dict[str, Optional[str]] |
Gets or sets the provider ids. |
[optional] |
year |
int |
Gets or sets the year. |
[optional] |
index_number |
int |
|
[optional] |
parent_index_number |
int |
|
[optional] |
premiere_date |
datetime |
|
[optional] |
is_automated |
bool |
|
[optional] |
Example
from jellyfin.generated.api_10_11.models.person_lookup_info import PersonLookupInfo
# TODO update the JSON string below
json = "{}"
# create an instance of PersonLookupInfo from a JSON string
person_lookup_info_instance = PersonLookupInfo.from_json(json)
# print the JSON string representation of the object
print(PersonLookupInfo.to_json())
# convert the object into a dict
person_lookup_info_dict = person_lookup_info_instance.to_dict()
# create an instance of PersonLookupInfo from a dict
person_lookup_info_from_dict = PersonLookupInfo.from_dict(person_lookup_info_dict)
[Back to Model list] [Back to API list] [Back to README]