cancelScheduledActions method

Future<XRPCResponse<CancellationResults>> cancelScheduledActions({
  1. required List<String> subjects,
  2. String? comment,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

Cancel all pending scheduled moderation actions for specified subjects

Implementation

Future<XRPCResponse<CancellationResults>> cancelScheduledActions({
  required List<String> subjects,
  String? comment,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await toolsOzoneModerationCancelScheduledActions(
  subjects: subjects,
  comment: comment,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);