Package com.openai.models.conversations
Class InputTextContent
-
- All Implemented Interfaces:
public final class InputTextContent
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classInputTextContent.BuilderA builder for InputTextContent.
-
Method Summary
Modifier and Type Method Description final Stringtext()The text input to the model. final JsonValue_type()The type of the input item. final JsonField<String>_text()Returns the raw JSON value of text. final Map<String, JsonValue>_additionalProperties()final InputTextContent.BuildertoBuilder()final InputTextContentvalidate()final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static InputTextContent.Builderbuilder()Returns a mutable builder for constructing an instance of InputTextContent. -
-
Method Detail
-
_type
final JsonValue _type()
The type of the input item. Always
input_text.Expected to always return the following:
JsonValue.from("input_text")However, this method can be useful for debugging and logging (e.g. if the server responded with an unexpected value).
-
_text
final JsonField<String> _text()
Returns the raw JSON value of text.
Unlike text, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final InputTextContent.Builder toBuilder()
-
validate
final InputTextContent validate()
-
builder
final static InputTextContent.Builder builder()
Returns a mutable builder for constructing an instance of InputTextContent.
The following fields are required:
.text()
-
-
-
-