mirror of
https://github.com/gosticks/iota.lib.java.git
synced 2025-10-16 11:45:37 +00:00
18 lines
357 B
Java
18 lines
357 B
Java
package jota.dto.response;
|
|
|
|
/**
|
|
* Response of {@link jota.dto.request.IotaAttachToTangleRequest}
|
|
**/
|
|
public class GetAttachToTangleResponse extends AbstractResponse {
|
|
|
|
private String[] trytes;
|
|
|
|
public GetAttachToTangleResponse(long duration) {
|
|
setDuration(duration);
|
|
}
|
|
|
|
public String[] getTrytes() {
|
|
return trytes;
|
|
}
|
|
}
|