
tsg.ns.wsdl.coop.GiftCertificateItemAuthCodes Maven / Gradle / Ivy
package tsg.ns.wsdl.coop;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for GiftCertificateItemAuthCodes complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="GiftCertificateItemAuthCodes">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="authCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="used" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GiftCertificateItemAuthCodes", propOrder = {
"authCode",
"used"
})
public class GiftCertificateItemAuthCodes {
protected String authCode;
protected Boolean used;
/**
* Gets the value of the authCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAuthCode() {
return authCode;
}
/**
* Sets the value of the authCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAuthCode(String value) {
this.authCode = value;
}
/**
* Gets the value of the used property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isUsed() {
return used;
}
/**
* Sets the value of the used property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setUsed(Boolean value) {
this.used = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy