class Google::Apis::PeopleV1::ListOtherContactsResponse
The response to a request for the authenticated user's “Other contacts”.
Attributes
A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property `nextPageToken` @return [String]
A token, which can be sent as `sync_token` to retrieve changes since the last request. Request must set `request_sync_token` to return the sync token. Corresponds to the JSON property `nextSyncToken` @return [String]
The list of “Other contacts” returned as Person
resources. “Other contacts” support a limited subset of fields. See ListOtherContactsRequest.request_mask for more detailed information. Corresponds to the JSON property `otherContacts` @return [Array<Google::Apis::PeopleV1::Person>]
The total number of other contacts in the list without pagination. Corresponds to the JSON property `totalSize` @return [Fixnum]
Public Class Methods
# File lib/google/apis/people_v1/classes.rb, line 1387 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/people_v1/classes.rb, line 1392 def update!(**args) @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) @other_contacts = args[:other_contacts] if args.key?(:other_contacts) @total_size = args[:total_size] if args.key?(:total_size) end