Get version information
Function table:getVersionInfo
Example
Swift
Cmds.getVersionInfo().send {rs in
if case .success(let obj) = rs {
// Success
// obj is IDOVersionInfoModel
}else {
// Failure
}
}
Kotlin
Cmds.getVersionInfo().send {
if (it.error.code == 0) {
// Success
// it.res is IDOVersionInfoModel
}else {
// Failure
}
}