public class IdeaTextFilterSearchParameter extends SearchParameter
SearchParameter for KEYWORD IdeaTypes that
specifies a collection of strings by which the results should be
constrained. This guarantees that each idea in the result will match
at least one of the included values.
For this SearchParameter, excluded items will always take
priority over included ones.
This can handle a maximum of 200 (included + excluded) elements.
This element is supported by following IdeaTypes: KEYWORD.
This element is supported by following RequestTypes: IDEAS, STATS.
Java class for IdeaTextFilterSearchParameter complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="IdeaTextFilterSearchParameter">
<complexContent>
<extension base="{https://adwords.google.com/api/adwords/o/v201809}SearchParameter">
<sequence>
<element name="included" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
<element name="excluded" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</extension>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected List<String> |
excluded |
protected List<String> |
included |
searchParameterType| Constructor and Description |
|---|
IdeaTextFilterSearchParameter() |
| Modifier and Type | Method and Description |
|---|---|
List<String> |
getExcluded()
Gets the value of the excluded property.
|
List<String> |
getIncluded()
Gets the value of the included property.
|
getSearchParameterType, setSearchParameterTypepublic List<String> getIncluded()
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a set method for the included property.
For example, to add a new item, do as follows:
getIncluded().add(newItem);
Objects of the following type(s) are allowed in the list
String
public List<String> getExcluded()
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a set method for the excluded property.
For example, to add a new item, do as follows:
getExcluded().add(newItem);
Objects of the following type(s) are allowed in the list
String
Copyright © 2023. All rights reserved.