com.microsoft.bingads.v13.campaignmanagement.HotelLengthOfStayCriterion Maven / Gradle / Ivy
package com.microsoft.bingads.v13.campaignmanagement;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for HotelLengthOfStayCriterion complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HotelLengthOfStayCriterion", propOrder = {
"maxNights",
"minNights"
})
public class HotelLengthOfStayCriterion
extends Criterion
{
public HotelLengthOfStayCriterion() {
this.type = "HotelLengthOfStayCriterion";
}
@XmlElement(name = "MaxNights", nillable = true)
protected Integer maxNights;
@XmlElement(name = "MinNights", nillable = true)
protected Integer minNights;
/**
* Gets the value of the maxNights property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getMaxNights() {
return maxNights;
}
/**
* Sets the value of the maxNights property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setMaxNights(Integer value) {
this.maxNights = value;
}
/**
* Gets the value of the minNights property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getMinNights() {
return minNights;
}
/**
* Sets the value of the minNights property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setMinNights(Integer value) {
this.minNights = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy