com.payline.ws.model.DoRecurrentWalletPaymentResponse 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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
*
* This element is the reponse from the
* doRecurrentWalletPayment method
*
*
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="result" type="{http://obj.ws.payline.experian.com}result"/>
* <element name="paymentRecordId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="billingRecordList" type="{http://obj.ws.payline.experian.com}billingRecordList"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"result",
"paymentRecordId",
"billingRecordList"
})
@XmlRootElement(name = "doRecurrentWalletPaymentResponse")
public class DoRecurrentWalletPaymentResponse {
@XmlElement(required = true)
protected Result result;
@XmlElement(required = true)
protected String paymentRecordId;
@XmlElement(required = true)
protected BillingRecordList billingRecordList;
/**
* Gets the value of the result property.
*
* @return
* possible object is
* {@link Result }
*
*/
public Result getResult() {
return result;
}
/**
* Sets the value of the result property.
*
* @param value
* allowed object is
* {@link Result }
*
*/
public void setResult(Result value) {
this.result = value;
}
/**
* Gets the value of the paymentRecordId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPaymentRecordId() {
return paymentRecordId;
}
/**
* Sets the value of the paymentRecordId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPaymentRecordId(String value) {
this.paymentRecordId = value;
}
/**
* Gets the value of the billingRecordList property.
*
* @return
* possible object is
* {@link BillingRecordList }
*
*/
public BillingRecordList getBillingRecordList() {
return billingRecordList;
}
/**
* Sets the value of the billingRecordList property.
*
* @param value
* allowed object is
* {@link BillingRecordList }
*
*/
public void setBillingRecordList(BillingRecordList value) {
this.billingRecordList = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy