com.adyen.model.nexo.LoginResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adyen-java-api-library Show documentation
Show all versions of adyen-java-api-library Show documentation
Adyen API Client Library for Java
package com.adyen.model.nexo;
import io.swagger.v3.oas.annotations.media.Schema;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Definition: Content of the Login Response messageType. -- Usage: It conveys Information related to the Login to process
*
* Java 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>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LoginResponse", propOrder = {
"response",
"poiSystemData"
})
public class LoginResponse {
/**
* The Response.
*/
@XmlElement(name = "Response", required = true)
@Schema(description = "Result of a message request processing.")
protected Response response;
/**
* The Poi system data.
*/
@XmlElement(name = "POISystemData")
@Schema(description = "Information related to the POI System --Rule: if Response.Result is Success")
protected POISystemData poiSystemData;
/**
* Gets the value of the response property.
*
* @return possible object is {@link Response }
*/
public Response getResponse() {
return response;
}
/**
* Sets the value of the response property.
*
* @param value allowed object is {@link Response }
*/
public void setResponse(Response value) {
this.response = value;
}
/**
* Gets the value of the poiSystemData property.
*
* @return possible object is {@link POISystemData }
*/
public POISystemData getPOISystemData() {
return poiSystemData;
}
/**
* Sets the value of the poiSystemData property.
*
* @param value allowed object is {@link POISystemData }
*/
public void setPOISystemData(POISystemData value) {
this.poiSystemData = value;
}
}