listScheduledActions method
List scheduled moderation actions with optional filtering
Implementation
Future<XRPCResponse<ModerationListScheduledActionsOutput>>
listScheduledActions({
DateTime? startsAfter,
DateTime? endsBefore,
List<String>? subjects,
required List<ModerationListScheduledActionsStatuses> statuses,
int? limit,
String? cursor,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await toolsOzoneModerationListScheduledActions(
startsAfter: startsAfter,
endsBefore: endsBefore,
subjects: subjects,
statuses: statuses,
limit: limit,
cursor: cursor,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);