class Google::Apis::PeopleV1::ListConnectionsResponse

Attributes

connections[RW]

The list of people that the requestor is connected to. Corresponds to the JSON property `connections` @return [Array<Google::Apis::PeopleV1::Person>]

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]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/people_v1/classes.rb, line 1513
def update!(**args)
  @connections = args[:connections] if args.key?(:connections)
  @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)
end