RemoteSubtitleInfo
Properties
| Name |
Type |
Description |
Notes |
| three_letter_iso_language_name |
str |
|
[optional] |
| id |
str |
|
[optional] |
| provider_name |
str |
|
[optional] |
| name |
str |
|
[optional] |
| format |
str |
|
[optional] |
| author |
str |
|
[optional] |
| comment |
str |
|
[optional] |
| date_created |
datetime |
|
[optional] |
| community_rating |
float |
|
[optional] |
| frame_rate |
float |
|
[optional] |
| download_count |
int |
|
[optional] |
| is_hash_match |
bool |
|
[optional] |
| ai_translated |
bool |
|
[optional] |
| machine_translated |
bool |
|
[optional] |
| forced |
bool |
|
[optional] |
| hearing_impaired |
bool |
|
[optional] |
Example
from jellyfin.generated.api_10_11.models.remote_subtitle_info import RemoteSubtitleInfo
# TODO update the JSON string below
json = "{}"
# create an instance of RemoteSubtitleInfo from a JSON string
remote_subtitle_info_instance = RemoteSubtitleInfo.from_json(json)
# print the JSON string representation of the object
print(RemoteSubtitleInfo.to_json())
# convert the object into a dict
remote_subtitle_info_dict = remote_subtitle_info_instance.to_dict()
# create an instance of RemoteSubtitleInfo from a dict
remote_subtitle_info_from_dict = RemoteSubtitleInfo.from_dict(remote_subtitle_info_dict)
[Back to Model list] [Back to API list] [Back to README]