This is used by the api to get information about a item user data.

UpdateUserItemDataDto

interface UpdateUserItemDataDto {
    IsFavorite?: null | boolean;
    ItemId?: null | string;
    Key?: null | string;
    LastPlayedDate?: null | string;
    Likes?: null | boolean;
    PlaybackPositionTicks?: null | number;
    PlayCount?: null | number;
    Played?: null | boolean;
    PlayedPercentage?: null | number;
    Rating?: null | number;
    UnplayedItemCount?: null | number;
}

Properties

IsFavorite?: null | boolean

Gets or sets a value indicating whether this instance is favorite.

UpdateUserItemDataDto

ItemId?: null | string

Gets or sets the item identifier.

UpdateUserItemDataDto

Key?: null | string

Gets or sets the key.

UpdateUserItemDataDto

LastPlayedDate?: null | string

Gets or sets the last played date.

UpdateUserItemDataDto

Likes?: null | boolean

Gets or sets a value indicating whether this MediaBrowser.Model.Dto.UpdateUserItemDataDto is likes.

UpdateUserItemDataDto

PlaybackPositionTicks?: null | number

Gets or sets the playback position ticks.

UpdateUserItemDataDto

PlayCount?: null | number

Gets or sets the play count.

UpdateUserItemDataDto

Played?: null | boolean

Gets or sets a value indicating whether this MediaBrowser.Model.Dto.UserItemDataDto is played.

UpdateUserItemDataDto

PlayedPercentage?: null | number

Gets or sets the played percentage.

UpdateUserItemDataDto

Rating?: null | number

Gets or sets the rating.

UpdateUserItemDataDto

UnplayedItemCount?: null | number

Gets or sets the unplayed item count.

UpdateUserItemDataDto