I am creating a java app for Google admin tasks and have successfully accessed a few bits using various Google APIs. However I am having trouble with the "Google Apps Email Settings API"
The sample code given for Java shows the import as:-
import sample.appsforyourdomain.gmailsettings.GmailSettingsService;
which I can't seem to find in the gdata libraries. Closest I can get is:-
import com.google.gdata.client.appsforyourdomain.gmailsettings.GmailFilterService;
But with this when I am trying to create the GmailSettingsService as per the sample code:-
GmailSettingsService service = new GmailSettingsService....
it is not found. Please help, I am sure it's something simple/stupid I have missed!
Thanks Phil