Class VideoEditParams.Body.Builder
-
- All Implemented Interfaces:
public final class VideoEditParams.Body.BuilderA builder for Body.
-
-
Method Summary
-
-
Method Detail
-
prompt
final VideoEditParams.Body.Builder prompt(String prompt)
Text prompt that describes how to edit the source video.
-
prompt
final VideoEditParams.Body.Builder prompt(MultipartField<String> prompt)
Sets Builder.prompt to an arbitrary multipart value.
You should usually call Builder.prompt with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
video
final VideoEditParams.Body.Builder video(VideoEditParams.Video video)
Reference to the completed video to edit.
-
video
final VideoEditParams.Body.Builder video(MultipartField<VideoEditParams.Video> video)
Sets Builder.video to an arbitrary multipart value.
You should usually call Builder.video with a well-typed Video value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
video
final VideoEditParams.Body.Builder video(InputStream inputStream)
Alias for calling video with
Video.ofInputStream(inputStream).
-
video
final VideoEditParams.Body.Builder video(ByteArray inputStream)
Reference to the completed video to edit.
-
video
final VideoEditParams.Body.Builder video(Path path)
Reference to the completed video to edit.
-
video
final VideoEditParams.Body.Builder video(VideoEditParams.Video.VideoReferenceInputParam referenceInputParam)
Alias for calling video with
Video.ofReferenceInputParam(referenceInputParam).
-
additionalProperties
final VideoEditParams.Body.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final VideoEditParams.Body.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final VideoEditParams.Body.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final VideoEditParams.Body.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final VideoEditParams.Body.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final VideoEditParams.Body build()
Returns an immutable instance of Body.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.prompt() .video()
-
-
-
-