fr.bmartel.bboxapi.router.model.Token.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
data class Token(
val device: DeviceToken? = null
)
data class DeviceToken(
val token: String? = null,
val now: String? = null,
val expires: String? = null
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy