Exemple #1
0
    private void  fromJSONAlternateListing(JSONValue json_value, bool ignore_extras)
    {
        Debug.Assert(json_value != null);
        StockListingJSON convert_classy = StockListingJSON.from_json(json_value, ignore_extras, true);

        setAlternateListing(convert_classy);
    }
Exemple #2
0
 public void setAlternateListing(StockListingJSON new_value)
 {
     if (flagHasAlternateListing)
     {
     }
     flagHasAlternateListing = true;
     storeAlternateListing   = new_value;
 }
Exemple #3
0
 public void setStockListing(StockListingJSON new_value)
 {
     if (flagHasStockListing)
     {
     }
     flagHasStockListing = true;
     storeStockListing   = new_value;
 }