com.pengrad.telegrambot.model.VideoChatScheduled 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;
public class VideoChatScheduled implements Serializable {
private final static long serialVersionUID = 0L;
private Integer start_date;
public Integer startDate() {
return start_date;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
VideoChatScheduled that = (VideoChatScheduled) o;
return Objects.equals(start_date, that.start_date);
}
@Override
public int hashCode() {
return Objects.hash(start_date);
}
@Override
public String toString() {
return "VideoChatScheduled{" +
"start_date=" + start_date +
'}';
}
}