com.hubject.datex.energyinfrastructure.generated.facilities.PaymentMethod Maven / Gradle / Ivy
Show all versions of convert Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.1
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2022.10.06 at 11:44:34 AM CEST
//
package com.hubject.datex.energyinfrastructure.generated.facilities;
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.XmlType;
import com.hubject.datex.energyinfrastructure.generated.common.ExtensionType;
/**
* Java class for PaymentMethod complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PaymentMethod">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="paymentMeans" type="{http://datex2.eu/schema/3/facilities}_MeansOfPaymentEnum" maxOccurs="unbounded" minOccurs="0"/>
* <element name="paymentMode" type="{http://datex2.eu/schema/3/facilities}_PaymentTimingEnum" maxOccurs="unbounded" minOccurs="0"/>
* <element name="brandsAcceptedText" type="{http://datex2.eu/schema/3/facilities}BrandsAcceptedText" maxOccurs="unbounded" minOccurs="0"/>
* <element name="brandsAcceptedCodeList" type="{http://datex2.eu/schema/3/facilities}BrandsAcceptedCodeList" maxOccurs="unbounded" minOccurs="0"/>
* <element name="_paymentMethodExtension" type="{http://datex2.eu/schema/3/common}_ExtensionType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PaymentMethod", propOrder = {
"paymentMeans",
"paymentMode",
"brandsAcceptedText",
"brandsAcceptedCodeList",
"paymentMethodExtension"
})
public class PaymentMethod {
protected List paymentMeans;
protected List paymentMode;
protected List brandsAcceptedText;
protected List brandsAcceptedCodeList;
@XmlElement(name = "_paymentMethodExtension")
protected ExtensionType paymentMethodExtension;
/**
* Gets the value of the paymentMeans 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 paymentMeans property.
*
*
* For example, to add a new item, do as follows:
*
* getPaymentMeans().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link MeansOfPaymentEnum }
*
*
*/
public List getPaymentMeans() {
if (paymentMeans == null) {
paymentMeans = new ArrayList();
}
return this.paymentMeans;
}
/**
* Gets the value of the paymentMode 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 paymentMode property.
*
*
* For example, to add a new item, do as follows:
*
* getPaymentMode().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link PaymentTimingEnum }
*
*
*/
public List getPaymentMode() {
if (paymentMode == null) {
paymentMode = new ArrayList();
}
return this.paymentMode;
}
/**
* Gets the value of the brandsAcceptedText 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 brandsAcceptedText property.
*
*
* For example, to add a new item, do as follows:
*
* getBrandsAcceptedText().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link BrandsAcceptedText }
*
*
*/
public List getBrandsAcceptedText() {
if (brandsAcceptedText == null) {
brandsAcceptedText = new ArrayList();
}
return this.brandsAcceptedText;
}
/**
* Gets the value of the brandsAcceptedCodeList 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 brandsAcceptedCodeList property.
*
*
* For example, to add a new item, do as follows:
*
* getBrandsAcceptedCodeList().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link BrandsAcceptedCodeList }
*
*
*/
public List getBrandsAcceptedCodeList() {
if (brandsAcceptedCodeList == null) {
brandsAcceptedCodeList = new ArrayList();
}
return this.brandsAcceptedCodeList;
}
/**
* Gets the value of the paymentMethodExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getPaymentMethodExtension() {
return paymentMethodExtension;
}
/**
* Sets the value of the paymentMethodExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setPaymentMethodExtension(ExtensionType value) {
this.paymentMethodExtension = value;
}
}