class Google::Apis::AnalyticsdataV1alpha::BatchRunReportsRequest

The batch request containing multiple report requests.

Attributes

entity[RW]

The unique identifier of the property whose events are tracked. Corresponds to the JSON property `entity` @return [Google::Apis::AnalyticsdataV1alpha::Entity]

requests[RW]

Individual requests. Each request has a separate report response. Each batch request is allowed up to 5 requests. Corresponds to the JSON property `requests` @return [Array<Google::Apis::AnalyticsdataV1alpha::RunReportRequest>]

Public Class Methods

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