Package com.openai.models.responses
Class ResponseReasoningSummaryPartAddedEvent.Part.Builder
-
- All Implemented Interfaces:
public final class ResponseReasoningSummaryPartAddedEvent.Part.Builder
A builder for Part.
-
-
Method Summary
-
-
Method Detail
-
text
final ResponseReasoningSummaryPartAddedEvent.Part.Builder text(String text)
The text of the summary part.
-
text
final ResponseReasoningSummaryPartAddedEvent.Part.Builder text(JsonField<String> text)
Sets Builder.text to an arbitrary JSON value.
You should usually call Builder.text with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
type
final ResponseReasoningSummaryPartAddedEvent.Part.Builder type(JsonValue type)
Sets the field to an arbitrary JSON value.
It is usually unnecessary to call this method because the field defaults to the following:
JsonValue.from("summary_text")
This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final ResponseReasoningSummaryPartAddedEvent.Part.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final ResponseReasoningSummaryPartAddedEvent.Part.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final ResponseReasoningSummaryPartAddedEvent.Part.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final ResponseReasoningSummaryPartAddedEvent.Part.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final ResponseReasoningSummaryPartAddedEvent.Part.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final ResponseReasoningSummaryPartAddedEvent.Part build()
Returns an immutable instance of Part.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.text()
-
-
-
-