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

commonMain.com.saveourtool.save.info.OauthProviderInfo.kt Maven / Gradle / Ivy

The newest version!
package com.saveourtool.save.info

import kotlin.js.JsExport
import kotlinx.serialization.Serializable

/**
 * Represents public information about OAuth2 provider
 *
 * @property registrationId name of the provider, corresponds to spring-security `registrationId` property
 * @property authorizationLink link that can be used to start authorization process
 */
@Serializable
@JsExport
data class OauthProviderInfo(
    val registrationId: String,
    val authorizationLink: String,
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy