Get device supported list
Function table: supportProtocolV3MenuList
Example
Swift
Cmds.getMenuListV3().send { rs in
if case .success(let obj) = rs {
// Success
// obj is IDOMenuListV3Model
}else {
// Failed
}
}
Kotlin
Cmds.getMenuListV3().send {
if (it.error.code == 0) {
// Success
// it.res is IDOMenuListV3Model
}else {
// Failed
}
}