mirror of
https://github.com/gosticks/iota.lib.java.git
synced 2026-09-16 21:20:25 +00:00
added ReplayBundleResponse
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
package jota.dto.response;
|
||||
|
||||
/**
|
||||
* Created by pinpong on 01.01.17.
|
||||
*/
|
||||
public class ReplayBundleResponse extends AbstractResponse {
|
||||
|
||||
private Boolean successfully;
|
||||
|
||||
public static ReplayBundleResponse create(Boolean successfully) {
|
||||
ReplayBundleResponse res = new ReplayBundleResponse();
|
||||
res.successfully = successfully;
|
||||
return res;
|
||||
}
|
||||
|
||||
public Boolean getSuccessfully() {
|
||||
return successfully;
|
||||
}
|
||||
|
||||
public void setSuccessfully(Boolean successfully) {
|
||||
this.successfully = successfully;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user