Blame | Last modification | View Log | RSS feed
package in.shop2020.serving.model;import javax.annotation.Generated;import com.google.gson.annotations.Expose;import org.apache.commons.lang.builder.ToStringBuilder;@Generated("org.jsonschema2pojo")public class StateDocument {@Exposeprivate String from;@Exposeprivate String to;@Exposeprivate String label;@Exposeprivate String link;@Exposeprivate String msg;public String getFrom() {return from;}public void setFrom(String from) {this.from = from;}public String getTo() {return to;}public void setTo(String to) {this.to = to;}public String getLabel() {return label;}public void setLabel(String label) {this.label = label;}public String getLink() {return link;}public void setLink(String link) {this.link = link;}public String getMsg() {return msg;}public void setMsg(String msg) {this.msg = msg;}@Overridepublic String toString() {return ToStringBuilder.reflectionToString(this);}}