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

discord4j.discordjson.json.TokenRevokeRequest Maven / Gradle / Ivy

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

import org.immutables.value.Value;

@Value.Immutable
public abstract class TokenRevokeRequest {

    public static ImmutableTokenRevokeRequest.Builder builder() {
        return ImmutableTokenRevokeRequest.builder();
    }

    public abstract long clientId();

    public abstract String clientSecret();

    public abstract String token();

    @Override
    public String toString() {
        return "token=" + token();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy