RecordsStats constructor
- @JsonSerializable(includeIfNull: false)
const
RecordsStats(
{ - @Default('tools.ozone.moderation.defs#recordsStats') String $type,
- int? totalReports,
- int? reportedCount,
- int? escalatedCount,
- int? appealedCount,
- int? subjectCount,
- int? pendingCount,
- int? processedCount,
- int? takendownCount,
- 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;