* @see com.google.code.stackexchange.client.StackOverflowApiClient#getUnansweredQuestions(java.util.Set)
*/
@Override
public PagedList<Question> getUnansweredQuestions(Set<FilterOption> filterOptions) {
ApiUrlBuilder builder = createStackOverflowApiUrlBuilder(StackExchangeApiMethods.GET_UN_ANSWERED_QUESTIONS);
String apiUrl = builder.withFetchOptions(filterOptions).buildUrl();
return unmarshallList(Question.class, callApiMethod(apiUrl));
}
/* (non-Javadoc)