Esempio n. 1
0
 protected void finish(SpeechToTextOnlyCommandJSON result)
 {
     if (fieldGeneratorRawTranscription.have_value)
     {
         result.setRawTranscription(fieldGeneratorRawTranscription.value);
         fieldGeneratorRawTranscription.have_value = false;
     }
     else if ((!(result.hasRawTranscription())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"RawTranscription\" field was missing.");
     }
     if (fieldGeneratorFormattedTranscription.have_value)
     {
         result.setFormattedTranscription(fieldGeneratorFormattedTranscription.value);
         fieldGeneratorFormattedTranscription.have_value = false;
     }
     else if ((!(result.hasFormattedTranscription())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"FormattedTranscription\" field was missing.");
     }
     if (fieldGeneratorNativeData.have_value)
     {
         result.setNativeData(fieldGeneratorNativeData.value);
         fieldGeneratorNativeData.have_value = false;
     }
     else if ((!(result.hasNativeData())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"NativeData\" field was missing.");
     }
     base.finish(result);
 }