com.microsoft.bingads.v13.campaignmanagement.GetOfflineConversionReportsRequest Maven / Gradle / Ivy
package com.microsoft.bingads.v13.campaignmanagement;
import java.util.Calendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"startDateUtc",
"endDateUtc"
})
@XmlRootElement(name = "GetOfflineConversionReportsRequest")
public class GetOfflineConversionReportsRequest {
@XmlElement(name = "StartDateUtc", type = String.class)
@XmlJavaTypeAdapter(Adapter1 .class)
@XmlSchemaType(name = "dateTime")
protected Calendar startDateUtc;
@XmlElement(name = "EndDateUtc", type = String.class)
@XmlJavaTypeAdapter(Adapter1 .class)
@XmlSchemaType(name = "dateTime")
protected Calendar endDateUtc;
/**
* Gets the value of the startDateUtc property.
*
* @return
* possible object is
* {@link String }
*
*/
public Calendar getStartDateUtc() {
return startDateUtc;
}
/**
* Sets the value of the startDateUtc property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStartDateUtc(Calendar value) {
this.startDateUtc = value;
}
/**
* Gets the value of the endDateUtc property.
*
* @return
* possible object is
* {@link String }
*
*/
public Calendar getEndDateUtc() {
return endDateUtc;
}
/**
* Sets the value of the endDateUtc property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEndDateUtc(Calendar value) {
this.endDateUtc = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy