Class: Google::Apis::AnalyticsV3::GaData::DataTable

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

Defined Under Namespace

Classes: Col, Row

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ DataTable

Returns a new instance of DataTable.



2570
2571
2572
# File 'generated/google/apis/analytics_v3/classes.rb', line 2570

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

Instance Attribute Details

#colsArray<Google::Apis::AnalyticsV3::GaData::DataTable::Col>

Corresponds to the JSON property cols



2563
2564
2565
# File 'generated/google/apis/analytics_v3/classes.rb', line 2563

def cols
  @cols
end

#rowsArray<Google::Apis::AnalyticsV3::GaData::DataTable::Row>

Corresponds to the JSON property rows



2568
2569
2570
# File 'generated/google/apis/analytics_v3/classes.rb', line 2568

def rows
  @rows
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2575
2576
2577
2578
# File 'generated/google/apis/analytics_v3/classes.rb', line 2575

def update!(**args)
  @cols = args[:cols] if args.key?(:cols)
  @rows = args[:rows] if args.key?(:rows)
end