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

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

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

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

@Data
@Setter(AccessLevel.PRIVATE)
@NoArgsConstructor
public class Contribution {

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

    /**
     * The display name of the user.
     */
    private String userName;

    /**
     * The login name of the user.
     */
    private String userLogin;

    /**
     * Type of contribution.
     */
    private Type type;

    /**
     * The total contributed.
     */
    private Integer total;

    public enum Type {
        BITS,
        SUBSCRIPTION,
        OTHER;

        @Override
        public String toString() {
            return this.name().toLowerCase();
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy