@jellyfin/sdk
    Preparing search index...

    Interface UpdateUserItemDataDto

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

    UpdateUserItemDataDto

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

    Properties

    IsFavorite?: boolean | null

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

    UpdateUserItemDataDto

    ItemId?: string | null

    Gets or sets the item identifier.

    UpdateUserItemDataDto

    Key?: string | null

    Gets or sets the key.

    UpdateUserItemDataDto

    LastPlayedDate?: string | null

    Gets or sets the last played date.

    UpdateUserItemDataDto

    Likes?: boolean | null

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

    UpdateUserItemDataDto

    PlaybackPositionTicks?: number | null

    Gets or sets the playback position ticks.

    UpdateUserItemDataDto

    PlayCount?: number | null

    Gets or sets the play count.

    UpdateUserItemDataDto

    Played?: boolean | null

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

    UpdateUserItemDataDto

    PlayedPercentage?: number | null

    Gets or sets the played percentage.

    UpdateUserItemDataDto

    Rating?: number | null

    Gets or sets the rating.

    UpdateUserItemDataDto

    UnplayedItemCount?: number | null

    Gets or sets the unplayed item count.

    UpdateUserItemDataDto