Complete Android port of duooomi-ios-sdk with 1:1 API parity. Includes SDK library module and Jetpack Compose demo app. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
16 lines
311 B
Kotlin
16 lines
311 B
Kotlin
package com.duooomi.ble.models
|
|
|
|
import org.json.JSONObject
|
|
|
|
data class UnbindResponse(
|
|
val success: Int
|
|
) {
|
|
companion object {
|
|
fun fromJson(json: JSONObject): UnbindResponse {
|
|
return UnbindResponse(
|
|
success = json.optInt("success", 0)
|
|
)
|
|
}
|
|
}
|
|
}
|