listQueues method

Future<XRPCResponse<QueueListQueuesOutput>> listQueues({
  1. bool? enabled,
  2. String? subjectType,
  3. String? collection,
  4. List<String>? reportTypes,
  5. int? limit,
  6. String? cursor,
  7. String? $service,
  8. Map<String, String>? $headers,
  9. Map<String, String>? $unknown,
})

List all configured moderation queues with statistics.

Implementation

Future<XRPCResponse<QueueListQueuesOutput>> listQueues({
  bool? enabled,
  String? subjectType,
  String? collection,
  List<String>? reportTypes,
  int? limit,
  String? cursor,
  String? $service,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await toolsOzoneQueueListQueues(
  enabled: enabled,
  subjectType: subjectType,
  collection: collection,
  reportTypes: reportTypes,
  limit: limit,
  cursor: cursor,
  $ctx: ctx,
  $service: $service,
  $headers: $headers,
  $unknown: $unknown,
);