getPlaysBySourceResolution method

Future<TautulliGraphData> getPlaysBySourceResolution({
  1. int? timeRange,
  2. int? userId,
  3. bool? grouping,
  4. TautulliGraphYAxis? yAxis,
})

Handler for get_plays_by_source_resolution.

Get graph data by source resolution.

Optional Parameters:

  • timeRange: The amount of days to fetch data for. Minimum value of 1, anything below 1 will return the default time range (30 days)
  • userId: User ID to filter the data for
  • grouping: Group data
  • yAxis: What key to use for the Y-Axis in the data

Implementation

Future<TautulliGraphData> getPlaysBySourceResolution({
    int? timeRange,
    int? userId,
    bool? grouping,
    TautulliGraphYAxis? yAxis,
}) async => _commandGetPlaysBySourceResolution(_client, timeRange: timeRange, userId: userId, grouping: grouping, yAxis: yAxis);