com.adyen.model.nexo.LogoutRequest 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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Definition: Content of the Logout Request messageType. -- Usage: Empty
*
* Java class for LogoutRequest complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="LogoutRequest">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="MaintenanceAllowed" type="{}MaintenanceAllowed" default="false" />
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LogoutRequest")
public class LogoutRequest {
/**
* The Maintenance allowed.
*/
@XmlAttribute(name = "MaintenanceAllowed")
protected Boolean maintenanceAllowed;
/**
* Gets the value of the maintenanceAllowed property.
*
* @return possible object is {@link Boolean }
*/
public boolean isMaintenanceAllowed() {
if (maintenanceAllowed == null) {
return false;
} else {
return maintenanceAllowed;
}
}
/**
* Sets the value of the maintenanceAllowed property.
*
* @param value allowed object is {@link Boolean }
*/
public void setMaintenanceAllowed(Boolean value) {
this.maintenanceAllowed = value;
}
}