Re: Why Array?

2017-06-07 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi, Yes, that is correct the values that you pass while constructing the predicate has to be an array. Please note that the PredicateOperator

Re: Why Array?

2017-06-07 Thread Артемий Гаврюшин
Hi. Yes: expects an array of predicates. But Why? PredicateOperator::NOT_EQUALS - Expects a single value, not a list. new Predicate('Status', PredicateOperator::NOT_EQUALS, ['REMOVED']); // is correct? вторник, 6 июня 2017 г., 22:06:19 UTC+3 пользователь Sreelakshmi Sasidharan (AdWords API Te

Re: Why Array?

2017-06-06 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi, Are you facing issues while setting the predicate in a Selector ? If so, the setPredicate() expects an array of predicates. Does this answer your question? If not, please shar

Why Array?

2017-06-06 Thread Артемий Гаврюшин
Do: new Predicate('Status', PredicateOperator::NOT_EQUALS, 'REMOVED') Result: must be of the type array, string given ~/vendor/googleads/googleads-php-lib/src/Google/AdsApi/AdWords/v201705/cm/Predicate.php:32 Predicate now only Array? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also