Class V1DocketParams.Body.Builder
-
- All Implemented Interfaces:
public final class V1DocketParams.Body.BuilderA builder for Body.
-
-
Method Summary
-
-
Method Detail
-
type
final V1DocketParams.Body.Builder type(V1DocketParams.Type type)
Search dockets or look up a docket by ID
-
type
final V1DocketParams.Body.Builder type(JsonField<V1DocketParams.Type> type)
Sets Builder.type to an arbitrary JSON value.
You should usually call Builder.type with a well-typed Type value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
acknowledgePacerFees
final V1DocketParams.Body.Builder acknowledgePacerFees(Boolean acknowledgePacerFees)
Required when live: true. Acknowledges that PACER fees (up to
$3.00 per docket) plus a $
0.05 service fee will be charged to your account.
-
acknowledgePacerFees
final V1DocketParams.Body.Builder acknowledgePacerFees(JsonField<Boolean> acknowledgePacerFees)
Sets Builder.acknowledgePacerFees to an arbitrary JSON value.
You should usually call Builder.acknowledgePacerFees with a well-typed Boolean value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
court
final V1DocketParams.Body.Builder court(String court)
Optional court slug for filtering (e.g. "nysd", "ca9", "cafc"). Use legal.listCourts() to find slugs.
-
court
final V1DocketParams.Body.Builder court(JsonField<String> court)
Sets Builder.court to an arbitrary JSON value.
You should usually call Builder.court with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
dateFiledAfter
final V1DocketParams.Body.Builder dateFiledAfter(LocalDate dateFiledAfter)
Optional lower bound for filing date (YYYY-MM-DD)
-
dateFiledAfter
final V1DocketParams.Body.Builder dateFiledAfter(JsonField<LocalDate> dateFiledAfter)
Sets Builder.dateFiledAfter to an arbitrary JSON value.
You should usually call Builder.dateFiledAfter with a well-typed LocalDate value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
dateFiledBefore
final V1DocketParams.Body.Builder dateFiledBefore(LocalDate dateFiledBefore)
Optional upper bound for filing date (YYYY-MM-DD)
-
dateFiledBefore
final V1DocketParams.Body.Builder dateFiledBefore(JsonField<LocalDate> dateFiledBefore)
Sets Builder.dateFiledBefore to an arbitrary JSON value.
You should usually call Builder.dateFiledBefore with a well-typed LocalDate value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
docketId
final V1DocketParams.Body.Builder docketId(String docketId)
Docket ID (required for lookup)
-
docketId
final V1DocketParams.Body.Builder docketId(JsonField<String> docketId)
Sets Builder.docketId to an arbitrary JSON value.
You should usually call Builder.docketId with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
includeEntries
final V1DocketParams.Body.Builder includeEntries(Boolean includeEntries)
Include docket entries/filings in lookup responses. Coming soon — currently returns 501. The parameter is accepted for forward compatibility.
-
includeEntries
final V1DocketParams.Body.Builder includeEntries(JsonField<Boolean> includeEntries)
Sets Builder.includeEntries to an arbitrary JSON value.
You should usually call Builder.includeEntries with a well-typed Boolean value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
limit
final V1DocketParams.Body.Builder limit(Long limit)
Page size for search results or entry list (default 25 for search, 50 for lookup)
-
limit
final V1DocketParams.Body.Builder limit(JsonField<Long> limit)
Sets Builder.limit to an arbitrary JSON value.
You should usually call Builder.limit with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
live
final V1DocketParams.Body.Builder live(Boolean live)
Trigger a live PACER fetch for dockets not yet in the RECAP archive. Requires acknowledgePacerFees: true. PACER charges up to
$3.00 per docket sheet plus a $
0.05 service fee. Only valid with type: "lookup".
-
live
final V1DocketParams.Body.Builder live(JsonField<Boolean> live)
Sets Builder.live to an arbitrary JSON value.
You should usually call Builder.live with a well-typed Boolean value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
offset
final V1DocketParams.Body.Builder offset(Long offset)
Offset for search results or entry list
-
offset
final V1DocketParams.Body.Builder offset(JsonField<Long> offset)
Sets Builder.offset to an arbitrary JSON value.
You should usually call Builder.offset with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
query
final V1DocketParams.Body.Builder query(String query)
Case name or party name search query (required for search)
-
query
final V1DocketParams.Body.Builder query(JsonField<String> query)
Sets Builder.query to an arbitrary JSON value.
You should usually call Builder.query 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 V1DocketParams.Body.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final V1DocketParams.Body.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final V1DocketParams.Body.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final V1DocketParams.Body.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final V1DocketParams.Body.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final V1DocketParams.Body build()
Returns an immutable instance of Body.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.type()
-
-
-
-