Class V1GetFullTextParams
-
- All Implemented Interfaces:
-
dev.case.api.core.Params
public final class V1GetFullTextParams implements Params
Retrieve the full text content of a legal document. Use after verifying the source with legal.verify(). Returns complete text with optional highlights and AI summary.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classV1GetFullTextParams.BuilderA builder for V1GetFullTextParams.
public final classV1GetFullTextParams.Body
-
Method Summary
Modifier and Type Method Description final Stringurl()URL of the verified legal document final Optional<String>highlightQuery()Optional query to extract relevant highlights (e.g., "What is the holding? final Optional<Long>maxCharacters()Maximum characters to return (default: 10000, max: 50000) final Optional<String>summaryQuery()Optional query for generating a summary (e.g. final JsonField<String>_url()Returns the raw JSON value of url. final JsonField<String>_highlightQuery()Returns the raw JSON value of highlightQuery. final JsonField<Long>_maxCharacters()Returns the raw JSON value of maxCharacters. final JsonField<String>_summaryQuery()Returns the raw JSON value of summaryQuery. final Map<String, JsonValue>_additionalBodyProperties()final Headers_additionalHeaders()Additional headers to send with the request. final QueryParams_additionalQueryParams()Additional query param to send with the request. final V1GetFullTextParams.BuildertoBuilder()final V1GetFullTextParams.Body_body()Headers_headers()The full set of headers in the parameters, including both fixed and additional headers. QueryParams_queryParams()The full set of query params in the parameters, including both fixed and additional query params. Booleanequals(Object other)IntegerhashCode()StringtoString()final static V1GetFullTextParams.Builderbuilder()Returns a mutable builder for constructing an instance of V1GetFullTextParams. -
-
Method Detail
-
highlightQuery
final Optional<String> highlightQuery()
Optional query to extract relevant highlights (e.g., "What is the holding?")
-
maxCharacters
final Optional<Long> maxCharacters()
Maximum characters to return (default: 10000, max: 50000)
-
summaryQuery
final Optional<String> summaryQuery()
Optional query for generating a summary (e.g., "Summarize the key ruling")
-
_url
final JsonField<String> _url()
Returns the raw JSON value of url.
Unlike url, this method doesn't throw if the JSON field has an unexpected type.
-
_highlightQuery
final JsonField<String> _highlightQuery()
Returns the raw JSON value of highlightQuery.
Unlike highlightQuery, this method doesn't throw if the JSON field has an unexpected type.
-
_maxCharacters
final JsonField<Long> _maxCharacters()
Returns the raw JSON value of maxCharacters.
Unlike maxCharacters, this method doesn't throw if the JSON field has an unexpected type.
-
_summaryQuery
final JsonField<String> _summaryQuery()
Returns the raw JSON value of summaryQuery.
Unlike summaryQuery, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalBodyProperties
final Map<String, JsonValue> _additionalBodyProperties()
-
_additionalHeaders
final Headers _additionalHeaders()
Additional headers to send with the request.
-
_additionalQueryParams
final QueryParams _additionalQueryParams()
Additional query param to send with the request.
-
toBuilder
final V1GetFullTextParams.Builder toBuilder()
-
_body
final V1GetFullTextParams.Body _body()
-
_headers
Headers _headers()
The full set of headers in the parameters, including both fixed and additional headers.
-
_queryParams
QueryParams _queryParams()
The full set of query params in the parameters, including both fixed and additional query params.
-
builder
final static V1GetFullTextParams.Builder builder()
Returns a mutable builder for constructing an instance of V1GetFullTextParams.
The following fields are required:
.url()
-
-
-
-