All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.twitch4j.pubsub.domain.BitsBadgeData Maven / Gradle / Ivy

There is a newer version: 1.23.0
Show newest version
package com.github.twitch4j.pubsub.domain;

import lombok.Data;

@Data
public class BitsBadgeData {

    /**
     * The id for the user that earned a new badge
     */
    private String userId;

    /**
     * The login name for the user that earned a new badge
     */
    private String userName;

    /**
     * The id for the channel in which the badge was earned
     */
    private String channelId;

    /**
     * The login name for the channel in which the badge was earned
     */
    private String channelName;

    /**
     * The number of bits associated with the new badge
     */
    private Integer badgeTier;

    /**
     * The accompanying message when the badge was shared
     */
    private String chatMessage;

    /**
     * RFC 3339 timestamp of when the bits badge was awarded
     */
    private String time;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy