Hi,
I integrated the PHP Adwords API two years ago.
Since then, I updated to the latest version of the API by pulling the latest version of the Adwords files from Github. I simply pasted the latest API files from the following folder:
\src\Google\Api\Ads\AdWords\vXXXXXX
where vXXXXXX was the name of the latest version.
So for version 201609, I simply copied and pasted the following files from Github to my server:
\src\Google\Api\Ads\AdWords\v201609
Then I just had to modify my code according to the changes in the API. It worked fine for 2 years.
Now I realized that the organization of the files changed since v201702. The location of the folder is now:
\src\Google\AdsApi\AdWords\v201702
The whole file structure changed inside folder v201702 and everywhere else in the PHP API. For example there is no longer a Lib folder.
Is there a way to map the new file structure to the old structure? Or do I have to re-code everything to match the change?