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

com.podio.device.PushSubscription Maven / Gradle / Ivy

package com.podio.device;

public class PushSubscription {

	private long timestamp;

	private String channel;

	private String signature;

	public long getTimestamp() {
		return timestamp;
	}

	public void setTimestamp(long timestamp) {
		this.timestamp = timestamp;
	}

	public String getChannel() {
		return channel;
	}

	public void setChannel(String channel) {
		this.channel = channel;
	}

	public String getSignature() {
		return signature;
	}

	public void setSignature(String signature) {
		this.signature = signature;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy