Application

@Serializable
data class Application(val identifier: String = "", val name: String = "", val parameters: Parameters = Parameters(), val pid: Int = 0)

This data class represents the application.

Constructors

Link copied to clipboard
constructor(identifier: String = "", name: String = "", parameters: Parameters = Parameters(), pid: Int = 0)

Properties

Link copied to clipboard

The identifier of the application.

Link copied to clipboard

The name of the application.

Link copied to clipboard

The parameters of the application.

Link copied to clipboard
val pid: Int = 0

The process id of the application.