Hello,
Since v2 has been sunset, I am trying to use a higher google ads API version using the google-ads python client. Below is the code snippet I'm using:
client = google.ads.google_ads.client.GoogleAdsClient(creds, dev_token)
ga_service = client.get_service('GoogleAdsService')
I have tried provide a 'v5' argument to the client.get_service() call, but it says the only possible versions as v1 and v2. I have also tried pip uninstalling and reinstalling the google-ads package (installs to google-ads==4.0.0), with the same error.
What do I need to do to use a higher version after v2?
Thank you in advance.