Package com.adyen.model.nexo
Class LoginResponse
- java.lang.Object
-
- com.adyen.model.nexo.LoginResponse
-
public class LoginResponse extends Object
Definition: Content of the Login Response messageType. -- Usage: It conveys Information related to the Login to processJava class for LoginResponse complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="LoginResponse"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Response" type="{}Response"/> <element name="POISystemData" type="{}POISystemData" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected POISystemDatapoiSystemDataThe Poi system data.protected ResponseresponseThe Response.
-
Constructor Summary
Constructors Constructor Description LoginResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description POISystemDatagetPOISystemData()Gets the value of the poiSystemData property.ResponsegetResponse()Gets the value of the response property.voidsetPOISystemData(POISystemData value)Sets the value of the poiSystemData property.voidsetResponse(Response value)Sets the value of the response property.
-
-
-
Field Detail
-
response
protected Response response
The Response.
-
poiSystemData
protected POISystemData poiSystemData
The Poi system data.
-
-
Method Detail
-
getResponse
public Response getResponse()
Gets the value of the response property.- Returns:
- possible object is
Response
-
setResponse
public void setResponse(Response value)
Sets the value of the response property.- Parameters:
value- allowed object isResponse
-
getPOISystemData
public POISystemData getPOISystemData()
Gets the value of the poiSystemData property.- Returns:
- possible object is
POISystemData
-
setPOISystemData
public void setPOISystemData(POISystemData value)
Sets the value of the poiSystemData property.- Parameters:
value- allowed object isPOISystemData
-
-