Class: Google::Apis::ContentV2::Table

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Table

Returns a new instance of Table



5942
5943
5944
# File 'generated/google/apis/content_v2/classes.rb', line 5942

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

Instance Attribute Details

#column_headersGoogle::Apis::ContentV2::Headers

A non-empty list of row or column headers for a table. Exactly one of prices, weights, numItems, postalCodeGroupNames, or locations must be set. Corresponds to the JSON property columnHeaders



5923
5924
5925
# File 'generated/google/apis/content_v2/classes.rb', line 5923

def column_headers
  @column_headers
end

#nameString

Name of the table. Required for subtables, ignored for the main table. Corresponds to the JSON property name

Returns:

  • (String)


5928
5929
5930
# File 'generated/google/apis/content_v2/classes.rb', line 5928

def name
  @name
end

#row_headersGoogle::Apis::ContentV2::Headers

A non-empty list of row or column headers for a table. Exactly one of prices, weights, numItems, postalCodeGroupNames, or locations must be set. Corresponds to the JSON property rowHeaders



5934
5935
5936
# File 'generated/google/apis/content_v2/classes.rb', line 5934

def row_headers
  @row_headers
end

#rowsArray<Google::Apis::ContentV2::Row>

The list of rows that constitute the table. Must have the same length as rowHeaders. Required. Corresponds to the JSON property rows

Returns:



5940
5941
5942
# File 'generated/google/apis/content_v2/classes.rb', line 5940

def rows
  @rows
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5947
5948
5949
5950
5951
5952
# File 'generated/google/apis/content_v2/classes.rb', line 5947

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