com.pubnub.api.models.consumer.access_manager.PNAccessManagerKeysData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pubnub Show documentation
Show all versions of pubnub Show documentation
PubNub is a cross-platform client-to-client (1:1 and 1:many) push service in the cloud, capable of
broadcasting real-time messages to millions of web and mobile clients simultaneously, in less than a quarter
second!
// Generated by delombok at Mon Dec 12 08:48:14 PST 2016
package com.pubnub.api.models.consumer.access_manager;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Map;
@JsonIgnoreProperties(ignoreUnknown = true)
public class PNAccessManagerKeysData {
@JsonProperty("auths")
private Map authKeys;
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
public Map getAuthKeys() {
return this.authKeys;
}
}