SoftwareUpdateInfo

data class SoftwareUpdateInfo(    val version: String = "",     val updateUrl: String = "",     val updateType: SoftwareUpdateType = SoftwareUpdateType.NONE) : Parcelable

It provides information about software update

Since

3.12.0.0-5

Parameters

version

The version of the update if an update is found, otherwise empty

updateUrl

The url of the update if an update is found, otherwise empty

updateType

The type of software update if an update is found, otherwise NONE

Constructors

Link copied to clipboard
fun SoftwareUpdateInfo(    version: String = "",     updateUrl: String = "",     updateType: SoftwareUpdateType = SoftwareUpdateType.NONE)

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)

Properties

Link copied to clipboard
val updateType: SoftwareUpdateType
Link copied to clipboard
val updateUrl: String
Link copied to clipboard
val version: String