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

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

package com.github.twitch4j.helix.domain;

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

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

    /**
     * The ID of the channel in which the warning will take effect.
     */
    private String broadcasterId;

    /**
     * The ID of the warned user.
     */
    private String userId;

    /**
     * The ID of the user who applied the warning.
     */
    private String moderatorId;

    /**
     * The reason provided for warning.
     */
    private String reason;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy