I am referring to the Google.Apis.Admin.Directory.directory_v1.Data.User
type.
The property type of Addresses
, for example, in beta versions (i.e. 1.7 and older) was
public virtual System.Collections.Generic.IList<UserAddress> Addresses { get; set; }
In later versions (currently 1.9.1), they are all of type object.
public virtual object Addresses { get; set; }
What are the reasons behind the change and usage scenarios?
I trawled the release notes, the web, google group, SO, etc. and found no explanation on this.