-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathOut.java
More file actions
49 lines (40 loc) · 1.37 KB
/
Out.java
File metadata and controls
49 lines (40 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package io.quicktype;
import java.util.Map;
import com.fasterxml.jackson.annotation.*;
public class Out {
private boolean spent;
private long txIndex;
private long type;
private String addr;
private long value;
private long n;
private String script;
@JsonProperty("spent")
public boolean getSpent() { return spent; }
@JsonProperty("spent")
public void setSpent(boolean value) { this.spent = value; }
@JsonProperty("tx_index")
public long getTxIndex() { return txIndex; }
@JsonProperty("tx_index")
public void setTxIndex(long value) { this.txIndex = value; }
@JsonProperty("type")
public long getType() { return type; }
@JsonProperty("type")
public void setType(long value) { this.type = value; }
@JsonProperty("addr")
public String getAddr() { return addr; }
@JsonProperty("addr")
public void setAddr(String value) { this.addr = value; }
@JsonProperty("value")
public long getValue() { return value; }
@JsonProperty("value")
public void setValue(long value) { this.value = value; }
@JsonProperty("n")
public long getN() { return n; }
@JsonProperty("n")
public void setN(long value) { this.n = value; }
@JsonProperty("script")
public String getScript() { return script; }
@JsonProperty("script")
public void setScript(String value) { this.script = value; }
}