Get the watch face list v2
Function table: getNewWatchList == false Use this interface, otherwise use Get the watch face list v3
Example
Swift
Cmds.getWatchListV2().send { rs in
if case .success(let obj) = rs {
// Success
// obj is IDOWatchListV2Model
}else {
// Failure
}
}
Kotlin
Cmds.getWatchListV2().send {
if (it.error.code == 0) {
// Success
// it.res is IDOWatchListV2Model
}else {
// Failed
}
}