GetOIDCUserInfo

@Serializable
data class GetOIDCUserInfo(val accessToken: String) : MatrixEndpoint<Unit, GetOIDCUserInfo.Response>

See also

Constructors

Link copied to clipboard
constructor(accessToken: String)

Types

Link copied to clipboard
@Serializable
data class Response(val sub: UserId)

Properties

Link copied to clipboard
@SerialName(value = "access_token")
val accessToken: String
Link copied to clipboard
open val requestContentType: ContentType?
Link copied to clipboard
open val responseContentType: ContentType?

Functions

Link copied to clipboard
open fun requestSerializerBuilder(mappings: EventContentSerializerMappings, json: Json, value: Unit?): KSerializer<Unit>?
Link copied to clipboard