Class VectorStoreSearchPageResponse.Builder
- 
                    
                    - All Implemented Interfaces:
 
 public final class VectorStoreSearchPageResponse.BuilderA builder for VectorStoreSearchPageResponse. 
- 
                
                    
                    - 
                                
                            
                                Method Summary- 
                    
                    
                    - 
                                
                            
                                Method Detail- 
                                        datafinal VectorStoreSearchPageResponse.Builder data(List<VectorStoreSearchResponse> data) The list of search result items. 
 - 
                                        datafinal VectorStoreSearchPageResponse.Builder data(JsonField<List<VectorStoreSearchResponse>> data) Sets Builder.data to an arbitrary JSON value. You should usually call Builder.data with a well-typed List<VectorStoreSearchResponse>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
 - 
                                        addDatafinal VectorStoreSearchPageResponse.Builder addData(VectorStoreSearchResponse data) Adds a single VectorStoreSearchResponse to Builder.data. 
 - 
                                        hasMorefinal VectorStoreSearchPageResponse.Builder hasMore(Boolean hasMore) Indicates if there are more results to fetch. 
 - 
                                        hasMorefinal VectorStoreSearchPageResponse.Builder hasMore(JsonField<Boolean> hasMore) Sets Builder.hasMore to an arbitrary JSON value. You should usually call Builder.hasMore with a well-typed Boolean value instead. This method is primarily for setting the field to an undocumented or not yet supported value. 
 - 
                                        nextPagefinal VectorStoreSearchPageResponse.Builder nextPage(String nextPage) The token for the next page, if any. 
 - 
                                        nextPagefinal VectorStoreSearchPageResponse.Builder nextPage(Optional<String> nextPage) Alias for calling Builder.nextPage with nextPage.orElse(null).
 - 
                                        nextPagefinal VectorStoreSearchPageResponse.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. 
 - 
                                        object_final VectorStoreSearchPageResponse.Builder object_(JsonValue object_) Sets the field to an arbitrary JSON value. It is usually unnecessary to call this method because the field defaults to the following: JsonValue.from("vector_store.search_results.page")This method is primarily for setting the field to an undocumented or not yet supported value. 
 - 
                                        searchQueryfinal VectorStoreSearchPageResponse.Builder searchQuery(List<String> searchQuery) 
 - 
                                        searchQueryfinal VectorStoreSearchPageResponse.Builder searchQuery(JsonField<List<String>> searchQuery) Sets Builder.searchQuery to an arbitrary JSON value. You should usually call Builder.searchQuery with a well-typed List<String>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
 - 
                                        addSearchQueryfinal VectorStoreSearchPageResponse.Builder addSearchQuery(String searchQuery) Adds a single String to Builder.searchQuery. 
 - 
                                        additionalPropertiesfinal VectorStoreSearchPageResponse.Builder additionalProperties(Map<String, JsonValue> additionalProperties) 
 - 
                                        putAdditionalPropertyfinal VectorStoreSearchPageResponse.Builder putAdditionalProperty(String key, JsonValue value) 
 - 
                                        putAllAdditionalPropertiesfinal VectorStoreSearchPageResponse.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties) 
 - 
                                        removeAdditionalPropertyfinal VectorStoreSearchPageResponse.Builder removeAdditionalProperty(String key) 
 - 
                                        removeAllAdditionalPropertiesfinal VectorStoreSearchPageResponse.Builder removeAllAdditionalProperties(Set<String> keys) 
 - 
                                        buildfinal VectorStoreSearchPageResponse build() Returns an immutable instance of VectorStoreSearchPageResponse. Further updates to this Builder will not mutate the returned instance. The following fields are required: .data() .hasMore() .nextPage() .searchQuery()
 
- 
                                        
 
- 
                                
                            
                                
 
- 
                    
                    
                    
 
-