com.pengrad.telegrambot.model.Video 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
* 8/5/15.
*/
public class Video implements Serializable {
private final static long serialVersionUID = 0L;
private String file_id;
private String file_unique_id;
private Integer width;
private Integer height;
private Integer duration;
private PhotoSize thumbnail;
private String file_name;
private String mime_type;
private Long file_size;
public String fileId() {
return file_id;
}
public String fileUniqueId() {
return file_unique_id;
}
public Integer width() {
return width;
}
public Integer height() {
return height;
}
public Integer duration() {
return duration;
}
public PhotoSize thumbnail() {
return thumbnail;
}
/**
* @deprecated Use thumbnail instead
*/
@Deprecated
public PhotoSize thumb() {
return thumbnail();
}
public String fileName() {
return file_name;
}
public String mimeType() {
return mime_type;
}
public Long fileSize() {
return file_size;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Video video = (Video) o;
return Objects.equals(file_id, video.file_id) &&
Objects.equals(file_unique_id, video.file_unique_id) &&
Objects.equals(width, video.width) &&
Objects.equals(height, video.height) &&
Objects.equals(duration, video.duration) &&
Objects.equals(thumbnail, video.thumbnail) &&
Objects.equals(file_name, video.file_name) &&
Objects.equals(mime_type, video.mime_type) &&
Objects.equals(file_size, video.file_size);
}
@Override
public int hashCode() {
return file_id != null ? file_id.hashCode() : 0;
}
@Override
public String toString() {
return "Video{" +
"file_id='" + file_id + '\'' +
", file_unique_id='" + file_unique_id + '\'' +
", width=" + width +
", height=" + height +
", duration=" + duration +
", thumbnail=" + thumbnail +
", file_name='" + file_name + '\'' +
", mime_type='" + mime_type + '\'' +
", file_size=" + file_size +
'}';
}
}