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

Add expires_in_ms to Credentials

parent bec0b135
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,10 @@ data class Credentials(
* reconfigure themselves, optionally validating the URLs within.
* This object takes the same form as the one returned from .well-known autodiscovery.
*/
@Json(name = "well_known") val discoveryInformation: DiscoveryInformation? = null
@Json(name = "well_known") val discoveryInformation: DiscoveryInformation? = null,
// Added for Circles
@Json(name = "expires_in_ms") val expiresInMs: Long? = null
)
//Changed for Circles
......
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