All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bytekast.netsuite.client.Promotions Maven / Gradle / Ivy

The newest version!

package com.bytekast.netsuite.client;

import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for Promotions complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="Promotions">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="promoCode" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="couponCode" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Promotions", namespace = "urn:sales_2017_1.transactions.webservices.netsuite.com", propOrder = { "promoCode", "couponCode" }) public class Promotions implements Serializable { protected RecordRef promoCode; protected RecordRef couponCode; /** * 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 couponCode property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getCouponCode() { return couponCode; } /** * Sets the value of the couponCode property. * * @param value * allowed object is * {@link RecordRef } * */ public void setCouponCode(RecordRef value) { this.couponCode = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy