scheduleAction method
Schedule a moderation action to be executed at a future time
Implementation
Future<XRPCResponse<ScheduledActionResults>> scheduleAction({
required UModerationScheduleActionAction action,
required List<String> subjects,
required String createdBy,
required SchedulingConfig scheduling,
ModTool? modTool,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await toolsOzoneModerationScheduleAction(
action: action,
subjects: subjects,
createdBy: createdBy,
scheduling: scheduling,
modTool: modTool,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);