private void  fromJSONflightStatuses(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 flightStatuses of FlightStatsFlightStatusResponseJSON is not an array.");
        }
        int count1 = json_array1.componentCount();
        List <FlightStatsFlightStatusJSON> vector_flightStatuses1 = new List <FlightStatsFlightStatusJSON>(count1);

        for (int num1 = 0; num1 < count1; ++num1)
        {
            FlightStatsFlightStatusJSON convert_classy = FlightStatsFlightStatusJSON.from_json(json_array1.component(num1), ignore_extras, true);
            vector_flightStatuses1.Add(convert_classy);
        }
        initflightStatuses();
        for (int num1 = 0; num1 < vector_flightStatuses1.Count; ++num1)
        {
            appendflightStatuses(vector_flightStatuses1[num1]);
        }
        for (int num1 = 0; num1 < vector_flightStatuses1.Count; ++num1)
        {
        }
    }
 public void appendflightStatuses(FlightStatsFlightStatusJSON to_append)
 {
     if (!flagHasflightStatuses)
     {
         flagHasflightStatuses = true;
         storeflightStatuses.Clear();
     }
     Debug.Assert(flagHasflightStatuses);
     storeflightStatuses.Add(to_append);
 }