Get the language library list
Function table:getLangLibraryV3
Example
Swift
Cmds.getLanguageLibrary().send { rs in
if case .success(let obj) = rs {
// Success
// obj is IDOLanguageLibraryModel
}else {
// Failure
}
}
Kotlin
Cmds.getLanguageLibrary().send {
if (it.error.code == 0) {
// Success
// it.res is IDOLanguageLibraryModel
}else {
// Failure
}
}