Class V1SearchResponse.Result.Builder
-
- All Implemented Interfaces:
public final class V1SearchResponse.Result.BuilderA builder for Result.
-
-
Method Summary
-
-
Method Detail
-
domain
final V1SearchResponse.Result.Builder domain(String domain)
Domain of the source
-
domain
final V1SearchResponse.Result.Builder domain(JsonField<String> domain)
Sets Builder.domain to an arbitrary JSON value.
You should usually call Builder.domain with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
publishedDate
final V1SearchResponse.Result.Builder publishedDate(OffsetDateTime publishedDate)
Publication date of the content
-
publishedDate
final V1SearchResponse.Result.Builder publishedDate(JsonField<OffsetDateTime> publishedDate)
Sets Builder.publishedDate to an arbitrary JSON value.
You should usually call Builder.publishedDate with a well-typed OffsetDateTime value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
snippet
final V1SearchResponse.Result.Builder snippet(String snippet)
Brief excerpt from the content
-
snippet
final V1SearchResponse.Result.Builder snippet(JsonField<String> snippet)
Sets Builder.snippet to an arbitrary JSON value.
You should usually call Builder.snippet with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
title
final V1SearchResponse.Result.Builder title(String title)
Title of the search result
-
title
final V1SearchResponse.Result.Builder title(JsonField<String> title)
Sets Builder.title to an arbitrary JSON value.
You should usually call Builder.title with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
url
final V1SearchResponse.Result.Builder url(String url)
URL of the search result
-
url
final V1SearchResponse.Result.Builder url(JsonField<String> url)
Sets Builder.url to an arbitrary JSON value.
You should usually call Builder.url 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 V1SearchResponse.Result.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final V1SearchResponse.Result.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final V1SearchResponse.Result.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final V1SearchResponse.Result.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final V1SearchResponse.Result.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final V1SearchResponse.Result build()
Returns an immutable instance of Result.
Further updates to this Builder will not mutate the returned instance.
-
-
-
-