Platform

@Serializable
data class Platform(val architecture: String? = null, val OS: String? = null)

Platform represents the platform (Arch/OS).

Parameters

architecture

Architecture represents the hardware architecture (for example, x86_64).

OS

OS represents the Operating System (for example, linux or windows).

Constructors

Link copied to clipboard
constructor(architecture: String? = null, OS: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "Architecture")
val architecture: String?
Link copied to clipboard
@SerialName(value = "OS")
val OS: String?