The typical user won't get anything from the result of fetch_survey_obj, it's just an extra step. It's been very useful to me in developing the package but is a relic of that process.
What's the best way to smooth that out? We could keep it two steps behind the scenes, and leave those functions accessible for those who want them, but chiefly promote a new function that would call both in one step. So maybe get_responses(1234567890).
a) is this the way to proceed? b) what should these three functions be called (currently fetch_survey_obj, parse_survey, and the third doesn't exist)? Ideally we'd establish some kind of coherent naming scheme.
The typical user won't get anything from the result of
fetch_survey_obj, it's just an extra step. It's been very useful to me in developing the package but is a relic of that process.What's the best way to smooth that out? We could keep it two steps behind the scenes, and leave those functions accessible for those who want them, but chiefly promote a new function that would call both in one step. So maybe
get_responses(1234567890).a) is this the way to proceed? b) what should these three functions be called (currently
fetch_survey_obj,parse_survey, and the third doesn't exist)? Ideally we'd establish some kind of coherent naming scheme.