Class FeedListItemsPageResponse.Builder
-
- All Implemented Interfaces:
public final class FeedListItemsPageResponse.BuilderA builder for FeedListItemsPageResponse.
-
-
Method Summary
-
-
Method Detail
-
entries
final FeedListItemsPageResponse.Builder entries(List<FeedListItemsResponse> entries)
The list of feed items in the user's feed.
-
entries
final FeedListItemsPageResponse.Builder entries(JsonField<List<FeedListItemsResponse>> entries)
Sets Builder.entries to an arbitrary JSON value.
You should usually call Builder.entries with a well-typed
List<FeedListItemsResponse>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addEntry
final FeedListItemsPageResponse.Builder addEntry(FeedListItemsResponse entry)
Adds a single FeedListItemsResponse to entries.
-
meta
final FeedListItemsPageResponse.Builder meta(FeedListItemsPageResponse.Meta meta)
The metadata for the user's feed.
-
meta
final FeedListItemsPageResponse.Builder meta(JsonField<FeedListItemsPageResponse.Meta> meta)
Sets Builder.meta to an arbitrary JSON value.
You should usually call Builder.meta with a well-typed Meta value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
pageInfo
final FeedListItemsPageResponse.Builder pageInfo(PageInfo pageInfo)
Pagination information for a list of resources.
-
pageInfo
final FeedListItemsPageResponse.Builder pageInfo(JsonField<PageInfo> pageInfo)
Sets Builder.pageInfo to an arbitrary JSON value.
You should usually call Builder.pageInfo with a well-typed PageInfo value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
vars
final FeedListItemsPageResponse.Builder vars(FeedListItemsPageResponse.Vars vars)
Additional variables for the feed item.
-
vars
final FeedListItemsPageResponse.Builder vars(JsonField<FeedListItemsPageResponse.Vars> vars)
Sets Builder.vars to an arbitrary JSON value.
You should usually call Builder.vars with a well-typed Vars value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final FeedListItemsPageResponse.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final FeedListItemsPageResponse.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final FeedListItemsPageResponse.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final FeedListItemsPageResponse.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final FeedListItemsPageResponse.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final FeedListItemsPageResponse build()
Returns an immutable instance of FeedListItemsPageResponse.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.entries() .meta() .pageInfo() .vars()
-
-
-
-