package org.tempuri.epayment.main;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* <p>Java class for ICPOrderAuthResult complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="ICPOrderAuthResult">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="RESULTCODE" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="RESULTMESG" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ICPID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ICPIP" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ICPOrderID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="ICPProdID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="MPID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="MEMO" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="AuthDateTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="AuthCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="AuthRelyDateTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ICPOrderAuthResult", propOrder = {
"resultcode",
"resultmesg",
"icpid",
"icpip",
"icpOrderID",
"icpProdID",
"mpid",
"memo",
"authDateTime",
"authCode",
"authRelyDateTime"
})
public class ICPOrderAuthResult {
@XmlElement(name = "RESULTCODE")
protected String resultcode;
@XmlElement(name = "RESULTMESG")
protected String resultmesg;
@XmlElement(name = "ICPID")
protected String icpid;
@XmlElement(name = "ICPIP")
protected String icpip;
@XmlElement(name = "ICPOrderID")
protected String icpOrderID;
@XmlElement(name = "ICPProdID")
protected String icpProdID;
@XmlElement(name = "MPID")
protected String mpid;
@XmlElement(name = "MEMO")
protected String memo;
@XmlElement(name = "AuthDateTime", required = true)
protected XMLGregorianCalendar authDateTime;
@XmlElement(name = "AuthCode")
protected String authCode;
@XmlElement(name = "AuthRelyDateTime", required = true)
protected XMLGregorianCalendar authRelyDateTime;
/**
* Gets the value of the resultcode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRESULTCODE() {
return resultcode;
}
/**
* Sets the value of the resultcode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRESULTCODE(String value) {
this.resultcode = value;
}
/**
* Gets the value of the resultmesg property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRESULTMESG() {
return resultmesg;
}
/**
* Sets the value of the resultmesg property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRESULTMESG(String value) {
this.resultmesg = value;
}
/**
* Gets the value of the icpid property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getICPID() {
return icpid;
}
/**
* Sets the value of the icpid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setICPID(String value) {
this.icpid = value;
}
/**
* Gets the value of the icpip property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getICPIP() {
return icpip;
}
/**
* Sets the value of the icpip property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setICPIP(String value) {
this.icpip = value;
}
/**
* Gets the value of the icpOrderID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getICPOrderID() {
return icpOrderID;
}
/**
* Sets the value of the icpOrderID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setICPOrderID(String value) {
this.icpOrderID = value;
}
/**
* Gets the value of the icpProdID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getICPProdID() {
return icpProdID;
}
/**
* Sets the value of the icpProdID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setICPProdID(String value) {
this.icpProdID = value;
}
/**
* Gets the value of the mpid property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMPID() {
return mpid;
}
/**
* Sets the value of the mpid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMPID(String value) {
this.mpid = value;
}
/**
* Gets the value of the memo property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMEMO() {
return memo;
}
/**
* Sets the value of the memo property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMEMO(String value) {
this.memo = value;
}
/**
* Gets the value of the authDateTime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getAuthDateTime() {
return authDateTime;
}
/**
* Sets the value of the authDateTime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setAuthDateTime(XMLGregorianCalendar value) {
this.authDateTime = value;
}
/**
* Gets the value of the authCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAuthCode() {
return authCode;
}
/**
* Sets the value of the authCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAuthCode(String value) {
this.authCode = value;
}
/**
* Gets the value of the authRelyDateTime p