class Google::Apis::PlusV1::ActivityFeed
Attributes
ETag of this response for caching purposes. Corresponds to the JSON property `etag` @return [String]
The ID of this collection of activities. Deprecated. Corresponds to the JSON property `id` @return [String]
The activities in this page of results. Corresponds to the JSON property `items` @return [Array<Google::Apis::PlusV1::Activity>]
Identifies this resource as a collection of activities. Value: “plus# activityFeed”. Corresponds to the JSON property `kind` @return [String]
Link to the next page of activities. Corresponds to the JSON property `nextLink` @return [String]
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]
Link to this activity resource. Corresponds to the JSON property `selfLink` @return [String]
The title of this collection of activities, which is a truncated portion of the content. Corresponds to the JSON property `title` @return [String]
The time at which this collection of activities was last updated. Formatted as an RFC 3339 timestamp. Corresponds to the JSON property `updated` @return [DateTime]
Public Class Methods
# File generated/google/apis/plus_v1/classes.rb, line 950 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/plus_v1/classes.rb, line 955 def update!(**args) @etag = args[:etag] if args.key?(:etag) @id = args[:id] if args.key?(:id) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) @next_link = args[:next_link] if args.key?(:next_link) @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) @updated = args[:updated] if args.key?(:updated) end