com.ean.wsapi.hotel.v3.RateChangeInfo 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 RateChangeInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RateChangeInfo">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="beginDate" 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="rate" type="{http://www.w3.org/2001/XMLSchema}float"/>
* <element name="rawRateChangeData" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RateChangeInfo", propOrder = {
"beginDate",
"endDate",
"rate",
"rawRateChangeData"
})
public class RateChangeInfo {
protected String beginDate;
protected String endDate;
protected float rate;
protected String rawRateChangeData;
/**
* Gets the value of the beginDate property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBeginDate() {
return beginDate;
}
/**
* Sets the value of the beginDate property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBeginDate(String value) {
this.beginDate = 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 rate property.
*
*/
public float getRate() {
return rate;
}
/**
* Sets the value of the rate property.
*
*/
public void setRate(float value) {
this.rate = value;
}
/**
* Gets the value of the rawRateChangeData property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRawRateChangeData() {
return rawRateChangeData;
}
/**
* Sets the value of the rawRateChangeData property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRawRateChangeData(String value) {
this.rawRateChangeData = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy