com.payline.ws.model.GetMerchantSettingsResponse Maven / Gradle / Ivy
Show all versions of payline-java-sdk Show documentation
package com.payline.ws.model;
import java.util.ArrayList;
import java.util.List;
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 response from the
* getMerchantSettings 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="listPointOfSell">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="pointOfSell" type="{http://obj.ws.payline.experian.com}pointOfSell" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"result",
"listPointOfSell"
})
@XmlRootElement(name = "getMerchantSettingsResponse")
public class GetMerchantSettingsResponse {
@XmlElement(required = true)
protected Result result;
@XmlElement(required = true)
protected GetMerchantSettingsResponse.ListPointOfSell listPointOfSell;
/**
* 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 listPointOfSell property.
*
* @return
* possible object is
* {@link GetMerchantSettingsResponse.ListPointOfSell }
*
*/
public GetMerchantSettingsResponse.ListPointOfSell getListPointOfSell() {
return listPointOfSell;
}
/**
* Sets the value of the listPointOfSell property.
*
* @param value
* allowed object is
* {@link GetMerchantSettingsResponse.ListPointOfSell }
*
*/
public void setListPointOfSell(GetMerchantSettingsResponse.ListPointOfSell value) {
this.listPointOfSell = value;
}
/**
* 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="pointOfSell" type="{http://obj.ws.payline.experian.com}pointOfSell" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"pointOfSell"
})
public static class ListPointOfSell {
protected List pointOfSell;
/**
* Gets the value of the pointOfSell property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the pointOfSell property.
*
*
* For example, to add a new item, do as follows:
*
* getPointOfSell().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link PointOfSell }
*
*
*/
public List getPointOfSell() {
if (pointOfSell == null) {
pointOfSell = new ArrayList();
}
return this.pointOfSell;
}
}
}