*/
@Override
public PagedList<Question> getTaggedQuestions(List<String> tags,
Paging paging, TimePeriod timePeriod,
Set<FilterOption> filterOptions) {
ApiUrlBuilder builder = createStackOverflowApiUrlBuilder(StackExchangeApiMethods.GET_QUESTIONS);
String apiUrl = builder.withParameters("tagged", tags, ";").withPaging(paging).withTimePeriod(timePeriod).withFetchOptions(filterOptions).buildUrl();
return unmarshallList(Question.class, callApiMethod(apiUrl));
}