![JAR search and dependency download from the Maven repository](/logo.png)
com.pusher.client.channel.impl.message.PresenceSubscriptionData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pusher-java-client Show documentation
Show all versions of pusher-java-client Show documentation
This is a Java client library for Pusher, targeted at core Java and Android.
The newest version!
package com.pusher.client.channel.impl.message;
import com.google.gson.annotations.SerializedName;
import java.util.List;
import java.util.Map;
public class PresenceSubscriptionData {
@SerializedName("presence")
public PresenceData presence;
public List getIds() {
return presence.ids;
}
public Map getHash() {
return presence.hash;
}
static class PresenceData {
@SerializedName("count")
public Integer count;
@SerializedName("ids")
public List ids;
@SerializedName("hash")
public Map hash;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy