Set to stop searching for the phone
Function table: setOverFindPhone
Parameter description:
Field name | Field type | Field description |
---|---|---|
open | bool | 0: Off 1: On |
Example
Swift
Cmds.setOverFindPhone(open: true).send { rs in
if case .success(let obj) = rs {
// Success
// obj is IDOCmdSetResponseModel
}else {
// Failure
}
}
Kotlin
```kotlin Cmds.setOverFindPhone(open: true).send { if (it.error.code == 0) { // Success // it.res is IDOCmdSetResponseModel }else { // failed } }