private void  fromJSONAction(JSONValue json_value, bool ignore_extras)
    {
        Debug.Assert(json_value != null);
        EmailContactResultActionJSON convert_classy = EmailContactResultActionJSON.from_json(json_value, ignore_extras, true);

        setAction(convert_classy);
    }
        protected override void handle_result(TypeValue new_value)
        {
            EmailContactResultActionJSON result = new EmailContactResultActionJSON();

            result.setValue(new_value);
            handle_result(result);
        }
 public void setAction(EmailContactResultActionJSON new_value)
 {
     if (flagHasAction)
     {
     }
     flagHasAction = true;
     storeAction   = new_value;
 }
 protected override void handle_result(EmailContactResultActionJSON result)
 {
     top.value.Add(result);
 }
        protected override void handle_result(EmailContactResultActionJSON result)
        {
//@@@            Debug.Assert(!have_value);
            have_value = true;
            value      = result;
        }
 protected abstract void handle_result(EmailContactResultActionJSON new_result);