Class MsTeamListTeamsPageResponse.Builder
-
- All Implemented Interfaces:
public final class MsTeamListTeamsPageResponse.BuilderA builder for MsTeamListTeamsPageResponse.
-
-
Method Summary
-
-
Method Detail
-
msTeamsTeams
final MsTeamListTeamsPageResponse.Builder msTeamsTeams(List<MsTeamListTeamsResponse> msTeamsTeams)
List of Microsoft Teams teams.
-
msTeamsTeams
final MsTeamListTeamsPageResponse.Builder msTeamsTeams(JsonField<List<MsTeamListTeamsResponse>> msTeamsTeams)
Sets Builder.msTeamsTeams to an arbitrary JSON value.
You should usually call Builder.msTeamsTeams with a well-typed
List<MsTeamListTeamsResponse>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addMsTeamsTeam
final MsTeamListTeamsPageResponse.Builder addMsTeamsTeam(MsTeamListTeamsResponse msTeamsTeam)
Adds a single MsTeamListTeamsResponse to msTeamsTeams.
-
skipToken
final MsTeamListTeamsPageResponse.Builder skipToken(String skipToken)
OData param passed to the Microsoft Graph API to retrieve the next page of results.
-
skipToken
final MsTeamListTeamsPageResponse.Builder skipToken(Optional<String> skipToken)
Alias for calling Builder.skipToken with
skipToken.orElse(null).
-
skipToken
final MsTeamListTeamsPageResponse.Builder skipToken(JsonField<String> skipToken)
Sets Builder.skipToken to an arbitrary JSON value.
You should usually call Builder.skipToken with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final MsTeamListTeamsPageResponse.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final MsTeamListTeamsPageResponse.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final MsTeamListTeamsPageResponse.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final MsTeamListTeamsPageResponse.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final MsTeamListTeamsPageResponse.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final MsTeamListTeamsPageResponse build()
Returns an immutable instance of MsTeamListTeamsPageResponse.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.msTeamsTeams() .skipToken()
-
-
-
-