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

com.github.twitch4j.helix.domain.Chatter Maven / Gradle / Ivy

package com.github.twitch4j.helix.domain;

import lombok.AccessLevel;
import lombok.Data;
import lombok.Setter;

@Data
@Setter(AccessLevel.PRIVATE)
public class Chatter {

    /**
     * The ID of a user that’s connected to the broadcaster’s chat room.
     */
    private String userId;

    /**
     * The login name of a user that’s connected to the broadcaster’s chat room.
     */
    private String userLogin;

    /**
     * The display name of a user that’s connected to the broadcaster’s chat room.
     */
    private String userName;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy