Class: Google::Apis::PeopleV1::ListDirectoryPeopleResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/people_v1/classes.rb,
lib/google/apis/people_v1/representations.rb,
lib/google/apis/people_v1/representations.rb

Overview

The response to a request for the authenticated user's domain directory.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListDirectoryPeopleResponse

Returns a new instance of ListDirectoryPeopleResponse.



1332
1333
1334
# File 'lib/google/apis/people_v1/classes.rb', line 1332

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

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

Returns:

  • (String)


1319
1320
1321
# File 'lib/google/apis/people_v1/classes.rb', line 1319

def next_page_token
  @next_page_token
end

#next_sync_tokenString

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

Returns:

  • (String)


1325
1326
1327
# File 'lib/google/apis/people_v1/classes.rb', line 1325

def next_sync_token
  @next_sync_token
end

#peopleArray<Google::Apis::PeopleV1::Person>

The list of people in the domain directory. Corresponds to the JSON property people

Returns:



1330
1331
1332
# File 'lib/google/apis/people_v1/classes.rb', line 1330

def people
  @people
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1337
1338
1339
1340
1341
# File 'lib/google/apis/people_v1/classes.rb', line 1337

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)
  @people = args[:people] if args.key?(:people)
end