ReportActivityView

data class ReportActivityView(val id: Long, val reportId: Long, val activity: ReportActivityViewActivityUnion, val internalNote: String? = null, val publicNote: String? = null, val meta: JsonContent? = null, val isAutomated: Boolean, val createdBy: Did, val moderator: Member? = null, val createdAt: Timestamp)

A single activity entry on a report.

Parameters

id

Activity ID

reportId

ID of the report this activity belongs to

activity

The typed activity object describing what occurred.

internalNote

Optional moderator-only note. Not visible to reporters.

publicNote

Optional public note, potentially visible to the reporter.

meta

Extensible JSON payload for loose activity-specific metadata (e.g. assignmentId).

isAutomated

True if this activity was created by an automated process (e.g. queue router) rather than a direct human action.

createdBy

DID of the actor who created this activity, or the service DID for automated activities.

moderator

Full member record of the moderator who created this activity

createdAt

When this activity was created

Constructors

Link copied to clipboard
constructor(id: Long, reportId: Long, activity: ReportActivityViewActivityUnion, internalNote: String? = null, publicNote: String? = null, meta: JsonContent? = null, isAutomated: Boolean, createdBy: Did, moderator: Member? = null, createdAt: Timestamp)

Properties

Link copied to clipboard

The typed activity object describing what occurred.

Link copied to clipboard

When this activity was created

Link copied to clipboard

DID of the actor who created this activity, or the service DID for automated activities.

Link copied to clipboard
val id: Long

Activity ID

Link copied to clipboard

Optional moderator-only note. Not visible to reporters.

Link copied to clipboard

True if this activity was created by an automated process (e.g. queue router) rather than a direct human action.

Link copied to clipboard

Extensible JSON payload for loose activity-specific metadata (e.g. assignmentId).

Link copied to clipboard

Full member record of the moderator who created this activity

Link copied to clipboard

Optional public note, potentially visible to the reporter.

Link copied to clipboard

ID of the report this activity belongs to