Class V1GetFullTextParams.Body.Builder
-
- All Implemented Interfaces:
public final class V1GetFullTextParams.Body.BuilderA builder for Body.
-
-
Method Summary
-
-
Method Detail
-
url
final V1GetFullTextParams.Body.Builder url(String url)
URL of the verified legal document
-
url
final V1GetFullTextParams.Body.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.
-
highlightQuery
final V1GetFullTextParams.Body.Builder highlightQuery(String highlightQuery)
Optional query to extract relevant highlights (e.g., "What is the holding?")
-
highlightQuery
final V1GetFullTextParams.Body.Builder highlightQuery(JsonField<String> highlightQuery)
Sets Builder.highlightQuery to an arbitrary JSON value.
You should usually call Builder.highlightQuery with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
maxCharacters
final V1GetFullTextParams.Body.Builder maxCharacters(Long maxCharacters)
Maximum characters to return (default: 10000, max: 50000)
-
maxCharacters
final V1GetFullTextParams.Body.Builder maxCharacters(JsonField<Long> maxCharacters)
Sets Builder.maxCharacters to an arbitrary JSON value.
You should usually call Builder.maxCharacters with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
summaryQuery
final V1GetFullTextParams.Body.Builder summaryQuery(String summaryQuery)
Optional query for generating a summary (e.g., "Summarize the key ruling")
-
summaryQuery
final V1GetFullTextParams.Body.Builder summaryQuery(JsonField<String> summaryQuery)
Sets Builder.summaryQuery to an arbitrary JSON value.
You should usually call Builder.summaryQuery 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 V1GetFullTextParams.Body.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final V1GetFullTextParams.Body.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final V1GetFullTextParams.Body.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final V1GetFullTextParams.Body.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final V1GetFullTextParams.Body.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final V1GetFullTextParams.Body build()
Returns an immutable instance of Body.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.url()
-
-
-
-