Assume the timezone of my account, as returned by an Account Report, is *(GMT+00:00) London*.
I need to use a Service object in my case and I use the ManagedCustomerService object to get the timezone (instead of an Account Report). My code does this: selector.setFields(new String[]{"DateTimeZone"}); ManagedCustomerPage page = managedCustomerService.get(selector); for (ManagedCustomer customer : page.getEntries()) { System.out.println(customer.getDateTimeZone()); } The output of this code is *Europe/London* and not* (GMT+00:00) London* (as given by the report). Am I using the ManagedCustomerService wrongly? Is there anyway to get the timezone via the Service object to look like the one we get from the report? Thanks Oliver -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google.com/group/adwords-api =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To post to this group, send email to adwords-api@googlegroups.com To unsubscribe from this group, send email to adwords-api+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en