com.github.sheigutn.pushbullet.items.push.sendable.defaults.SendableNotePush Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pushbullet-java-8 Show documentation
Show all versions of pushbullet-java-8 Show documentation
Pushbullet Library for Java 8
The newest version!
package com.github.sheigutn.pushbullet.items.push.sendable.defaults;
import com.github.sheigutn.pushbullet.items.push.PushType;
import com.github.sheigutn.pushbullet.items.push.sendable.SendablePush;
import lombok.Getter;
import lombok.ToString;
import lombok.experimental.Accessors;
@Accessors(chain = true)
@Getter
@ToString(callSuper = true)
public class SendableNotePush extends SendablePush {
/**
* The title for this push
*/
private String title;
/**
* The body for this push
*/
private String body;
public SendableNotePush() {
super(PushType.NOTE);
}
/**
*
* @param title The title for this push
* @param body The body for this push
*/
public SendableNotePush(String title, String body) {
this();
this.title = title;
this.body = body;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy