package app.fedilab.fedilabtube.client.entities; import java.util.Date; public class PeertubeNotification { private String id; private boolean read; private Date updatedAt, createdAt; private int type; private PeertubeComment peertubeComment; private PeertubeVideoNotification peertubeVideoNotification; private PeertubeActorFollow peertubeActorFollow; public PeertubeNotification() { } public String getId() { return id; } public void setId(String id) { this.id = id; } public boolean isRead() { return read; } public void setRead(boolean read) { this.read = read; } public Date getUpdatedAt() { return updatedAt; } public void setUpdatedAt(Date updatedAt) { this.updatedAt = updatedAt; } public int getType() { return type; } public void setType(int type) { this.type = type; } public PeertubeComment getPeertubeComment() { return peertubeComment; } public void setPeertubeComment(PeertubeComment peertubeComment) { this.peertubeComment = peertubeComment; } public PeertubeActorFollow getPeertubeActorFollow() { return peertubeActorFollow; } public void setPeertubeActorFollow(PeertubeActorFollow peertubeActorFollow) { this.peertubeActorFollow = peertubeActorFollow; } public PeertubeVideoNotification getPeertubeVideoNotification() { return peertubeVideoNotification; } public void setPeertubeVideoNotification(PeertubeVideoNotification peertubeVideoNotification) { this.peertubeVideoNotification = peertubeVideoNotification; } public Date getCreatedAt() { return createdAt; } public void setCreatedAt(Date createdAt) { this.createdAt = createdAt; } }