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

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

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

import lombok.Data;

import java.util.List;

@Data
public class ChannelPointsGain {
    private String userId;
    private String channelId;
    private Integer totalPoints;
    private Integer baselinePoints;
    private String reasonCode;
    private List multipliers;

    @Data
    public static class PointGainMultiplier {
        private String reasonCode;
        private Double factor;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy