Action

data class Action(val namespace: String, val name: String, val type: Action.Type? = null, val facets: ActionFacet? = null)

Represents an action.

Constructors

Link copied to clipboard
constructor(namespace: String, name: String, type: Action.Type? = null, facets: ActionFacet? = null)

Types

Link copied to clipboard

Enum class representing the types of an action.

Properties

Link copied to clipboard
val facets: ActionFacet? = null

The facets associated with the action (optional).

Link copied to clipboard

The name of the action.

Link copied to clipboard

The namespace of the action.

Link copied to clipboard
val type: Action.Type? = null

The type of the action (optional).