{ "seen": Boolean, "_id": String, // Notification 자체의 id "author": User, // 알림을 생성한 사람의 User 객체 id "user": User | String, // 알림을 받는 사람의 User 객체 id "post": Nullable<String>, // 특정 Post의 id "follow": Optional<Follow>, // Follow 객체의 id "like": Optional<Like> "comment": Optional<Comment>, // Comment 객체의 id ? or Comment 객체 자체 "message": Optional<String>, // Messsage 객체의 id "createdAt": String, "updatedAt": String }