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

com.stytch.java.common.JWTResponse.kt Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version
package com.stytch.java.common

import com.stytch.java.consumer.models.sessions.AuthenticateResponse
import com.stytch.java.consumer.models.sessions.Session

public sealed interface JWTResponse

public object JWTNullResponse : JWTResponse

public data class JWTSessionResponse(val response: Session?) : JWTResponse

public data class JWTAuthResponse(val response: AuthenticateResponse) : JWTResponse




© 2015 - 2024 Weber Informatics LLC | Privacy Policy