Get the list of device support
Function table: getMenuList
Example
Swift
Cmds.getMenuList().send { rs in
if case .success(let obj) = rs {
// Success
// obj is IDOMenuListModel
}else {
// Failure
}
}
Kotlin
Cmds.getMenuList().send {
if (it.error.code == 0) {
// Success
// it.res is IDOMenuListModel
}else {
// Failure
}
}