ManifestLinks

data class ManifestLinks(    val issue: String?,     val sourceControl: String?,     val others: List<ManifestLinks.OtherLink>)

A couple of links related to the mod.

Author

ReviversMC

Since

6.1.0

Parameters

issue

A link to the mod's issue tracker.

sourceControl

A link to the mod's source control, no mirrors. Remove endings like ".git".

others

A list of other links related to the mod.

Constructors

Link copied to clipboard
fun ManifestLinks(    issue: String?,     sourceControl: String?,     others: List<ManifestLinks.OtherLink>)

Types

Link copied to clipboard
data class OtherLink(val linkName: String, val url: String)

A list of other links related to the mod. DEPRECATION WARNING: In the next major release, OtherLink will be moved

Properties

Link copied to clipboard
val issue: String?
Link copied to clipboard
val others: List<ManifestLinks.OtherLink>
Link copied to clipboard
val sourceControl: String?