RecordsStats

data class RecordsStats(val totalReports: Long? = null, val reportedCount: Long? = null, val escalatedCount: Long? = null, val appealedCount: Long? = null, val subjectCount: Long? = null, val pendingCount: Long? = null, val processedCount: Long? = null, val takendownCount: Long? = null)

Statistics about a set of record subject items

Parameters

totalReports

Cumulative sum of the number of reports on the items in the set

reportedCount

Number of items that were reported at least once

escalatedCount

Number of items that were escalated at least once

appealedCount

Number of items that were appealed at least once

subjectCount

Total number of item in the set

pendingCount

Number of item currently in "reviewOpen" or "reviewEscalated" state

processedCount

Number of item currently in "reviewNone" or "reviewClosed" state

takendownCount

Number of item currently taken down

Constructors

Link copied to clipboard
constructor(totalReports: Long? = null, reportedCount: Long? = null, escalatedCount: Long? = null, appealedCount: Long? = null, subjectCount: Long? = null, pendingCount: Long? = null, processedCount: Long? = null, takendownCount: Long? = null)

Properties

Link copied to clipboard
val appealedCount: Long? = null

Number of items that were appealed at least once

Link copied to clipboard
val escalatedCount: Long? = null

Number of items that were escalated at least once

Link copied to clipboard
val pendingCount: Long? = null

Number of item currently in "reviewOpen" or "reviewEscalated" state

Link copied to clipboard
val processedCount: Long? = null

Number of item currently in "reviewNone" or "reviewClosed" state

Link copied to clipboard
val reportedCount: Long? = null

Number of items that were reported at least once

Link copied to clipboard
val subjectCount: Long? = null

Total number of item in the set

Link copied to clipboard
val takendownCount: Long? = null

Number of item currently taken down

Link copied to clipboard
val totalReports: Long? = null

Cumulative sum of the number of reports on the items in the set