@@ -34,6 +34,7 @@ public enum Type {
34
34
private ChatPhoto photo ;
35
35
private String [] active_usernames ;
36
36
private String emoji_status_custom_emoji_id ;
37
+ private Integer emoji_status_expiration_date ;
37
38
private String bio ;
38
39
private Boolean has_private_forwards ;
39
40
private Boolean has_restricted_voice_and_video_messages ;
@@ -93,6 +94,10 @@ public String getEmojiStatusCustomEmojiId() {
93
94
return emoji_status_custom_emoji_id ;
94
95
}
95
96
97
+ public Integer emojiStatusExpirationDate () {
98
+ return emoji_status_expiration_date ;
99
+ }
100
+
96
101
public String bio () {
97
102
return bio ;
98
103
}
@@ -180,6 +185,7 @@ public boolean equals(Object o) {
180
185
Objects .equals (photo , chat .photo ) &&
181
186
Arrays .equals (active_usernames , chat .active_usernames ) &&
182
187
Objects .equals (emoji_status_custom_emoji_id , chat .emoji_status_custom_emoji_id ) &&
188
+ Objects .equals (emoji_status_expiration_date , chat .emoji_status_expiration_date ) &&
183
189
Objects .equals (bio , chat .bio ) &&
184
190
Objects .equals (has_private_forwards , chat .has_private_forwards ) &&
185
191
Objects .equals (has_restricted_voice_and_video_messages , chat .has_restricted_voice_and_video_messages ) &&
@@ -218,6 +224,7 @@ public String toString() {
218
224
", photo=" + photo +
219
225
", active_usernames=" + Arrays .toString (active_usernames ) +
220
226
", emoji_status_custom_emoji_id='" + emoji_status_custom_emoji_id + '\'' +
227
+ ", emoji_status_expiration_date='" + emoji_status_expiration_date + '\'' +
221
228
", bio='" + bio + '\'' +
222
229
", has_private_forwards=" + has_private_forwards +
223
230
", has_restricted_voice_and_video_messages=" + has_restricted_voice_and_video_messages +
0 commit comments