Get Bike Lock List
Function Table : supportBikeLockManager
Example
Swift
Cmds.getBikeLockList().send { rs in
if case .success(let obj) = rs {
// Success
// obj is IDOBikeLockReplyModel
}else {
// Failure
}
}
Kotlin
Cmds.getBikeLockList().send {
if (it.error.code == 0) {
// Success
// it.res is IDOBikeLockReplyModel
}else {
// Failure
}
}