com.pengrad.telegrambot.request.GetUserProfilePhotos Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-telegram-bot-api Show documentation
Show all versions of java-telegram-bot-api Show documentation
Java API for Telegram Bot API
package com.pengrad.telegrambot.request;
import com.pengrad.telegrambot.response.GetUserProfilePhotosResponse;
/**
* stas
* 5/2/16.
*/
public class GetUserProfilePhotos extends BaseRequest {
public GetUserProfilePhotos(long 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);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy