com.omgm.speedy.eps.soap.model.ParamOptionsBeforePayment Maven / Gradle / Ivy
package com.omgm.speedy.eps.soap.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for paramOptionsBeforePayment complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="paramOptionsBeforePayment">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="open" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
* @since 2.3.0
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "paramOptionsBeforePayment", propOrder = {
"open"
})
public class ParamOptionsBeforePayment {
/**
* Open before payment option
*/
protected boolean open;
/**
* Gets the value of the open property.
* @return Open before payment option
*/
public boolean isOpen() {
return open;
}
/**
* Sets the value of the open property.
* @param open Open before payment option
*/
public void setOpen(boolean open) {
this.open = open;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy