Class TranscriptionWord
-
- All Implemented Interfaces:
public final class TranscriptionWord
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
TranscriptionWord.Builder
A builder for TranscriptionWord.
-
Method Summary
Modifier and Type Method Description final Double
end()
End time of the word in seconds. final Double
start()
Start time of the word in seconds. final String
word()
The text content of the word. final JsonField<Double>
_end()
Returns the raw JSON value of end. final JsonField<Double>
_start()
Returns the raw JSON value of start. final JsonField<String>
_word()
Returns the raw JSON value of word. final Map<String, JsonValue>
_additionalProperties()
final TranscriptionWord.Builder
toBuilder()
final TranscriptionWord
validate()
final Boolean
isValid()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static TranscriptionWord.Builder
builder()
Returns a mutable builder for constructing an instance of TranscriptionWord. -
-
Method Detail
-
_end
final JsonField<Double> _end()
Returns the raw JSON value of end.
Unlike end, this method doesn't throw if the JSON field has an unexpected type.
-
_start
final JsonField<Double> _start()
Returns the raw JSON value of start.
Unlike start, this method doesn't throw if the JSON field has an unexpected type.
-
_word
final JsonField<String> _word()
Returns the raw JSON value of word.
Unlike word, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final TranscriptionWord.Builder toBuilder()
-
validate
final TranscriptionWord validate()
-
builder
final static TranscriptionWord.Builder builder()
Returns a mutable builder for constructing an instance of TranscriptionWord.
The following fields are required:
.end() .start() .word()
-
-
-
-