All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fr.bmartel.bboxapi.router.model.CallLog.kt Maven / Gradle / Ivy

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