PublicSystemInfo

@Serializable
data class PublicSystemInfo(val localAddress: String? = null, val serverName: String? = null, val version: String? = null, val productName: String? = null, val operatingSystem: String? = null, val id: String? = null, val startupWizardCompleted: Boolean? = null)

Constructors

Link copied to clipboard
constructor(localAddress: String? = null, serverName: String? = null, version: String? = null, productName: String? = null, operatingSystem: String? = null, id: String? = null, startupWizardCompleted: Boolean? = null)

Properties

Link copied to clipboard
@SerialName(value = "Id")
val id: String?

The id.

Link copied to clipboard
@SerialName(value = "LocalAddress")
val localAddress: String?

The local address.

Link copied to clipboard
@SerialName(value = "OperatingSystem")
val operatingSystem: String?

The operating system.

Link copied to clipboard
@SerialName(value = "ProductName")
val productName: String?

The product name. This is the AssemblyProduct name.

Link copied to clipboard
@SerialName(value = "ServerName")
val serverName: String?

The name of the server.

Link copied to clipboard
@SerialName(value = "StartupWizardCompleted")
val startupWizardCompleted: Boolean?

A value indicating whether the startup wizard is completed.

Link copied to clipboard
@SerialName(value = "Version")
val version: String?

The server version.