class Google::Apis::AppsactivityV1::ListActivitiesResponse
The response from the list request. Contains a list of activities and a token to retrieve the next page of results.
Attributes
activities[RW]
List of activities. Corresponds to the JSON property `activities` @return [Array<Google::Apis::AppsactivityV1::Activity>]
next_page_token[RW]
Token for 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/appsactivity_v1/classes.rb, line 139 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/appsactivity_v1/classes.rb, line 144 def update!(**args) @activities = args[:activities] if args.key?(:activities) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end