Package dev.case.api.models.search.v1
Class V1ResearchResponse.Builder
-
- All Implemented Interfaces:
public final class V1ResearchResponse.BuilderA builder for V1ResearchResponse.
-
-
Method Summary
-
-
Method Detail
-
model
final V1ResearchResponse.Builder model(String model)
Model used for research
-
model
final V1ResearchResponse.Builder model(JsonField<String> model)
Sets Builder.model to an arbitrary JSON value.
You should usually call Builder.model with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
researchId
final V1ResearchResponse.Builder researchId(String researchId)
Unique identifier for this research
-
researchId
final V1ResearchResponse.Builder researchId(JsonField<String> researchId)
Sets Builder.researchId to an arbitrary JSON value.
You should usually call Builder.researchId with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
results
final V1ResearchResponse.Builder results(JsonValue results)
Research findings and analysis
-
additionalProperties
final V1ResearchResponse.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final V1ResearchResponse.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final V1ResearchResponse.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final V1ResearchResponse.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final V1ResearchResponse.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final V1ResearchResponse build()
Returns an immutable instance of V1ResearchResponse.
Further updates to this Builder will not mutate the returned instance.
-
-
-
-