App Version
data class AppVersion(val id: String, val appId: String, val label: String, val position: Int, val released: Boolean, val releasedAt: String?, val description: String?, val createdAt: String, val updatedAt: String)(source)
A release milestone or version tag of the app, used to categorize and filter FeatureRequestItems.
Example:
val versions = client.fetchVersions()
val latestVersion = versions.firstOrNull { it.released }
println("Latest released version: ${latestVersion?.label}")Content copied to clipboard
Constructors
Properties
Link copied to clipboard
Optional release summary or milestone goal.
Link copied to clipboard
Version identifier used in FeedbackClient.fetchFeatureRequests.
Link copied to clipboard
ISO 8601 release timestamp, or null if unreleased.