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

com.amazon.webservices.awsecommerceservice.Promotion Maven / Gradle / Ivy

The newest version!

package com.amazon.webservices.awsecommerceservice;

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


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Summary" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="PromotionId" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *                   <element name="Category" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                   <element name="StartDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                   <element name="EndDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                   <element name="EligibilityRequirementDescription" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                   <element name="BenefitDescription" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                   <element name="TermsAndConditions" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "summary" }) @XmlRootElement(name = "Promotion") public class Promotion implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "Summary") protected Promotion.Summary summary; /** * Gets the value of the summary property. * * @return * possible object is * {@link Promotion.Summary } * */ public Promotion.Summary getSummary() { return summary; } /** * Sets the value of the summary property. * * @param value * allowed object is * {@link Promotion.Summary } * */ public void setSummary(Promotion.Summary value) { this.summary = value; } /** *

Java class for anonymous complex type. * *

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

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *         <element name="PromotionId" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *         <element name="Category" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *         <element name="StartDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *         <element name="EndDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *         <element name="EligibilityRequirementDescription" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *         <element name="BenefitDescription" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *         <element name="TermsAndConditions" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "promotionId", "category", "startDate", "endDate", "eligibilityRequirementDescription", "benefitDescription", "termsAndConditions" }) public static class Summary implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "PromotionId", required = true) protected String promotionId; @XmlElement(name = "Category") protected String category; @XmlElement(name = "StartDate") protected String startDate; @XmlElement(name = "EndDate") protected String endDate; @XmlElement(name = "EligibilityRequirementDescription") protected String eligibilityRequirementDescription; @XmlElement(name = "BenefitDescription") protected String benefitDescription; @XmlElement(name = "TermsAndConditions") protected String termsAndConditions; /** * Gets the value of the promotionId property. * * @return * possible object is * {@link String } * */ public String getPromotionId() { return promotionId; } /** * Sets the value of the promotionId property. * * @param value * allowed object is * {@link String } * */ public void setPromotionId(String value) { this.promotionId = value; } /** * Gets the value of the category property. * * @return * possible object is * {@link String } * */ public String getCategory() { return category; } /** * Sets the value of the category property. * * @param value * allowed object is * {@link String } * */ public void setCategory(String value) { this.category = value; } /** * Gets the value of the startDate property. * * @return * possible object is * {@link String } * */ public String getStartDate() { return startDate; } /** * Sets the value of the startDate property. * * @param value * allowed object is * {@link String } * */ public void setStartDate(String value) { this.startDate = value; } /** * Gets the value of the endDate property. * * @return * possible object is * {@link String } * */ public String getEndDate() { return endDate; } /** * Sets the value of the endDate property. * * @param value * allowed object is * {@link String } * */ public void setEndDate(String value) { this.endDate = value; } /** * Gets the value of the eligibilityRequirementDescription property. * * @return * possible object is * {@link String } * */ public String getEligibilityRequirementDescription() { return eligibilityRequirementDescription; } /** * Sets the value of the eligibilityRequirementDescription property. * * @param value * allowed object is * {@link String } * */ public void setEligibilityRequirementDescription(String value) { this.eligibilityRequirementDescription = value; } /** * Gets the value of the benefitDescription property. * * @return * possible object is * {@link String } * */ public String getBenefitDescription() { return benefitDescription; } /** * Sets the value of the benefitDescription property. * * @param value * allowed object is * {@link String } * */ public void setBenefitDescription(String value) { this.benefitDescription = value; } /** * Gets the value of the termsAndConditions property. * * @return * possible object is * {@link String } * */ public String getTermsAndConditions() { return termsAndConditions; } /** * Sets the value of the termsAndConditions property. * * @param value * allowed object is * {@link String } * */ public void setTermsAndConditions(String value) { this.termsAndConditions = value; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy