private void  fromJSONOutputValue(JSONValue json_value, bool ignore_extras)
    {
        Debug.Assert(json_value != null);
        JSONArrayValue json_array1 = json_value.array_value();

        if (json_array1 == null)
        {
            throw new Exception("The value for field OutputValue of CurrencyConversionJSON is not an array.");
        }
        int count1 = json_array1.componentCount();

        if (count1 < 1)
        {
            throw new Exception("The value for field OutputValue of CurrencyConversionJSON has too few elements.");
        }
        List <TypeOutputValueJSON> vector_OutputValue1 = new List <TypeOutputValueJSON>(count1);

        for (int num1 = 0; num1 < count1; ++num1)
        {
            TypeOutputValueJSON convert_classy = TypeOutputValueJSON.from_json(json_array1.component(num1), ignore_extras, true);
            vector_OutputValue1.Add(convert_classy);
        }
        Debug.Assert(vector_OutputValue1.Count >= 1);
        initOutputValue();
        for (int num2 = 0; num2 < vector_OutputValue1.Count; ++num2)
        {
            appendOutputValue(vector_OutputValue1[num2]);
        }
        for (int num1 = 0; num1 < vector_OutputValue1.Count; ++num1)
        {
        }
    }
            protected override void finish()
            {
                TypeOutputValueJSON result = new TypeOutputValueJSON();

                Debug.Assert(result != null);
                finish(result);
                handle_result(result);
            }
 public void appendOutputValue(TypeOutputValueJSON to_append)
 {
     if (!flagHasOutputValue)
     {
         flagHasOutputValue = true;
         storeOutputValue.Clear();
     }
     Debug.Assert(flagHasOutputValue);
     storeOutputValue.Add(to_append);
 }
 protected void finish(TypeOutputValueJSON result)
 {
     if (fieldGeneratorConvertedValue.have_value)
     {
         result.setConvertedValue(fieldGeneratorConvertedValue.value);
         fieldGeneratorConvertedValue.have_value = false;
     }
     else if ((!(result.hasConvertedValue())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"ConvertedValue\" field was missing.");
     }
     if (fieldGeneratorError.have_value)
     {
         result.setError(fieldGeneratorError.value);
         fieldGeneratorError.have_value = false;
     }
 }
 protected override void handle_result(TypeOutputValueJSON result)
 {
     top.value.Add(result);
 }
 protected override void handle_result(TypeOutputValueJSON result)
 {
     //@@@            Debug.Assert(!have_value);
     have_value = true;
     value      = result;
 }
 protected abstract void handle_result(TypeOutputValueJSON new_result);