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