Class UserProfileListPageResponse.Builder
-
- All Implemented Interfaces:
public final class UserProfileListPageResponse.BuilderA builder for UserProfileListPageResponse.
-
-
Method Summary
-
-
Method Detail
-
data
final UserProfileListPageResponse.Builder data(List<BetaUserProfile> data)
User profiles on this page.
-
data
final UserProfileListPageResponse.Builder data(JsonField<List<BetaUserProfile>> data)
Sets Builder.data to an arbitrary JSON value.
You should usually call Builder.data with a well-typed
List<BetaUserProfile>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addData
final UserProfileListPageResponse.Builder addData(BetaUserProfile data)
Adds a single BetaUserProfile to Builder.data.
-
nextPage
final UserProfileListPageResponse.Builder nextPage(String nextPage)
Cursor for the next page, or
nullwhen there are no more results.
-
nextPage
final UserProfileListPageResponse.Builder nextPage(Optional<String> nextPage)
Alias for calling Builder.nextPage with
nextPage.orElse(null).
-
nextPage
final UserProfileListPageResponse.Builder nextPage(JsonField<String> nextPage)
Sets Builder.nextPage to an arbitrary JSON value.
You should usually call Builder.nextPage 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 UserProfileListPageResponse.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final UserProfileListPageResponse.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final UserProfileListPageResponse.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final UserProfileListPageResponse.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final UserProfileListPageResponse.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final UserProfileListPageResponse build()
Returns an immutable instance of UserProfileListPageResponse.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.data() .nextPage()
-
-
-
-