Hi,
I've taken over the overdue google ads api migration for my team and I'm having an issue with:
I tried:
from google.ads.googleads import errors, ad_manager, oauth2
However, for ad_manager it is not located there.
I wanted to know where or what module in the new google-ads api package is the module ad_manager located e.g.:
from googleads import errors, ad_manager
statement = (ad_manager.StatementBuilder(version='v202011')
.Where('id = :id')
.WithBindVariable('id', int(saved_query_id))
.Limit(1))
Also the import change or module location for:
from googleads import adwords
I have been looking in the documentation but can't seem to find the mapping for these changes, could you please help me as we're currently unable to use the API
Any help is appreciated.