UserItemDataDto

Class UserItemDataDto.

Properties

Name Type Description Notes
rating float Gets or sets the rating. [optional]
played_percentage float Gets or sets the played percentage. [optional]
unplayed_item_count int Gets or sets the unplayed item count. [optional]
playback_position_ticks int Gets or sets the playback position ticks. [optional]
play_count int Gets or sets the play count. [optional]
is_favorite bool Gets or sets a value indicating whether this instance is favorite. [optional]
likes bool Gets or sets a value indicating whether this MediaBrowser.Model.Dto.UserItemDataDto is likes. [optional]
last_played_date datetime Gets or sets the last played date. [optional]
played bool Gets or sets a value indicating whether this MediaBrowser.Model.Dto.UserItemDataDto is played. [optional]
key str Gets or sets the key. [optional]
item_id str Gets or sets the item identifier. [optional]

Example

from jellyfin.generated.api_10_10.models.user_item_data_dto import UserItemDataDto

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

# convert the object into a dict
user_item_data_dto_dict = user_item_data_dto_instance.to_dict()
# create an instance of UserItemDataDto from a dict
user_item_data_dto_from_dict = UserItemDataDto.from_dict(user_item_data_dto_dict)

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