Package com.openai.models
Interface MessageContentPartParam.Visitor
-
- All Implemented Interfaces:
public interface MessageContentPartParam.Visitor<T extends Object>
-
-
Method Summary
Modifier and Type Method Description abstract T
visitImageFile(ImageFileContentBlock imageFile)
References an image File in the content of a message. abstract T
visitImageUrl(ImageUrlContentBlock imageUrl)
References an image URL in the content of a message. abstract T
visitText(TextContentBlockParam text)
The text content that is part of a message. T
unknown(JsonValue json)
-
-
Method Detail
-
visitImageFile
abstract T visitImageFile(ImageFileContentBlock imageFile)
References an image File in the content of a message.
-
visitImageUrl
abstract T visitImageUrl(ImageUrlContentBlock imageUrl)
References an image URL in the content of a message.
-
visitText
abstract T visitText(TextContentBlockParam text)
The text content that is part of a message.
-
-
-
-