com.ean.wsapi.hotel.v3.CouponInformation Maven / Gradle / Ivy
package com.ean.wsapi.hotel.v3;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for CouponInformation complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CouponInformation">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="couponCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="couponDiscount" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="couponEmail" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CouponInformation", propOrder = {
"couponCode",
"couponDiscount",
"couponEmail"
})
public class CouponInformation {
protected String couponCode;
protected String couponDiscount;
protected String couponEmail;
/**
* Gets the value of the couponCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCouponCode() {
return couponCode;
}
/**
* Sets the value of the couponCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCouponCode(String value) {
this.couponCode = value;
}
/**
* Gets the value of the couponDiscount property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCouponDiscount() {
return couponDiscount;
}
/**
* Sets the value of the couponDiscount property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCouponDiscount(String value) {
this.couponDiscount = value;
}
/**
* Gets the value of the couponEmail property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCouponEmail() {
return couponEmail;
}
/**
* Sets the value of the couponEmail property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCouponEmail(String value) {
this.couponEmail = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy