class Google::Apis::PlusV1::PeopleFeed

Attributes

etag[RW]

ETag of this response for caching purposes. Corresponds to the JSON property `etag` @return [String]

items[RW]

The people in this page of results. Each item includes the id, displayName, image, and url for the person. To retrieve additional profile data, see the people.get method. Corresponds to the JSON property `items` @return [Array<Google::Apis::PlusV1::Person>]

kind[RW]

Identifies this resource as a collection of people. Value: “plus#peopleFeed”. Corresponds to the JSON property `kind` @return [String]

next_page_token[RW]

The continuation token, which is used to page through large result sets. Provide this value in a subsequent request to return the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]

title[RW]

The title of this collection of people. Corresponds to the JSON property `title` @return [String]

total_items[RW]

The total number of people available in this list. The number of people in a response might be smaller due to paging. This might not be set for all collections. Corresponds to the JSON property `totalItems` @return [Fixnum]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/plus_v1/classes.rb, line 1369
def update!(**args)
  @etag = args[:etag] if args.key?(:etag)
  @items = args[:items] if args.key?(:items)
  @kind = args[:kind] if args.key?(:kind)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @self_link = args[:self_link] if args.key?(:self_link)
  @title = args[:title] if args.key?(:title)
  @total_items = args[:total_items] if args.key?(:total_items)
end