Get hot start parameters
Function table: None
Interface deprecated
Example
Swift
Cmds.getHotStartParam().send { rs in
if case .success(let obj) = rs {
// success
// obj is IDOHotStartParamModel
}else {
// failure
}
}
Kotlin
Cmds.getHotStartParam().send {
if (it.error.code == 0) {
// Success
// it.res is IDOHotStartParamModel
}else {
// Failure
}
}