RegistryTaskSourceTriggerAuthentication

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

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val expireInSeconds: 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

The type of the token. Possible values are PAT (personal access token) and OAuth.