getLiveStats method

Future<XRPCResponse<ReportGetLiveStatsOutput>> getLiveStats({
  1. int? queueId,
  2. String? moderatorDid,
  3. List<String>? reportTypes,
  4. String? $service,
  5. Map<String, String>? $headers,
  6. Map<String, String>? $unknown,
})

Get live report statistics from the past 24 hours. Filter by queue, moderator, or report type. Omit all parameters for aggregate stats.

Implementation

Future<XRPCResponse<ReportGetLiveStatsOutput>> getLiveStats({
  int? queueId,
  String? moderatorDid,
  List<String>? reportTypes,
  String? $service,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await toolsOzoneReportGetLiveStats(
  queueId: queueId,
  moderatorDid: moderatorDid,
  reportTypes: reportTypes,
  $ctx: ctx,
  $service: $service,
  $headers: $headers,
  $unknown: $unknown,
);