package th.co.ais.ssbsrfc.instance; import java.util.List; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; @XmlType (name="AdjustmentRequestRes",propOrder={"acctKey","adjustmentInfo"}) public class AdjustmentRequestRes { private String AcctKey; private List AdjustmentInfo; @XmlElement(name="AcctKey",namespace="http://www.huawei.com/bme/cbsinterface/arservices") public String getAcctKey() { return AcctKey; } public void setAcctKey(String AcctKey) { this.AcctKey = AcctKey; } @XmlElement(name="AdjustmentInfo",namespace="http://www.huawei.com/bme/cbsinterface/arservices") public List getAdjustmentInfo() { return AdjustmentInfo; } public void setAdjustmentInfo(List adjustmentInfo) { AdjustmentInfo = adjustmentInfo; } }