All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.biezhi.tgbot.request.GetUserProfilePhotos Maven / Gradle / Ivy

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy