com.microsoft.bingads.v13.adinsight.EntityParameter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of microsoft.bingads Show documentation
Show all versions of microsoft.bingads Show documentation
The Bing Ads Java SDK is a library improving developer experience when working with the Bing Ads services by providing high-level access to features such as Bulk API, OAuth Authorization and SOAP API.
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
{
@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;
}
}