com.microsoft.bingads.v13.customermanagement.DateRange Maven / Gradle / Ivy
package com.microsoft.bingads.v13.customermanagement;
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 DateRange complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DateRange", namespace = "https://bingads.microsoft.com/Customer/v13/Entities", propOrder = {
"minDate",
"maxDate"
})
public class DateRange {
@XmlElement(name = "MinDate", nillable = true)
protected String minDate;
@XmlElement(name = "MaxDate", nillable = true)
protected String maxDate;
/**
* Gets the value of the minDate property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMinDate() {
return minDate;
}
/**
* Sets the value of the minDate property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMinDate(String value) {
this.minDate = value;
}
/**
* Gets the value of the maxDate property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMaxDate() {
return maxDate;
}
/**
* Sets the value of the maxDate property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMaxDate(String value) {
this.maxDate = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy