com.facebook.api.schema.PagePaymentOptions Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.0 in JDK 1.6
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2008.02.10 at 10:42:34 PM PST
//
package com.facebook.api.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;
/**
* Java class for page_payment_options complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="page_payment_options">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="cash_only" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="visa" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="amex" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="mastercard" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="discover" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "page_payment_options", propOrder = {
"cashOnly",
"visa",
"amex",
"mastercard",
"discover"
})
public class PagePaymentOptions {
@XmlElement(name = "cash_only")
protected boolean cashOnly;
protected boolean visa;
protected boolean amex;
protected boolean mastercard;
protected boolean discover;
/**
* Gets the value of the cashOnly property.
*
*/
public boolean isCashOnly() {
return cashOnly;
}
/**
* Sets the value of the cashOnly property.
*
*/
public void setCashOnly(boolean value) {
this.cashOnly = value;
}
/**
* Gets the value of the visa property.
*
*/
public boolean isVisa() {
return visa;
}
/**
* Sets the value of the visa property.
*
*/
public void setVisa(boolean value) {
this.visa = value;
}
/**
* Gets the value of the amex property.
*
*/
public boolean isAmex() {
return amex;
}
/**
* Sets the value of the amex property.
*
*/
public void setAmex(boolean value) {
this.amex = value;
}
/**
* Gets the value of the mastercard property.
*
*/
public boolean isMastercard() {
return mastercard;
}
/**
* Sets the value of the mastercard property.
*
*/
public void setMastercard(boolean value) {
this.mastercard = value;
}
/**
* Gets the value of the discover property.
*
*/
public boolean isDiscover() {
return discover;
}
/**
* Sets the value of the discover property.
*
*/
public void setDiscover(boolean value) {
this.discover = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy