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

com.pengrad.telegrambot.model.request.KeyboardButtonPollType Maven / Gradle / Ivy

There is a newer version: 7.2.1
Show newest version
package com.pengrad.telegrambot.model.request;

import com.pengrad.telegrambot.model.*;

import java.io.Serializable;

/**
 * Stas Parshin
 * 25 January 2020
 */
public class KeyboardButtonPollType implements Serializable {
    private final static long serialVersionUID = 0L;

    private String type;

    public KeyboardButtonPollType() {
    }

    public KeyboardButtonPollType(String type) {
        this.type = type;
    }

    public KeyboardButtonPollType(Poll.Type type) {
        this(type.name());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy