* @see com.google.code.stackexchange.client.StackOverflowApiClient#getQuestions(com.google.code.stackexchange.schema.Question.SortOrder, com.google.code.stackexchange.schema.Paging, com.google.code.stackexchange.schema.TimePeriod, java.util.Set)
*/
@Override
public PagedList<Question> getQuestions(Question.SortOrder sort, Paging paging,
TimePeriod timePeriod, Set<FilterOption> filterOptions) {
ApiUrlBuilder builder = createStackOverflowApiUrlBuilder(StackExchangeApiMethods.GET_QUESTIONS);
String apiUrl = builder.withSort(sort).withPaging(paging).withTimePeriod(timePeriod).withFetchOptions(filterOptions).buildUrl();
return unmarshallList(Question.class, callApiMethod(apiUrl));
}