
tsg.ns.wsdl.coop.GiftCertRedemption 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 GiftCertRedemption complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="GiftCertRedemption">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="authCode" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="authCodeApplied" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="authCodeAmtRemaining" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* <element name="giftCertAvailable" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GiftCertRedemption", namespace = "urn:common_2023_1.platform.webservices.netsuite.com", propOrder = {
"authCode",
"authCodeApplied",
"authCodeAmtRemaining",
"giftCertAvailable"
})
public class GiftCertRedemption {
protected RecordRef authCode;
protected Double authCodeApplied;
protected Double authCodeAmtRemaining;
protected Double giftCertAvailable;
/**
* Gets the value of the authCode property.
*
* @return
* possible object is
* {@link RecordRef }
*
*/
public RecordRef getAuthCode() {
return authCode;
}
/**
* Sets the value of the authCode property.
*
* @param value
* allowed object is
* {@link RecordRef }
*
*/
public void setAuthCode(RecordRef value) {
this.authCode = value;
}
/**
* Gets the value of the authCodeApplied property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getAuthCodeApplied() {
return authCodeApplied;
}
/**
* Sets the value of the authCodeApplied property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setAuthCodeApplied(Double value) {
this.authCodeApplied = value;
}
/**
* Gets the value of the authCodeAmtRemaining property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getAuthCodeAmtRemaining() {
return authCodeAmtRemaining;
}
/**
* Sets the value of the authCodeAmtRemaining property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setAuthCodeAmtRemaining(Double value) {
this.authCodeAmtRemaining = value;
}
/**
* Gets the value of the giftCertAvailable property.
*
* @return
* possible object is
* {@link Double }
*
*/
public Double getGiftCertAvailable() {
return giftCertAvailable;
}
/**
* Sets the value of the giftCertAvailable property.
*
* @param value
* allowed object is
* {@link Double }
*
*/
public void setGiftCertAvailable(Double value) {
this.giftCertAvailable = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy