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