EventContentResponse

data class EventContentResponse(val action: String? = null, val actor: ActorResponse? = null, val id: String? = null, val request: RequestResponse? = null, val source: SourceResponse? = null, val target: TargetResponse? = null, val timestamp: String? = null)

The content of the event request message.

Constructors

Link copied to clipboard
constructor(action: String? = null, actor: ActorResponse? = null, id: String? = null, request: RequestResponse? = null, source: SourceResponse? = null, target: TargetResponse? = null, timestamp: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val action: String? = null

The action that encompasses the provided event.

Link copied to clipboard
val actor: ActorResponse? = null

The agent that initiated the event. For most situations, this could be from the authorization context of the request.

Link copied to clipboard
val id: String? = null

The event ID.

Link copied to clipboard

The request that generated the event.

Link copied to clipboard
val source: SourceResponse? = null

The registry node that generated the event. Put differently, while the actor initiates the event, the source generates it.

Link copied to clipboard
val target: TargetResponse? = null

The target of the event.

Link copied to clipboard
val timestamp: String? = null

The time at which the event occurred.