deleteAllLibraryHistory method

Future<void> deleteAllLibraryHistory({
  1. required int sectionId,
  2. String? serverId,
  3. List<int>? rowIds,
})

Handler for delete_all_library_history.

Delete all Tautulli history for a specific library.

Required Parameters:

  • sectionId: The ID of the Plex library section

Optional Parameters:

  • serverId: The Plex server identifier of the library section
  • rowIds: Optional list of row IDs to delete

Implementation

Future<void> deleteAllLibraryHistory({
    required int sectionId,
    String? serverId,
    List<int>? rowIds,
}) async => _commandDeleteAllLibraryHistory(_client, sectionId: sectionId, serverId: serverId, rowIds: rowIds);