getLiveStats method
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,
);