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

com.podio.notification.InboxNewCount Maven / Gradle / Ivy

There is a newer version: 0.7.9
Show newest version
package com.podio.notification;

import org.codehaus.jackson.annotate.JsonProperty;

public class InboxNewCount {

	private int newNotifications;

	public int getNewNotifications() {
		return newNotifications;
	}

	@JsonProperty("new")
	public void setNewNotifications(int newNotifications) {
		this.newNotifications = newNotifications;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy