com.microsoft.bingads.v13.adinsight.EntityParameter Maven / Gradle / Ivy
package com.microsoft.bingads.v13.adinsight;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for EntityParameter complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "EntityParameter", propOrder = {
"entityCount",
"entityDetails",
"entityType",
"suggestedText"
})
public class EntityParameter
extends PerformanceInsightsMessageParameter
{
public EntityParameter() {
this.type = ParameterType.fromValue("Entities");
}
@XmlElement(name = "EntityCount")
protected Integer entityCount;
@XmlElement(name = "EntityDetails", nillable = true)
protected ArrayOfEntityDetail entityDetails;
@XmlElement(name = "EntityType")
@XmlSchemaType(name = "string")
protected PerformanceInsightsEntityType entityType;
@XmlElement(name = "SuggestedText", nillable = true)
protected String suggestedText;
/**
* Gets the value of the entityCount property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getEntityCount() {
return entityCount;
}
/**
* Sets the value of the entityCount property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setEntityCount(Integer value) {
this.entityCount = value;
}
/**
* Gets the value of the entityDetails property.
*
* @return
* possible object is
* {@link ArrayOfEntityDetail }
*
*/
public ArrayOfEntityDetail getEntityDetails() {
return entityDetails;
}
/**
* Sets the value of the entityDetails property.
*
* @param value
* allowed object is
* {@link ArrayOfEntityDetail }
*
*/
public void setEntityDetails(ArrayOfEntityDetail value) {
this.entityDetails = value;
}
/**
* Gets the value of the entityType property.
*
* @return
* possible object is
* {@link PerformanceInsightsEntityType }
*
*/
public PerformanceInsightsEntityType getEntityType() {
return entityType;
}
/**
* Sets the value of the entityType property.
*
* @param value
* allowed object is
* {@link PerformanceInsightsEntityType }
*
*/
public void setEntityType(PerformanceInsightsEntityType value) {
this.entityType = value;
}
/**
* Gets the value of the suggestedText property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSuggestedText() {
return suggestedText;
}
/**
* Sets the value of the suggestedText property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSuggestedText(String value) {
this.suggestedText = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy