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

discord4j.discordjson.json.gateway.InvalidSession Maven / Gradle / Ivy

There is a newer version: 1.7.9
Show newest version
package discord4j.discordjson.json.gateway;

import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import org.immutables.value.Value;

@Value.Immutable
@Value.Style(builder = "new",
        jacksonIntegration = false,
        allParameters = true)
@JsonSerialize(as = ImmutableInvalidSession.class)
@JsonDeserialize(as = ImmutableInvalidSession.class)
public interface InvalidSession extends PayloadData {

    static ImmutableInvalidSession.Builder builder() {
        return new ImmutableInvalidSession.Builder();
    }

    boolean resumable();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy