Skip to content
Snippets Groups Projects
Commit bec0b135 authored by Taras's avatar Taras
Browse files

Create RefreshedTokenInfo

parent 9682b5b6
No related branches found
No related tags found
No related merge requests found
package org.matrix.android.sdk.internal.auth.login
import com.squareup.moshi.Json
import com.squareup.moshi.JsonClass
/**
* Created for Circles /refresh
*/
@JsonClass(generateAdapter = true)
data class RefreshedTokenInfo(
@Json(name = "access_token")
val accessToken: String,
@Json(name = "expires_in_ms")
val expiresInMs: Long,
@Json(name = "refresh_token")
val refreshToken: String
)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment