com.pengrad.telegrambot.model.PhotoSize 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;
/**
* stas
* 8/4/15.
*/
public class PhotoSize implements Serializable {
private final static long serialVersionUID = 0L;
private String file_id;
private String file_unique_id;
private Integer width;
private Integer height;
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 Long fileSize() {
return file_size;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
PhotoSize photoSize = (PhotoSize) o;
if (file_id != null ? !file_id.equals(photoSize.file_id) : photoSize.file_id != null) return false;
if (file_unique_id != null ? !file_unique_id.equals(photoSize.file_unique_id) : photoSize.file_unique_id != null)
return false;
if (width != null ? !width.equals(photoSize.width) : photoSize.width != null) return false;
if (height != null ? !height.equals(photoSize.height) : photoSize.height != null) return false;
return file_size != null ? file_size.equals(photoSize.file_size) : photoSize.file_size == null;
}
@Override
public int hashCode() {
return file_id != null ? file_id.hashCode() : 0;
}
@Override
public String toString() {
return "PhotoSize{" +
"file_id='" + file_id + '\'' +
", file_unique_id='" + file_unique_id + '\'' +
", width=" + width +
", height=" + height +
", file_size=" + file_size +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy