RunAutomationDetails

@JsonClass(generateAdapter = true)
data class RunAutomationDetails(@Json(name = "correlationGuid") val correlationGUID: String? = null, @Json(name = "description") val description: Message? = null, @Json(name = "guid") val guid: String? = null, @Json(name = "id") val id: String? = null, @Json(name = "properties") val properties: PropertyBag? = null)(source)

Automation details that describe this run.

Information that describes a run's identity and role within an engineering system process.

Since

0.12.0

Constructors

Link copied to clipboard
constructor(@Json(name = "correlationGuid") correlationGUID: String? = null, @Json(name = "description") description: Message? = null, @Json(name = "guid") guid: String? = null, @Json(name = "id") id: String? = null, @Json(name = "properties") properties: PropertyBag? = null)

Properties

Link copied to clipboard
val correlationGUID: String? = null

A stable, unique identifier for the equivalence class of runs to which this object's containing run object belongs in the form of a GUID.

Link copied to clipboard
val description: Message? = null

A description of the identity and role played within the engineering system by this object's containing run object.

Link copied to clipboard
val guid: String? = null

A stable, unique identifer for this object's containing run object in the form of a GUID.

Link copied to clipboard
val id: String? = null

A hierarchical string that uniquely identifies this object's containing run object.

Link copied to clipboard
val properties: PropertyBag? = null

Key/value pairs that provide additional information about the run automation details.