Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
12974 manish.sha 1
package in.shop2020.serving.model;
2
 
3
import javax.annotation.Generated;
4
import com.google.gson.annotations.Expose;
5
import org.apache.commons.lang.builder.ToStringBuilder;
6
 
7
@Generated("org.jsonschema2pojo")
8
public class StateDocument {
9
 
10
    @Expose
11
    private String from;
12
    @Expose
13
    private String to;
14
    @Expose
15
    private String label;
16
    @Expose
17
    private String link;
18
    @Expose
19
    private String msg;
20
 
21
    public String getFrom() {
22
        return from;
23
    }
24
 
25
    public void setFrom(String from) {
26
        this.from = from;
27
    }
28
 
29
    public String getTo() {
30
        return to;
31
    }
32
 
33
    public void setTo(String to) {
34
        this.to = to;
35
    }
36
 
37
    public String getLabel() {
38
        return label;
39
    }
40
 
41
    public void setLabel(String label) {
42
        this.label = label;
43
    }
44
 
45
    public String getLink() {
46
        return link;
47
    }
48
 
49
    public void setLink(String link) {
50
        this.link = link;
51
    }
52
 
53
    public String getMsg() {
54
        return msg;
55
    }
56
 
57
    public void setMsg(String msg) {
58
        this.msg = msg;
59
    }
60
 
61
    @Override
62
    public String toString() {
63
        return ToStringBuilder.reflectionToString(this);
64
    }
65
 
66
}