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

com.pengrad.telegrambot.model.request.ShippingOption 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 ShippingOption implements Serializable {
    private final static long serialVersionUID = 0L;

    private String id, title;
    private LabeledPrice[] prices;

    public ShippingOption(String id, String title, LabeledPrice... prices) {
        this.id = id;
        this.title = title;
        this.prices = prices;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy