
tsg.ns.wsdl.coop.PartnerPromoCode Maven / Gradle / Ivy
package tsg.ns.wsdl.coop;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for PartnerPromoCode complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PartnerPromoCode">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="promoCode" type="{urn:core_2023_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
* <element name="discount" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="endDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PartnerPromoCode", namespace = "urn:relationships_2023_1.lists.webservices.netsuite.com", propOrder = {
"promoCode",
"discount",
"endDate"
})
public class PartnerPromoCode {
protected RecordRef promoCode;
protected String discount;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar endDate;
/**
* Gets the value of the promoCode property.
*
* @return
* possible object is
* {@link RecordRef }
*
*/
public RecordRef getPromoCode() {
return promoCode;
}
/**
* Sets the value of the promoCode property.
*
* @param value
* allowed object is
* {@link RecordRef }
*
*/
public void setPromoCode(RecordRef value) {
this.promoCode = value;
}
/**
* Gets the value of the discount property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDiscount() {
return discount;
}
/**
* Sets the value of the discount property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDiscount(String value) {
this.discount = value;
}
/**
* Gets the value of the endDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getEndDate() {
return endDate;
}
/**
* Sets the value of the endDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setEndDate(XMLGregorianCalendar value) {
this.endDate = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy