Class: Google::Apis::AnalyticsreportingV4::GetReportsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/analyticsreporting_v4/classes.rb,
generated/google/apis/analyticsreporting_v4/representations.rb,
generated/google/apis/analyticsreporting_v4/representations.rb

Overview

The main response class which holds the reports from the Reporting API batchGet call.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GetReportsResponse

Returns a new instance of GetReportsResponse.



636
637
638
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 636

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#query_costFixnum

The amount of resource quota tokens deducted to execute the query. Includes all responses. Corresponds to the JSON property queryCost

Returns:

  • (Fixnum)


623
624
625
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 623

def query_cost
  @query_cost
end

#reportsArray<Google::Apis::AnalyticsreportingV4::Report>

Responses corresponding to each of the request. Corresponds to the JSON property reports



628
629
630
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 628

def reports
  @reports
end

#resource_quotas_remainingGoogle::Apis::AnalyticsreportingV4::ResourceQuotasRemaining

The resource quota tokens remaining for the property after the request is completed. Corresponds to the JSON property resourceQuotasRemaining



634
635
636
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 634

def resource_quotas_remaining
  @resource_quotas_remaining
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



641
642
643
644
645
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 641

def update!(**args)
  @query_cost = args[:query_cost] if args.key?(:query_cost)
  @reports = args[:reports] if args.key?(:reports)
  @resource_quotas_remaining = args[:resource_quotas_remaining] if args.key?(:resource_quotas_remaining)
end