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

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

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

import lombok.AccessLevel;
import lombok.Data;
import lombok.Setter;
import org.jetbrains.annotations.Nullable;

@Data
@Setter(AccessLevel.PRIVATE)
public class AutomodLevelsModified {
    private String createdBy;
    private String createdByUserId;
    private AutomodLevels previousAutomodLevels;
    private AutomodLevels updatedAutomodLevels;

    /**
     * Configuration of the Automod category sensitivity levels, between 0 and 4 (inclusive) each.
     */
    @Data
    @Setter(AccessLevel.PRIVATE)
    public static class AutomodLevels {
        @Nullable
        private Integer overallLevel;
        private Integer ableismLevel;
        private Integer aggressionLevel;
        private Integer homophobiaLevel;
        private Integer misogynyLevel;
        private Integer nameCallingLevel;
        private Integer profanityLevel;
        private Integer racismLevel;
        private Integer sexualityLevel;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy