com.github.debugthug.xo.Reason Maven / Gradle / Ivy
package com.github.debugthug.xo;
import com.thoughtworks.xstream.annotations.XStreamAlias;
@XStreamAlias("")
public class Reason {
@XStreamAlias("soap:Text")
private Text text;
public Text getText() {
return text;
}
public void setText(Text text) {
this.text = text;
}
}