class Google::Apis::PolicyanalyzerV1::GoogleCloudPolicyanalyzerV1QueryActivityResponse
Response to the `QueryActivity` method.
Attributes
activities[RW]
The set of activities that match the filter included in the request. Corresponds to the JSON property `activities` @return [Array<Google::Apis::PolicyanalyzerV1::GoogleCloudPolicyanalyzerV1Activity>]
next_page_token[RW]
If there might be more results than those appearing in this response, then ` nextPageToken` is included. To get the next set of results, call this method again using the value of `nextPageToken` as `pageToken`. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/policyanalyzer_v1/classes.rb, line 105 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/policyanalyzer_v1/classes.rb, line 110 def update!(**args) @activities = args[:activities] if args.key?(:activities) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end