class Google::Apis::DriveactivityV2::QueryDriveActivityResponse
Response message for querying Drive
activity.
Attributes
activities[RW]
List of activity requested. Corresponds to the JSON property `activities` @return [Array<Google::Apis::DriveactivityV2::DriveActivity>]
next_page_token[RW]
Token to retrieve the next page of results, or empty if there are no more results in the list. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/driveactivity_v2/classes.rb, line 1174 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/driveactivity_v2/classes.rb, line 1179 def update!(**args) @activities = args[:activities] if args.key?(:activities) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end