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

discord4j.discordjson.json.gateway.IdentifyProperties 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
@JsonSerialize(as = ImmutableIdentifyProperties.class)
@JsonDeserialize(as = ImmutableIdentifyProperties.class)
public interface IdentifyProperties {

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

    String os();
    String browser();
    String device();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy