Get watch face id
Function table: None
Example
Swift
Cmds.getWatchDialId().send {rs in
if case .success(let obj) = rs {
// Success
// obj is IDOWatchDialIdModel
}else {
// Failure
}
}
Kotlin
Cmds.getWatchDialId().send {
if (it.error.code == 0) {
// Success
// it.res is IDOWatchDialIdModel
}else {
// Failure
}
}