Uses of Interface
com.spotify.github.v3.Team
-
Packages that use Team Package Description com.spotify.github.v3 com.spotify.github.v3.clients com.spotify.github.v3.prs -
-
Uses of Team in com.spotify.github.v3
Classes in com.spotify.github.v3 that implement Team Modifier and Type Class Description class
ImmutableTeam
Immutable implementation ofTeam
.Methods in com.spotify.github.v3 with parameters of type Team Modifier and Type Method Description static ImmutableTeam
ImmutableTeam. copyOf(Team instance)
Creates an immutable copy of aTeam
value.ImmutableTeam.Builder
ImmutableTeam.Builder. from(Team instance)
Fill a builder with attribute values from the providedTeam
instance. -
Uses of Team in com.spotify.github.v3.clients
Methods in com.spotify.github.v3.clients that return types with arguments of type Team Modifier and Type Method Description CompletableFuture<Team>
TeamClient. createTeam(TeamCreate request)
Create a team in an organisation.CompletableFuture<Team>
TeamClient. getTeam(String slug)
Get a specific team in an organisation.CompletableFuture<List<Team>>
TeamClient. listTeams()
List teams within an organisation.CompletableFuture<Team>
TeamClient. updateTeam(TeamUpdate request, String slug)
Update a team in an organisation. -
Uses of Team in com.spotify.github.v3.prs
Methods in com.spotify.github.v3.prs that return types with arguments of type Team Modifier and Type Method Description List<Team>
ImmutableReviewRequests. teams()
List<Team>
ReviewRequests. teams()
Methods in com.spotify.github.v3.prs with parameters of type Team Modifier and Type Method Description ImmutableReviewRequests.Builder
ImmutableReviewRequests.Builder. addTeams(Team element)
Adds one element toteams
list.ImmutableReviewRequests.Builder
ImmutableReviewRequests.Builder. addTeams(Team... elements)
Adds elements toteams
list.ImmutableReviewRequests
ImmutableReviewRequests. withTeams(Team... elements)
Copy the current immutable object with elements that replace the content ofteams
.Method parameters in com.spotify.github.v3.prs with type arguments of type Team Modifier and Type Method Description ImmutableReviewRequests.Builder
ImmutableReviewRequests.Builder. addAllTeams(Iterable<? extends Team> elements)
Adds elements toteams
list.ImmutableReviewRequests.Builder
ImmutableReviewRequests.Builder. teams(Iterable<? extends Team> elements)
Sets or replaces all elements forteams
list.ImmutableReviewRequests
ImmutableReviewRequests. withTeams(Iterable<? extends Team> elements)
Copy the current immutable object with elements that replace the content ofteams
.
-