//sorisdk/com.iplateia.sorisdk/UpdateResult
UpdateResult
[androidJvm]
data class UpdateResult(val success: Boolean, val updateAvailable: Boolean, val currentVersion: String, val errorMessage: String? = null)
Represents the result of a database update operation.
Constructors
UpdateResult | [androidJvm] constructor(success: Boolean, updateAvailable: Boolean, currentVersion: String, errorMessage: String? = null) |
Properties
Name | Summary |
---|---|
currentVersion | [androidJvm] val currentVersion: String The current version after the update. |
errorMessage | [androidJvm] val errorMessage: String? = null Error message if the update failed. |
success | [androidJvm] val success: Boolean Indicates whether the update process was successful. |
updateAvailable | [androidJvm] val updateAvailable: Boolean Indicates whether a new update was available. |