com.pengrad.telegrambot.model.VideoChatEnded Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-telegram-bot-api Show documentation
Show all versions of java-telegram-bot-api Show documentation
Java API for Telegram Bot API
package com.pengrad.telegrambot.model;
import java.io.Serializable;
import java.util.Objects;
/**
* Stas Parshin
* 10 March 2021
*/
public class VideoChatEnded implements Serializable {
private final static long serialVersionUID = 0L;
private Integer duration;
public Integer duration() {
return duration;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
VideoChatEnded that = (VideoChatEnded) o;
return Objects.equals(duration, that.duration);
}
@Override
public int hashCode() {
return Objects.hash(duration);
}
@Override
public String toString() {
return "VideoChatEnded{" +
"duration=" + duration +
'}';
}
}