Как создать новое "настраиваемое поле в Google Contact с помощью Google Contact API (c #)?
Я использовал:
ExtendedProperty obj_ExtendedProperty = new ExtendedProperty();
obj_ExtendedProperty.Name = "Department";
obj_ExtendedProperty.Value = "Sales";
ContactEntry.ExtendedProperties.Add(obj_ExtendedProperty);
Thanx