class Google::Apis::AnalyticsdataV1beta::BatchRunReportsResponse
The batch response containing multiple reports.
Attributes
kind[RW]
Identifies what kind of resource this message is. This `kind` is always the fixed string “analyticsData#batchRunReports”. Useful to distinguish between response types in JSON. Corresponds to the JSON property `kind` @return [String]
reports[RW]
Individual responses. Each response has a separate report request. Corresponds to the JSON property `reports` @return [Array<Google::Apis::AnalyticsdataV1beta::RunReportResponse>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/analyticsdata_v1beta/classes.rb, line 108 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/analyticsdata_v1beta/classes.rb, line 113 def update!(**args) @kind = args[:kind] if args.key?(:kind) @reports = args[:reports] if args.key?(:reports) end