RecordsStats constructor

  1. @JsonSerializable(includeIfNull: false)
const RecordsStats({
  1. @Default('tools.ozone.moderation.defs#recordsStats') String $type,
  2. int? totalReports,
  3. int? reportedCount,
  4. int? escalatedCount,
  5. int? appealedCount,
  6. int? subjectCount,
  7. int? pendingCount,
  8. int? processedCount,
  9. int? takendownCount,
  10. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory RecordsStats({
  @Default('tools.ozone.moderation.defs#recordsStats') String $type,

  /// Cumulative sum of the number of reports on the items in the set
  int? totalReports,

  /// Number of items that were reported at least once
  int? reportedCount,

  /// Number of items that were escalated at least once
  int? escalatedCount,

  /// Number of items that were appealed at least once
  int? appealedCount,

  /// Total number of item in the set
  int? subjectCount,

  /// Number of item currently in "reviewOpen" or "reviewEscalated" state
  int? pendingCount,

  /// Number of item currently in "reviewNone" or "reviewClosed" state
  int? processedCount,

  /// Number of item currently taken down
  int? takendownCount,

  Map<String, dynamic>? $unknown,
}) = _RecordsStats;