I'm not a Java developer, but I need to automate creating email export for my Google domain and only .NET and Java are supported. Specifically, I'm attempting to replicate the snippet provided here: https://developers.google.com/google-apps/email-audit/#creating_a_mailbox_for_export
Unfortunately, I get I cannot resolve the following imports:
import com.google.gdata.client.appsforyourdomain.audit.AuditService;
import com.google.gdata.client.appsforyourdomain.audit.MailBoxDumpRequest;
import com.google.gdata.data.appsforyourdomain.generic.GenericEntry;
Oddly this import works:
import com.google.gdata.client.appsforyourdomain.AppsForYourDomainService;
I've tried using the libraries from the latest available download and from the source repository with no luck. Apologies for my misunderstanding of Java imports and packages, but I would appreciate guidance as to resolving the three above imports.