Package com.adyen.model.nexo
Class EnableServiceRequest
- java.lang.Object
-
- com.adyen.model.nexo.EnableServiceRequest
-
public class EnableServiceRequest extends Object
Definition: Content of the Enable Service Request messageType. -- Usage: It conveys the services that will be enabled for the POI Terminal without the request of the Sale System, and a possible invitation for the Customer to start the services.Java class for EnableServiceRequest complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="EnableServiceRequest"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="ServicesEnabled" type="{}ServicesEnabled" minOccurs="0"/> <element name="DisplayOutput" type="{}DisplayOutput" minOccurs="0"/> </sequence> <attribute name="TransactionAction" use="required" type="{}TransactionActionType" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected DisplayOutputdisplayOutputThe Display output.protected List<ServicesEnabledType>servicesEnabledThe Services enabled.protected TransactionActionTypetransactionActionThe Transaction action.
-
Constructor Summary
Constructors Constructor Description EnableServiceRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DisplayOutputgetDisplayOutput()Gets the value of the displayOutput property.List<ServicesEnabledType>getServicesEnabled()Gets the value of the servicesEnabled property.TransactionActionTypegetTransactionAction()Gets the value of the transactionAction property.voidsetDisplayOutput(DisplayOutput value)Sets the value of the displayOutput property.voidsetTransactionAction(TransactionActionType value)Sets the value of the transactionAction property.
-
-
-
Field Detail
-
servicesEnabled
protected List<ServicesEnabledType> servicesEnabled
The Services enabled.
-
displayOutput
protected DisplayOutput displayOutput
The Display output.
-
transactionAction
protected TransactionActionType transactionAction
The Transaction action.
-
-
Method Detail
-
getServicesEnabled
public List<ServicesEnabledType> getServicesEnabled()
Gets the value of the servicesEnabled 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
setmethod for the servicesEnabled property.For example, to add a new item, do as follows:
getServicesEnabled().add(newItem);Objects of the following type(s) are allowed in the list
ServicesEnabledType- Returns:
- the services enabled
-
getDisplayOutput
public DisplayOutput getDisplayOutput()
Gets the value of the displayOutput property.- Returns:
- possible object is
DisplayOutput
-
setDisplayOutput
public void setDisplayOutput(DisplayOutput value)
Sets the value of the displayOutput property.- Parameters:
value- allowed object isDisplayOutput
-
getTransactionAction
public TransactionActionType getTransactionAction()
Gets the value of the transactionAction property.- Returns:
- possible object is
TransactionActionType
-
setTransactionAction
public void setTransactionAction(TransactionActionType value)
Sets the value of the transactionAction property.- Parameters:
value- allowed object isTransactionActionType
-
-