com.microsoft.bingads.v13.bulk.ApplicationFault Maven / Gradle / Ivy
package com.microsoft.bingads.v13.bulk;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for ApplicationFault complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ApplicationFault", namespace = "https://adapi.microsoft.com", propOrder = {
"type",
"trackingId"
})
@XmlSeeAlso({
ApiFaultDetail.class,
AdApiFaultDetail.class
})
public class ApplicationFault {
protected String type;
public ApplicationFault() {
this.type = "ApplicationFault";
}
@XmlElement(name = "TrackingId", nillable = true)
protected String trackingId;
/**
* Gets the value of the trackingId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTrackingId() {
return trackingId;
}
/**
* Sets the value of the trackingId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTrackingId(String value) {
this.trackingId = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy