com.deque.networking.models.auth.AccessTokenResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of axe-devtools-android-data Show documentation
Show all versions of axe-devtools-android-data Show documentation
The Axe Devtools Android Data Library
package com.deque.networking.models.auth
data class AccessTokenResponse(
val accessTokenValue: String?,
val expiresIn: Int = 0,
val refreshExpiresIn: Int = 0,
val refreshToken: String,
val tokenType: String? = null
)