class Google::Apis::PeopleV1::SearchDirectoryPeopleResponse
The response to a request for people in the authenticated user's domain directory that match the specified query.
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]
people[RW]
The list of people in the domain directory that match the query. Corresponds to the JSON property `people` @return [Array<Google::Apis::PeopleV1::Person>]
total_size[RW]
The total number of items in the list without pagination. Corresponds to the JSON property `totalSize` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/people_v1/classes.rb, line 2537 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 2542 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @people = args[:people] if args.key?(:people) @total_size = args[:total_size] if args.key?(:total_size) end