fr.bmartel.bboxapi.router.model.CallLog.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bboxapi-router Show documentation
Show all versions of bboxapi-router Show documentation
Java/Android client for Bbox Router API
The newest version!
package fr.bmartel.bboxapi.router.model
import com.google.gson.annotations.SerializedName
data class CallLog(
val calllog: List? = null
)
data class CallLogEntry(
val id: Int? = null,
val number: String? = null,
val date: Long? = null,
val type: CallType? = null,
val answered: Int? = null,
val duree: Int? = null
)
enum class CallType {
@SerializedName("in")
IN_CALL,
@SerializedName("out")
OUT_CALL
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy