GetTeamPlainArgs

data class GetTeamPlainArgs(val membershipType: String? = null, val resultsPerPage: Int? = null, val slug: String, val summaryOnly: Boolean? = null) : ConvertibleToJava<GetTeamPlainArgs>

A collection of arguments for invoking getTeam.

Constructors

Link copied to clipboard
constructor(membershipType: String? = null, resultsPerPage: Int? = null, slug: String, summaryOnly: Boolean? = null)

Properties

Link copied to clipboard
val membershipType: String? = null

Type of membership to be requested to fill the list of members. Can be either "all" or "immediate". Default: "all"

Link copied to clipboard
val resultsPerPage: Int? = null

Set the number of results per graphql query. Reducing this number can alleviate timeout errors. Accepts a value between 0 - 100. Defaults to 100.

Link copied to clipboard

The team slug.

Link copied to clipboard
val summaryOnly: Boolean? = null

Exclude the members and repositories of the team from the returned result. Defaults to false.

Functions

Link copied to clipboard
open override fun toJava(): GetTeamPlainArgs