ThemeMediaResult

Class ThemeMediaResult.

Properties

Name Type Description Notes
items List[BaseItemDto] Gets or sets the items. [optional]
total_record_count int Gets or sets the total number of records available. [optional]
start_index int Gets or sets the index of the first record in Items. [optional]
owner_id str Gets or sets the owner id. [optional]

Example

from jellyfin.generated.api_10_10.models.theme_media_result import ThemeMediaResult

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

# convert the object into a dict
theme_media_result_dict = theme_media_result_instance.to_dict()
# create an instance of ThemeMediaResult from a dict
theme_media_result_from_dict = ThemeMediaResult.from_dict(theme_media_result_dict)

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