com.payline.ws.model.RoutingRule 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 a routingRule associated with a Payment Facilitator
*
*
* Java class for routingRule complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="routingRule">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="sourceContractNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="targetContractNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "routingRule", namespace = "http://obj.ws.payline.experian.com", propOrder = {
"id",
"sourceContractNumber",
"targetContractNumber"
})
public class RoutingRule {
@XmlElement(nillable = true)
protected String id;
@XmlElement(nillable = true)
protected String sourceContractNumber;
@XmlElement(nillable = true)
protected String targetContractNumber;
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
/**
* Gets the value of the sourceContractNumber property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSourceContractNumber() {
return sourceContractNumber;
}
/**
* Sets the value of the sourceContractNumber property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSourceContractNumber(String value) {
this.sourceContractNumber = value;
}
/**
* Gets the value of the targetContractNumber property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTargetContractNumber() {
return targetContractNumber;
}
/**
* Sets the value of the targetContractNumber property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTargetContractNumber(String value) {
this.targetContractNumber = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy