ResponseType

data class ResponseType(val responseTypeNames: List<ResponseTypeName>)(source)

grammar token response-type of https://datatracker.ietf.org/doc/html/rfc6749#appendix-A.3

The OAuth 2.0 specification allows for registration of space-separated response_type parameter values. If a Response Type contains one of more space characters (%20), it is compared as a space-delimited list of values in which the order of values does not matter.

Constructors

Link copied to clipboard
constructor(responseTypeNames: List<ResponseTypeName>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Functions

Link copied to clipboard
operator fun contains(string: String): Boolean
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean

If a Response Type contains one of more space characters (%20), it is compared as a space-delimited list of values in which the order of values does not matter.

Link copied to clipboard
open override fun hashCode(): Int

If a Response Type contains one of more space characters (%20), it is compared as a space-delimited list of values in which the order of values does not matter.

Link copied to clipboard
open override fun toString(): String