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

com.github.twitch4j.eventsub.domain.SharedChatParticipant Maven / Gradle / Ivy

The newest version!
package com.github.twitch4j.eventsub.domain;

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

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

    /**
     * The User ID of the participant channel.
     */
    private String broadcasterUserId;

    /**
     * The display name of the participant channel.
     */
    private String broadcasterUserName;

    /**
     * The username of the participant channel.
     */
    private String broadcasterUserLogin;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy