Class TranscriptionWord.Builder
-
- All Implemented Interfaces:
public final class TranscriptionWord.Builder
A builder for TranscriptionWord.
-
-
Method Summary
-
-
Method Detail
-
end
final TranscriptionWord.Builder end(Float end)
End time of the word in seconds.
-
end
final TranscriptionWord.Builder end(JsonField<Float> end)
Sets Builder.end to an arbitrary JSON value.
You should usually call Builder.end with a well-typed Float value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
start
final TranscriptionWord.Builder start(Float start)
Start time of the word in seconds.
-
start
final TranscriptionWord.Builder start(JsonField<Float> start)
Sets Builder.start to an arbitrary JSON value.
You should usually call Builder.start with a well-typed Float value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
word
final TranscriptionWord.Builder word(String word)
The text content of the word.
-
word
final TranscriptionWord.Builder word(JsonField<String> word)
Sets Builder.word to an arbitrary JSON value.
You should usually call Builder.word with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final TranscriptionWord.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final TranscriptionWord.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final TranscriptionWord.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final TranscriptionWord.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final TranscriptionWord.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final TranscriptionWord build()
Returns an immutable instance of TranscriptionWord.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.end() .start() .word()
-
-
-
-