* @see com.google.code.stackexchange.client.StackOverflowApiClient#getUsersReputations(com.google.code.stackexchange.schema.Paging, com.google.code.stackexchange.schema.TimePeriod, long[])
*/
@Override
public PagedList<Reputation> getUsersReputations(Paging paging,
TimePeriod timePeriod, long... userIds) {
ApiUrlBuilder builder = createStackOverflowApiUrlBuilder(StackExchangeApiMethods.GET_USER_REPUTATIONS);
String apiUrl = builder.withIds(userIds).withPaging(paging).withTimePeriod(timePeriod).buildUrl();
return unmarshallList(Reputation.class, callApiMethod(apiUrl));
}