Class VideoUrl.Builder
- java.lang.Object
- 
- com.oracle.bmc.generativeaiinference.model.VideoUrl.Builder
 
- 
- 
Constructor SummaryConstructors Constructor Description Builder()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description VideoUrlbuild()VideoUrl.Buildercopy(VideoUrl model)VideoUrl.Builderdetail(VideoUrl.Detail detail)The default value is AUTO and only AUTO is supported.VideoUrl.Builderurl(String url)The base64 encoded video data or a video uri if it’s supported.
 
- 
- 
- 
Method Detail- 
urlpublic VideoUrl.Builder url(String url) The base64 encoded video data or a video uri if it’s supported.Example for an mp4 video: { "type": "VIDEO", "videoUrl": { "url": "data:video/mp4;base64, " } } Example with a video uri: { "type": "VIDEO", "videoUrl": { "url": "data:video/mp4;uri, - Parameters:
- url- the value to set
- Returns:
- this builder
 
 - 
detailpublic VideoUrl.Builder detail(VideoUrl.Detail detail) The default value is AUTO and only AUTO is supported.This option controls how to convert the base64 encoded video to tokens. - Parameters:
- detail- the value to set
- Returns:
- this builder
 
 - 
buildpublic VideoUrl build() 
 - 
copypublic VideoUrl.Builder copy(VideoUrl model) 
 
- 
 
-