class Google::Apis::MirrorV1::ListTimelineResponse

A list of timeline items. This is the response from the server to GET requests on the timeline collection.

Attributes

items[RW]

Items in the timeline. Corresponds to the JSON property `items` @return [Array<Google::Apis::MirrorV1::TimelineItem>]

kind[RW]

The type of resource. This is always mirror#timeline. Corresponds to the JSON property `kind` @return [String]

next_page_token[RW]

The next page token. Provide this as the pageToken parameter in the request to retrieve the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/mirror_v1/classes.rb, line 1003
def update!(**args)
  @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)
end