SystemVersionComponentsInner

@Serializable
data class SystemVersionComponentsInner(val name: String, val version: String, val details: JsonObject? = null)

Parameters

name

Name of the component

version

Version of the component

details

Key/value pairs of strings with additional information about the component. These values are intended for informational purposes only, and their content is not defined, and not part of the API specification. These messages can be printed by the client as information to the user.

Constructors

Link copied to clipboard
constructor(name: String, version: String, details: JsonObject? = null)

Properties

Link copied to clipboard
@SerialName(value = "Details")
val details: JsonObject?
Link copied to clipboard
@SerialName(value = "Name")
@Required
val name: String
Link copied to clipboard
@SerialName(value = "Version")
@Required
val version: String