source: gs3-extensions/atea-nlp-tools/trunk/src/koreromaori-proxy/src/main/java/org/atea/nlptools/koreromaoriinterface/models/TranscriptionResultMetadata.java@ 35239

Last change on this file since 35239 was 35239, checked in by davidb, 3 years ago

Adding proxy servlet for the Korero Maori Reo Tuhituhi API (initail commit)

File size: 464 bytes
Line 
1package org.atea.nlptools.koreromaoriinterface.models;
2
3import com.google.gson.annotations.SerializedName;
4
5public final class TranscriptionResultMetadata
6{
7 @SerializedName("char")
8 private char character;
9
10 @SerializedName("prob")
11 private double confidence;
12
13 private double startTime;
14
15 public char getCharacter() {
16 return character;
17 }
18
19 public double getConfidence() {
20 return confidence;
21 }
22
23 public double getStartTime() {
24 return startTime;
25 }
26}
Note: See TracBrowser for help on using the repository browser.