class Google::Apis::AnalyticsdataV1alpha::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::AnalyticsdataV1alpha::RunReportResponse>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/analyticsdata_v1alpha/classes.rb, line 120
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_v1alpha/classes.rb, line 125
def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @reports = args[:reports] if args.key?(:reports)
end