osu-api-v2-js
    Preparing search index...

    Interface WithSender

    interface WithSender {
        channel_id: number;
        content: string;
        is_action: boolean;
        message_id: number;
        sender: User;
        sender_id: number;
        timestamp: Date;
        type: string;
        uuid?: null | string;
    }

    Hierarchy

    Index

    Properties

    channel_id: number
    content: string
    is_action: boolean
    message_id: number
    sender: User
    sender_id: number
    timestamp: Date

    Unlike the timestamp of a default Message, it is a Date object!

    type: string

    Like "action", "markdown", "plain"

    uuid?: null | string