ApplicationSettingsDefaultBranchProtectionDefaults

data class ApplicationSettingsDefaultBranchProtectionDefaults(val allowForcePush: Boolean? = null, val allowedToMerges: List<Int>? = null, val allowedToPushes: List<Int>? = null, val developerCanInitialPush: Boolean? = null)

Constructors

constructor(allowForcePush: Boolean? = null, allowedToMerges: List<Int>? = null, allowedToPushes: List<Int>? = null, developerCanInitialPush: Boolean? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val allowedToMerges: List<Int>? = null

An array of access levels allowed to merge. Supports Developer (30) or Maintainer (40).

Link copied to clipboard
val allowedToPushes: List<Int>? = null

An array of access levels allowed to push. Supports Developer (30) or Maintainer (40).

Link copied to clipboard
val allowForcePush: Boolean? = null

Allow force push for all users with push access.

Link copied to clipboard

Allow developers to initial push.