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); }
protected override void finish() { if (!(getCommandResultJSONKey().Equals("SpeechToTextOnlyCommand"))) { throw new Exception("The key field has a value other than `SpeechToTextOnlyCommand'."); } SpeechToTextOnlyCommandJSON result = new SpeechToTextOnlyCommandJSON(); Debug.Assert(result != null); finish(result); int extra_count = unknownFieldGenerator.field_names.Count; Debug.Assert(extra_count == unknownFieldGenerator.field_values.Count); for (int extra_num = 0; extra_num < extra_count; ++extra_num) { result.extraSpeechToTextOnlyCommandAppendPair(unknownFieldGenerator.field_names[extra_num], unknownFieldGenerator.field_values[extra_num]); } unknownFieldGenerator.field_names.Clear(); unknownFieldGenerator.field_values.Clear(); unknownFieldGenerator.index = new Dictionary <string, JSONValue>(); handle_result(result); }
protected override void handle_result(SpeechToTextOnlyCommandJSON result) { top.value.Add(result); }
protected override void handle_result(SpeechToTextOnlyCommandJSON result) { //@@@ Debug.Assert(!have_value); have_value = true; value = result; }
protected abstract void handle_result(SpeechToTextOnlyCommandJSON new_result);