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.



1348
1349
1350
# File 'lib/google/apis/people_v1/classes.rb', line 1348

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)


1335
1336
1337
# File 'lib/google/apis/people_v1/classes.rb', line 1335

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)


1341
1342
1343
# File 'lib/google/apis/people_v1/classes.rb', line 1341

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:



1346
1347
1348
# File 'lib/google/apis/people_v1/classes.rb', line 1346

def people
  @people
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1353
1354
1355
1356
1357
# File 'lib/google/apis/people_v1/classes.rb', line 1353

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