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

com.pengrad.telegrambot.model.BotShortDescription Maven / Gradle / Ivy

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

import java.io.Serializable;
import java.util.Objects;

/**
 * Stas Parshin
 * 31 March 2020
 */
public class BotShortDescription implements Serializable {
    private final static long serialVersionUID = 0L;

    private String short_description;

    BotShortDescription() {
    }

    public String shortDescription() {
        return short_description;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;

        BotShortDescription that = (BotShortDescription) o;

        return Objects.equals(short_description, that.short_description);
    }

    @Override
    public int hashCode() {
        return short_description != null ? short_description.hashCode() : 0;
    }

    @Override
    public String toString() {
        return "BotShortDescription{" +
                ", short_description='" + short_description + '\'' +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy