PackageInfo

@Serializable
data class PackageInfo(val name: String, val description: String, val overview: String, val owner: String, val category: String, val guid: UUID, val versions: List<VersionInfo>, val imageUrl: String? = null)

Class PackageInfo.

Constructors

Link copied to clipboard
constructor(name: String, description: String, overview: String, owner: String, category: String, guid: UUID, versions: List<VersionInfo>, imageUrl: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "category")
val category: String

The category.

Link copied to clipboard
@SerialName(value = "description")
val description: String

A long description of the plugin containing features or helpful explanations.

Link copied to clipboard
@SerialName(value = "guid")
val guid: UUID

Gets or sets the guid of the assembly associated with this plugin. This is used to identify the proper item for automatic updates.

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

The image url for the package.

Link copied to clipboard
@SerialName(value = "name")
val name: String

The name.

Link copied to clipboard
@SerialName(value = "overview")
val overview: String

A short overview of what the plugin does.

Link copied to clipboard
@SerialName(value = "owner")
val owner: String

The owner.

Link copied to clipboard
@SerialName(value = "versions")
val versions: List<VersionInfo>

The versions.