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 TvisitImageFile(ImageFileContentBlock imageFile)References an image File in the content of a message. abstract TvisitImageUrl(ImageUrlContentBlock imageUrl)References an image URL in the content of a message. abstract TvisitText(TextContentBlockParam text)The text content that is part of a message. Tunknown(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.
-
-
-
-