Dear Google ads API team,
My question is: What's the difference between function "googleAdsClient.getVersion9()" (Pattern 1 below) and "googleAdsClient.getLatestVersion" (Pattern 2 below)
* My code as below:
================
1) Pattern 1:
protected CustomerServiceClient CustomerServiceInterface() throws WebServiceException {
GoogleAdsClient googleAdsClient = ....;
return googleAdsClient.getVersion9().createCustomerServiceClient();
}
2) Pattern 2:
protected CustomerServiceClient CustomerServiceInterface() throws WebServiceException {
GoogleAdsClient googleAdsClient = initAPIService(true);
return googleAdsClient.getLatestVersion().createCustomerServiceClient();
}
================
Thank you so much