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

com.bytekast.netsuite.client.PromotionCodeCurrency 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 PromotionCodeCurrency complex type. * *

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

 * <complexType name="PromotionCodeCurrency">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="currency" type="{urn:core_2017_1.platform.webservices.netsuite.com}RecordRef" minOccurs="0"/>
 *         <element name="minimumOrderAmount" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PromotionCodeCurrency", namespace = "urn:marketing_2017_1.lists.webservices.netsuite.com", propOrder = { "currency", "minimumOrderAmount" }) public class PromotionCodeCurrency implements Serializable { protected RecordRef currency; protected Double minimumOrderAmount; /** * Gets the value of the currency property. * * @return * possible object is * {@link RecordRef } * */ public RecordRef getCurrency() { return currency; } /** * Sets the value of the currency property. * * @param value * allowed object is * {@link RecordRef } * */ public void setCurrency(RecordRef value) { this.currency = value; } /** * Gets the value of the minimumOrderAmount property. * * @return * possible object is * {@link Double } * */ public Double getMinimumOrderAmount() { return minimumOrderAmount; } /** * Sets the value of the minimumOrderAmount property. * * @param value * allowed object is * {@link Double } * */ public void setMinimumOrderAmount(Double value) { this.minimumOrderAmount = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy