Set wallpaper dial list
Function table: setWatchPhotoPositionMo ve
Example
Swift
let param = IDOWallpaperDialReplyV3ParamModel(...)
Cmds.setWallpaperDialReply(param).send { rs in
if case .success(let obj) = rs {
// Success
// obj is IDOWallpaperDial ReplyV3Model
}else {
// failed
}
}
Kotlin
val param = IDOWallpaperDialReplyV3ParamModel(...)
Cmds.setWallpaperDialReply (param).send {
if (it.error.code == 0) {
// Success
// it.res is IDOWallpaperDialReplyV3Model
}else {
// Failure
}
}