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

        setNativeData(convert_classy);
    }
 public void setNativeData(ComposeEmailCommandNativeDataJSON new_value)
 {
     if (flagHasNativeData)
     {
     }
     flagHasNativeData = true;
     storeNativeData   = new_value;
 }