VersionDependency

data class VersionDependency(val versionId: String? = null, val projectId: String? = null, val fileName: String? = null, val dependencyType: String)

Constructors

Link copied to clipboard
constructor(versionId: String? = null, projectId: String? = null, fileName: String? = null, dependencyType: String)

Properties

Link copied to clipboard

Enum representing the type of dependency that this version has: "required", "optional", "incompatible", "embedded"

Link copied to clipboard
val fileName: String? = null

The file name of the dependency, mostly used for showing external dependencies on modpacks (nullable)

Link copied to clipboard
val projectId: String? = null

The ID of the project that this version depends on (nullable)

Link copied to clipboard
val versionId: String? = null

The ID of the version that this version depends on (nullable)