com.payline.ws.model.Scoring Maven / Gradle / Ivy
package com.payline.ws.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
*
* This element contains information about the
* scoring
*
*
* Java class for scoring complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="scoring">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="partnerId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="orderId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="response" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="errorMessage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "scoring", namespace = "http://obj.ws.payline.experian.com", propOrder = {
"partnerId",
"orderId",
"value",
"response",
"errorMessage"
})
public class Scoring {
@XmlElement(nillable = true)
protected String partnerId;
@XmlElement(nillable = true)
protected String orderId;
@XmlElement(nillable = true)
protected String value;
@XmlElement(nillable = true)
protected String response;
@XmlElement(nillable = true)
protected String errorMessage;
/**
* Gets the value of the partnerId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPartnerId() {
return partnerId;
}
/**
* Sets the value of the partnerId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPartnerId(String value) {
this.partnerId = value;
}
/**
* Gets the value of the orderId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOrderId() {
return orderId;
}
/**
* Sets the value of the orderId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOrderId(String value) {
this.orderId = value;
}
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValue(String value) {
this.value = value;
}
/**
* Gets the value of the response property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getResponse() {
return response;
}
/**
* Sets the value of the response property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setResponse(String value) {
this.response = value;
}
/**
* Gets the value of the errorMessage property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getErrorMessage() {
return errorMessage;
}
/**
* Sets the value of the errorMessage property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setErrorMessage(String value) {
this.errorMessage = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy