Get Team Plain Args
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.
Properties
Link copied to clipboard
Type of membership to be requested to fill the list of members. Can be either "all" or "immediate". Default: "all"
Link copied to clipboard
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
Exclude the members and repositories of the team from the returned result. Defaults to false
.