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

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

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 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. */ @XmlElement(name = "MaintenanceAllowed") @Schema(description = "Indicates that the POI terminal is able to (or have to) go to maintenance.") 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