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

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

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

import java.io.Serializable;

/**
 * Stas Parshin
 * 24 May 2017
 */
public class LabeledPrice implements Serializable {
    private final static long serialVersionUID = 0L;

    private String label;
    private Integer amount;

    public LabeledPrice(String label, Integer amount) {
        this.label = label;
        this.amount = amount;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy