GetTeamResult

data class GetTeamResult(val description: String, val id: String, val members: List<String>, val membershipType: String? = null, val name: String, val nodeId: String, val permission: String, val privacy: String, val repositories: List<String>, val repositoriesDetaileds: List<GetTeamRepositoriesDetailed>, val resultsPerPage: Int? = null, val slug: String, val summaryOnly: Boolean? = null)

A collection of values returned by getTeam.

Constructors

Link copied to clipboard
constructor(description: String, id: String, members: List<String>, membershipType: String? = null, name: String, nodeId: String, permission: String, privacy: String, repositories: List<String>, repositoriesDetaileds: List<GetTeamRepositoriesDetailed>, resultsPerPage: Int? = null, slug: String, summaryOnly: Boolean? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

the team's description.

Link copied to clipboard
val id: String

The provider-assigned unique ID for this managed resource.

Link copied to clipboard

List of team members (list of GitHub usernames). Not returned if summary_only = true

Link copied to clipboard
val membershipType: String? = null
Link copied to clipboard

the team's full name.

Link copied to clipboard

the Node ID of the team.

Link copied to clipboard

the team's permission level.

Link copied to clipboard

the team's privacy type.

Link copied to clipboard

List of team repositories (list of repo names). Not returned if summary_only = true

Link copied to clipboard

List of team repositories (list of repo_id and role_name). Not returned if summary_only = true

Link copied to clipboard
val resultsPerPage: Int? = null
Link copied to clipboard
Link copied to clipboard
val summaryOnly: Boolean? = null