-
Notifications
You must be signed in to change notification settings - Fork 3
/
Input.java
31 lines (25 loc) · 919 Bytes
/
Input.java
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
package io.quicktype;
import java.util.Map;
import com.fasterxml.jackson.annotation.*;
public class Input {
private long sequence;
private String witness;
private Out prevOut;
private String script;
@JsonProperty("sequence")
public long getSequence() { return sequence; }
@JsonProperty("sequence")
public void setSequence(long value) { this.sequence = value; }
@JsonProperty("witness")
public String getWitness() { return witness; }
@JsonProperty("witness")
public void setWitness(String value) { this.witness = value; }
@JsonProperty("prev_out")
public Out getPrevOut() { return prevOut; }
@JsonProperty("prev_out")
public void setPrevOut(Out value) { this.prevOut = value; }
@JsonProperty("script")
public String getScript() { return script; }
@JsonProperty("script")
public void setScript(String value) { this.script = value; }
}