toolsOzoneReportRefreshStats function
Recompute report statistics for a date range. Useful for backfilling after failures or data corrections.
Implementation
Future<XRPCResponse<EmptyData>> toolsOzoneReportRefreshStats({
required String startDate,
required String endDate,
List<int>? queueIds,
required ServiceContext $ctx,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.post(
ns.toolsOzoneReportRefreshStats,
service: $service,
headers: {'Content-type': 'application/json', ...?$headers},
body: {
...?$unknown,
'startDate': startDate,
'endDate': endDate,
if (queueIds != null) 'queueIds': queueIds,
},
);