LibraryProperties

data class LibraryProperties(    val version: String,     val kotlin: String,     val kord: String)

A collection of library properties read from internal library.properties file.

Parameters

version

The current DiscordKt version.

kotlin

The version of Kotlin used by DiscordKt.

kord

The version of Kord used by DiscordKt.

Constructors

Link copied to clipboard
fun LibraryProperties(    version: String,     kotlin: String,     kord: String)

Functions

Link copied to clipboard
open override fun toString(): String

Print the version as a string in the form "$library - $kord - $kotlin"

Properties

Link copied to clipboard
val kord: String
Link copied to clipboard
val kotlin: String
Link copied to clipboard
val version: String