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

com.github.twitch4j.eventsub.EventSubTransportMethod Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonProperty;

public enum EventSubTransportMethod {
    @JsonProperty("webhook")
    WEBHOOK,
    @JsonProperty("websocket")
    WEBSOCKET,
    @JsonProperty("conduit")
    CONDUIT;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy