ConfigurationMetadata

data class ConfigurationMetadata(    val issuer: String,     val authorizationEndpoint: String,     val tokenEndpoint: String?,     val jwksUri: String?,     val tokenEndpointAuthMethodsSupported: Array<String>,     val responseTypesSupported: Array<String>,     val grantTypesSupported: Array<String>,     val introspectionEndpoint: String?,     val introspectionEndpointAuthMethodsSupported: Array<String>,     val codeChallengeMethodsSupported: Array<String>,     val revocationEndpoint: String?,     val revocationEndpointAuthMethodsSupported: Array<String>,     val deviceGatewayRegistryUri: String?,     val deviceGatewayServerGrpcUri: String?,     val deviceGatewayServerH2Uri: String?,     val templateServerUri: String?,     val policyUri: String?,     val termOfServiceUri: String,     val serviceDocumentation: String?,     val serviceSetting: String?)

Constructors

Link copied to clipboard
fun ConfigurationMetadata(    issuer: String,     authorizationEndpoint: String,     tokenEndpoint: String?,     jwksUri: String?,     tokenEndpointAuthMethodsSupported: Array<String>,     responseTypesSupported: Array<String>,     grantTypesSupported: Array<String>,     introspectionEndpoint: String?,     introspectionEndpointAuthMethodsSupported: Array<String>,     codeChallengeMethodsSupported: Array<String>,     revocationEndpoint: String?,     revocationEndpointAuthMethodsSupported: Array<String>,     deviceGatewayRegistryUri: String?,     deviceGatewayServerGrpcUri: String?,     deviceGatewayServerH2Uri: String?,     templateServerUri: String?,     policyUri: String?,     termOfServiceUri: String,     serviceDocumentation: String?,     serviceSetting: String?)

Properties

Link copied to clipboard
@SerializedName(value = "authorization_endpoint")
val authorizationEndpoint: String
Link copied to clipboard
@SerializedName(value = "code_challenge_methods_supported")
val codeChallengeMethodsSupported: Array<String>
Link copied to clipboard
@SerializedName(value = "device_gateway_registry_uri")
val deviceGatewayRegistryUri: String?
Link copied to clipboard
@SerializedName(value = "device_gateway_server_grpc_uri")
val deviceGatewayServerGrpcUri: String?
Link copied to clipboard
@SerializedName(value = "device_gateway_server_h2_uri")
val deviceGatewayServerH2Uri: String?
Link copied to clipboard
@SerializedName(value = "grant_types_supported")
val grantTypesSupported: Array<String>
Link copied to clipboard
@SerializedName(value = "introspection_endpoint")
val introspectionEndpoint: String?
@SerializedName(value = "introspection_endpoint_auth_methods_supported")
val introspectionEndpointAuthMethodsSupported: Array<String>
Link copied to clipboard
@SerializedName(value = "issuer")
val issuer: String
Link copied to clipboard
@SerializedName(value = "jwks_uri")
val jwksUri: String?
Link copied to clipboard
@SerializedName(value = "op_policy_uri")
val policyUri: String?
Link copied to clipboard
@SerializedName(value = "response_types_supported")
val responseTypesSupported: Array<String>
Link copied to clipboard
@SerializedName(value = "revocation_endpoint")
val revocationEndpoint: String?
Link copied to clipboard
@SerializedName(value = "revocation_endpoint_auth_methods_supported")
val revocationEndpointAuthMethodsSupported: Array<String>
Link copied to clipboard
@SerializedName(value = "service_documentation")
val serviceDocumentation: String?
Link copied to clipboard
@SerializedName(value = "service_setting")
val serviceSetting: String?
Link copied to clipboard
@SerializedName(value = "template_server_uri")
val templateServerUri: String?
Link copied to clipboard
@SerializedName(value = "op_tos_uri")
val termOfServiceUri: String
Link copied to clipboard
@SerializedName(value = "token_endpoint")
val tokenEndpoint: String?
Link copied to clipboard
@SerializedName(value = "token_endpoint_auth_methods_supported")
val tokenEndpointAuthMethodsSupported: Array<String>