class Google::Apis::PeopleV1::ListDirectoryPeopleResponse
The response to a request for the authenticated user's domain directory.
Attributes
next_page_token[RW]
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]
next_sync_token[RW]
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]
people[RW]
The list of people in the domain directory. Corresponds to the JSON property `people` @return [Array<Google::Apis::PeopleV1::Person>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/people_v1/classes.rb, line 1347 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 1352 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