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

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

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

import com.fasterxml.jackson.annotation.JsonProperty;

public enum ExtensionSegment {

    @JsonProperty("broadcaster")
    BROADCASTER,

    @JsonProperty("developer")
    DEVELOPER,

    @JsonProperty("global")
    GLOBAL;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy