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

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

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

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

@Data
@Setter(value = AccessLevel.PRIVATE)
public class BlockedUser {

    /**
     * User ID of the blocked user.
     */
    private String userId;

    /**
     * Login of the blocked user.
     */
    private String userLogin;

    /**
     * Display name of the blocked user.
     */
    private String displayName;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy