SubtitleProfile
A class for subtitle profile information.
Properties
Name | Type | Description | Notes |
---|---|---|---|
format | str | Gets or sets the format. | [optional] |
method | SubtitleDeliveryMethod | Gets or sets the delivery method. | [optional] |
didl_mode | str | Gets or sets the DIDL mode. | [optional] |
language | str | Gets or sets the language. | [optional] |
container | str | Gets or sets the container. | [optional] |
Example
from jellyfin.generated.api_10_11.models.subtitle_profile import SubtitleProfile
# TODO update the JSON string below
json = "{}"
# create an instance of SubtitleProfile from a JSON string
subtitle_profile_instance = SubtitleProfile.from_json(json)
# print the JSON string representation of the object
print(SubtitleProfile.to_json())
# convert the object into a dict
subtitle_profile_dict = subtitle_profile_instance.to_dict()
# create an instance of SubtitleProfile from a dict
subtitle_profile_from_dict = SubtitleProfile.from_dict(subtitle_profile_dict)