SourceControlAuthInfoResponse

data class SourceControlAuthInfoResponse(val expiresIn: Int? = null, val refreshToken: String? = null, val scope: String? = null, val token: String, val tokenType: String? = null)

The authorization properties for accessing the source code repository.

Constructors

Link copied to clipboard
constructor(expiresIn: Int? = null, refreshToken: String? = null, scope: String? = null, token: String, tokenType: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val expiresIn: Int? = null

Time in seconds that the token remains valid

Link copied to clipboard
val refreshToken: String? = null

The refresh token used to refresh the access token.

Link copied to clipboard
val scope: String? = null

The scope of the access token.

Link copied to clipboard

The access token used to access the source control provider.

Link copied to clipboard
val tokenType: String? = null

The type of Auth token.