All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.adyen.model.nexo.LogoutRequest Maven / Gradle / Ivy

There is a newer version: 28.4.0
Show newest version
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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy