
com.github.sheigutn.pushbullet.items.push.sendable.defaults.SendableAddressPush 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)
@Deprecated
public class SendableAddressPush extends SendablePush {
/**
* The name of the address
*/
private String name;
/**
* The address
*/
private String address;
public SendableAddressPush() {
super(PushType.ADDRESS);
}
public SendableAddressPush(String name, String address) {
this();
this.name = name;
this.address = address;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy