forked from pengrad/java-telegram-bot-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStory.java
More file actions
47 lines (37 loc) · 899 Bytes
/
Story.java
File metadata and controls
47 lines (37 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package com.pengrad.telegrambot.model;
import java.io.Serializable;
import java.util.Objects;
/**
*
* 18/08/2023.
*/
public class Story implements Serializable {
private final static long serialVersionUID = 0L;
private Chat chat;
private Long id;
public Chat chat() {
return chat;
}
public Long id() {
return id;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Story story = (Story) o;
return Objects.equals(chat, story.chat)
&& Objects.equals(id, story.id);
}
@Override
public int hashCode() {
return Objects.hash(chat, id);
}
@Override
public String toString() {
return "Story{" +
"chat=" + chat +
", id=" + id +
'}';
}
}