BoothMate API Documentation - v0.4.0
    Preparing search index...

    Interface Notification

    通知の情報

    interface Notification {
        type: "message" | "reaction";
        from: "shop" | "user";
        date: string;
        name: string;
        content: string;
        url: string;
        isRead: boolean;
    }
    Index

    Properties

    type: "message" | "reaction"

    通知の種類

    • 'message': メッセージ通知
    • 'reaction': リアクション通知
    from: "shop" | "user"

    通知の送信元の種類

    • 'shop': ショップからの通知
    • 'user': ユーザーからの通知
    date: string

    通知日時

    name: string

    通知元の名前(ショップ名やユーザー名)

    content: string

    通知内容の本文

    url: string

    通知に関連するURL

    isRead: boolean

    既読かどうか