cb.onMediaPurchase(func)

Receive a notification when a registered member purchases media from the broadcaster. The func argument should be a function that receives 2 arguments, user and media.

Example Usage

cb.onMediaPurchase((user, media) => {
    cb.sendNotice(`${user.user} has purchased media ${media.name}`);
});

Example Output

Notice: testuser has purchased media testphotos!