interface DiscussionLockORUnlock {
    beatmapset: WithUserHype;
    comment: WithDiscussionidPostid;
    created_at: Date;
    discussion?: null | WithStartingpost;
    id: number;
    type: "discussion_lock" | "discussion_unlock";
    user_id: number;
}

Hierarchy

  • WithUserid
  • WithBeatmapset
  • WithOptionalDiscussion
    • DiscussionLockORUnlock

Properties

beatmapset: WithUserHype
created_at: Date
discussion?: null | WithStartingpost
id: number
type: "discussion_lock" | "discussion_unlock"

"approve" is currently not used, it's here just in case that ever changes https://github.com/ppy/osu-web/blob/master/app/Models/BeatmapsetEvent.php

user_id: number