closeReports method
Close all reports on a subject matching the given criteria. Reports whose current status does not permit a transition to closed are skipped silently. Intended for automated flows that resolve reports without taking action on the subject.
Implementation
Future<XRPCResponse<ReportCloseReportsOutput>> closeReports({
required String subject,
List<String>? reportTypes,
String? internalNote,
bool? isAutomated,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await toolsOzoneReportCloseReports(
subject: subject,
reportTypes: reportTypes,
internalNote: internalNote,
isAutomated: isAutomated,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);