com.microsoft.bingads.v13.customerbilling.ClaimFeatureAdoptionCouponsResponse Maven / Gradle / Ivy
package com.microsoft.bingads.v13.customerbilling;
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.XmlType;
/**
* 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 = {
"claimedDateByAccountId",
"operationErrors",
"partialErrors"
})
@XmlRootElement(name = "ClaimFeatureAdoptionCouponsResponse")
public class ClaimFeatureAdoptionCouponsResponse {
@XmlElement(name = "ClaimedDateByAccountId", nillable = true)
protected ArrayOfKeyValueEntityOflongdateTime claimedDateByAccountId;
@XmlElement(name = "OperationErrors", nillable = true)
protected ArrayOfOperationError operationErrors;
@XmlElement(name = "PartialErrors", nillable = true)
protected ArrayOfArrayOfOperationError partialErrors;
/**
* Gets the value of the claimedDateByAccountId property.
*
* @return
* possible object is
* {@link ArrayOfKeyValueEntityOflongdateTime }
*
*/
public ArrayOfKeyValueEntityOflongdateTime getClaimedDateByAccountId() {
return claimedDateByAccountId;
}
/**
* Sets the value of the claimedDateByAccountId property.
*
* @param value
* allowed object is
* {@link ArrayOfKeyValueEntityOflongdateTime }
*
*/
public void setClaimedDateByAccountId(ArrayOfKeyValueEntityOflongdateTime value) {
this.claimedDateByAccountId = value;
}
/**
* Gets the value of the operationErrors property.
*
* @return
* possible object is
* {@link ArrayOfOperationError }
*
*/
public ArrayOfOperationError getOperationErrors() {
return operationErrors;
}
/**
* Sets the value of the operationErrors property.
*
* @param value
* allowed object is
* {@link ArrayOfOperationError }
*
*/
public void setOperationErrors(ArrayOfOperationError value) {
this.operationErrors = value;
}
/**
* Gets the value of the partialErrors property.
*
* @return
* possible object is
* {@link ArrayOfArrayOfOperationError }
*
*/
public ArrayOfArrayOfOperationError getPartialErrors() {
return partialErrors;
}
/**
* Sets the value of the partialErrors property.
*
* @param value
* allowed object is
* {@link ArrayOfArrayOfOperationError }
*
*/
public void setPartialErrors(ArrayOfArrayOfOperationError value) {
this.partialErrors = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy