According to the documentation in the code, member_resource_names
should return a "list of contact person resource names that are members of the contact group", but it's returning nil.
I'm doing something like this (ruby):
service = Google::Apis::PeopleV1::PeopleServiceService.new
# authentication code
contact_group = service.get_contact_group("contactGroups/xxxxxxxxxxxxxxxx")
=> #<Google::Apis::PeopleV1::ContactGroup:0x00007fd69fca6f48
@etag="xxxxxxxxxxxx",
@formatted_name="Contact list",
@group_type="USER_CONTACT_GROUP",
@member_count=10,
@metadata=#<...>,
@name="Contact list",
@resource_name="contactGroups/xxxxxxxxxxxxxxxx">
contact_group.member_resource_names
=> nil
Even though the member_count
is 10, member_resource_names
returns nil all the time.
I'm using ruby 2.4, and google gem 0.52.0.
Anyone else has seen this issue?