Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Contains the methods for iterating through a list of product groups. For information about iterators, see Iterators.
Example usage:
// Gets the iterator that iterates all product groups
// in the account.
var iterator = AdsApp.productGroups().get();
// Loops through all product groups in the account.
while (iterator.hasNext()) {
var group = iterator.next();
}
}
Methods
Method Name | Return Type | Description |
---|---|---|
hasNext | Boolean | Gets a Boolean value that indicates whether this iterator has more elements. |
next | ProductGroup | Advances the iterator and returns the next product group. |
totalNumEntities | int | Gets the number of product groups that matched selector's selection criteria. |
hasNext
Gets a Boolean value that indicates whether this iterator has more elements.
Returns
Type | Description |
---|---|
Boolean | Is true if this iterator has more elements; otherwise, false. |
next
Advances the iterator and returns the next product group.
Returns
Type | Description |
---|---|
ProductGroup | The next product group in the iterator. |
totalNumEntities
Gets the number of product groups that matched the selector's selection criteria.
Returns
Type | Description |
---|---|
int | The number of product groups that matched the selector's selection criteria. |