io.github.biezhi.tgbot.request.GetUserProfilePhotos Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of telegram-bot-api Show documentation
Show all versions of telegram-bot-api Show documentation
Telegram bot library by Java
The newest version!
package io.github.biezhi.tgbot.request;
import io.github.biezhi.tgbot.response.GetUserProfilePhotosResponse;
/**
* stas
* 5/2/16.
*/
public class GetUserProfilePhotos extends BotRequest {
public GetUserProfilePhotos(int userId) {
super(GetUserProfilePhotosResponse.class);
add("user_id", userId);
}
public GetUserProfilePhotos offset(int offset) {
return add("offset", offset);
}
public GetUserProfilePhotos limit(int limit) {
return add("limit", limit);
}
}