Ejemplo n.º 1
0
    private void  fromJSONHotelSearchResults(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 HotelSearchResults of HotelSearchConversationStateElementJSON is not an array.");
        }
        int count1 = json_array1.componentCount();
        List <HotelJSON> vector_HotelSearchResults1 = new List <HotelJSON>(count1);

        for (int num1 = 0; num1 < count1; ++num1)
        {
            HotelJSON convert_classy = HotelJSON.from_json(json_array1.component(num1), ignore_extras, true);
            vector_HotelSearchResults1.Add(convert_classy);
        }
        initHotelSearchResults();
        for (int num1 = 0; num1 < vector_HotelSearchResults1.Count; ++num1)
        {
            appendHotelSearchResults(vector_HotelSearchResults1[num1]);
        }
        for (int num1 = 0; num1 < vector_HotelSearchResults1.Count; ++num1)
        {
        }
    }
Ejemplo n.º 2
0
 public void appendHotelSearchResults(HotelJSON to_append)
 {
     if (!flagHasHotelSearchResults)
     {
         flagHasHotelSearchResults = true;
         storeHotelSearchResults.Clear();
     }
     Debug.Assert(flagHasHotelSearchResults);
     storeHotelSearchResults.Add(to_append);
 }