EventActor

@Serializable
data class EventActor(val ID: String? = null, val attributes: Map<String, String>? = null)

Actor describes something that generates events, like a container, network, or a volume.

Parameters

ID

The ID of the object emitting the event

attributes

Various key/value attributes of the object, depending on its type.

Constructors

Link copied to clipboard
constructor(ID: String? = null, attributes: Map<String, String>? = null)

Properties

Link copied to clipboard
@SerialName(value = "Attributes")
val attributes: Map<String, String>?
Link copied to clipboard
@SerialName(value = "ID")
val ID: String?