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

com.deque.networking.models.auth.AccessTokenResponse.kt Maven / Gradle / Ivy

There is a newer version: 5.5.2
Show newest version
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
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy