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