Flows

data class Flows(implicit: OAuth.Flows.Implicit?, authorizationCode: OAuth.Flows.AuthorizationCode?, password: OAuth.Flows.Password?, clientCredentials: OAuth.Flows.ClientCredential?)

Types

Link copied to clipboard
data class AuthorizationCode(authorizationUrl: String, tokenUrl: String?, refreshUrl: String?, scopes: Map<String, String>) : OAuth.Flows.Flow
Link copied to clipboard
data class ClientCredential(tokenUrl: String?, refreshUrl: String?, scopes: Map<String, String>) : OAuth.Flows.Flow
Link copied to clipboard
interface Flow
Link copied to clipboard
data class Implicit(authorizationUrl: String, refreshUrl: String?, scopes: Map<String, String>) : OAuth.Flows.Flow
Link copied to clipboard
data class Password(tokenUrl: String?, refreshUrl: String?, scopes: Map<String, String>) : OAuth.Flows.Flow

Properties

Link copied to clipboard
val authorizationCode: OAuth.Flows.AuthorizationCode? = null
Link copied to clipboard
val clientCredentials: OAuth.Flows.ClientCredential? = null
Link copied to clipboard
val implicit: OAuth.Flows.Implicit? = null
Link copied to clipboard
val password: OAuth.Flows.Password? = null