Hello Guys,
I'm working with .NET C# and Google API, I'm trying to create a TreeView with the OU's.
I need your help to do it.
This is the code from sample, but I don't know what next:
// Retrieve all organization units and list the names
Console.WriteLine("\n-----------Retrieving all organization units----");
AppsExtendedFeed feed = service.RetrieveAllOrganizationUnits(customerId);
foreach (AppsExtendedEntry unit in feed.Entries)
{
Console.WriteLine(unit.getPropertyValueByName(AppsOrganizationNameTable.OrgUnitName));
}