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

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

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

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

@Value.Immutable
@JsonSerialize(as = ImmutableResolvedChannelData.class)
@JsonDeserialize(as = ImmutableResolvedChannelData.class)
public interface ResolvedChannelData {

    static ImmutableResolvedChannelData.Builder builder() {
        return ImmutableResolvedChannelData.builder();
    }

    String id();

    String name();

    int type();

    String permissions();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy