Created
July 28, 2020 14:08
-
-
Save PatilShreyas/574b24f32b4cca63359fff3497247108 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data class CellInfo( | |
val token: String = BuildConfig.OPENCELLID_API_KEY, | |
var radio: String? = null, | |
var mcc: Int? = null, | |
var mnc: Int? = null, | |
var cells: List<Cell> = emptyList(), | |
val address: Int = 1 | |
) | |
data class Cell( | |
val lac: Int, | |
val cid: Int, | |
val psc: Int? = null | |
) | |
object RadioType { | |
const val GSM = "gsm" | |
const val CDMA = "cdma" | |
const val UMTS = "umts" | |
const val LTE = "lte" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment