* @see com.google.code.stackexchange.client.StackOverflowApiClient#getUsersCommentsToUser(long, com.google.code.stackexchange.schema.Comment.SortOrder, com.google.code.stackexchange.schema.Paging, com.google.code.stackexchange.schema.TimePeriod, long[])
*/
@Override
public PagedList<Comment> getUsersCommentsToUser(long toUserId, Comment.SortOrder sort,
Paging paging, TimePeriod timePeriod, long... userIds) {
ApiUrlBuilder builder = createStackOverflowApiUrlBuilder(StackExchangeApiMethods.GET_COMMENTS_BY_USER_TO_USER);
String apiUrl = builder.withIds(userIds).withField("toid", String.valueOf(toUserId)).withSort(sort).withPaging(paging).withTimePeriod(timePeriod).buildUrl();
return unmarshallList(Comment.class, callApiMethod(apiUrl));
}