class Google::Apis::PeopleV1::ListContactGroupsResponse

The response to a list contact groups request.

Attributes

contact_groups[RW]

The list of contact groups. Members of the contact groups are not populated. Corresponds to the JSON property `contactGroups` @return [Array<Google::Apis::PeopleV1::ContactGroup>]

next_page_token[RW]

The token that can be used to retrieve the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]

next_sync_token[RW]

The token that can be used to retrieve changes since the last request. Corresponds to the JSON property `nextSyncToken` @return [String]

total_items[RW]

The total number of items in the list without pagination. Corresponds to the JSON property `totalItems` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/people_v1/classes.rb, line 1313
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/people_v1/classes.rb, line 1318
def update!(**args)
  @contact_groups = args[:contact_groups] if args.key?(:contact_groups)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @next_sync_token = args[:next_sync_token] if args.key?(:next_sync_token)
  @total_items = args[:total_items] if args.key?(:total_items)
end