Re: How to manipulate an object of Google Ads API's Enum class - python

2018-11-28 Thread 'Teja Makani' via AdWords API and Google Ads API Forum
Hello Camila, Apologies for the inconvenience. I am Sreelakshmi's teammate responding on this thread. I was checking with the team on this issue. Looks like it is the issue related to the python client libraries as calls from other libraries resulted in advertising_channel_type as name as

Re: How to manipulate an object of Google Ads API's Enum class - python

2018-11-26 Thread camila
I am extracting the attribute like this: row.campaign.advertising_channel_type and I am using Python 2.7. the documentation you shared is missing information, it just says the value for enums 0,1,2,5. what about enums 3 and 4 ? also, i am not using the googleads api, I am using the google-ads

Re: How to manipulate an object of Google Ads API's Enum class - python

2018-11-01 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API and Google Ads API Forum
Hello, As you can see from here , 2 is the vale assigned for SEARCH campaigns. Could you please check that you are printing the right attribute in your code? If you are unable

How to manipulate an object of Google Ads API's Enum class - python

2018-11-01 Thread camila
On the Google Ads API documentation it says that for the field campaign.advertising_channel_type, the return value is an ENUM. How can I manipulate this object of the ENUM class to get the value that I want ? My problem is