net.authorize.api.contract.v1.ProcessingOptions Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.11.14 at 11:09:15 AM IST
//
package net.authorize.api.contract.v1;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for processingOptions complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="processingOptions">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="isFirstRecurringPayment" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="isFirstSubsequentAuth" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="isSubsequentAuth" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="isStoredCredentials" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "processingOptions", propOrder = {
"isFirstRecurringPayment",
"isFirstSubsequentAuth",
"isSubsequentAuth",
"isStoredCredentials"
})
public class ProcessingOptions {
protected Boolean isFirstRecurringPayment;
protected Boolean isFirstSubsequentAuth;
protected Boolean isSubsequentAuth;
protected Boolean isStoredCredentials;
/**
* Gets the value of the isFirstRecurringPayment property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsFirstRecurringPayment() {
return isFirstRecurringPayment;
}
/**
* Sets the value of the isFirstRecurringPayment property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsFirstRecurringPayment(Boolean value) {
this.isFirstRecurringPayment = value;
}
/**
* Gets the value of the isFirstSubsequentAuth property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsFirstSubsequentAuth() {
return isFirstSubsequentAuth;
}
/**
* Sets the value of the isFirstSubsequentAuth property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsFirstSubsequentAuth(Boolean value) {
this.isFirstSubsequentAuth = value;
}
/**
* Gets the value of the isSubsequentAuth property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsSubsequentAuth() {
return isSubsequentAuth;
}
/**
* Sets the value of the isSubsequentAuth property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsSubsequentAuth(Boolean value) {
this.isSubsequentAuth = value;
}
/**
* Gets the value of the isStoredCredentials property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsStoredCredentials() {
return isStoredCredentials;
}
/**
* Sets the value of the isStoredCredentials property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsStoredCredentials(Boolean value) {
this.isStoredCredentials = value;
}
}