Class: Google::Apis::Area120tablesV1alpha1::Table
- Inherits:
-
Object
- Object
- Google::Apis::Area120tablesV1alpha1::Table
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/area120tables_v1alpha1/classes.rb,
lib/google/apis/area120tables_v1alpha1/representations.rb,
lib/google/apis/area120tables_v1alpha1/representations.rb
Overview
A single table. NextId: 7
Instance Attribute Summary collapse
-
#columns ⇒ Array<Google::Apis::Area120tablesV1alpha1::ColumnDescription>
List of columns in this table.
-
#create_time ⇒ String
Time when the table was created.
-
#display_name ⇒ String
The human readable title of the table.
-
#name ⇒ String
The resource name of the table.
-
#saved_views ⇒ Array<Google::Apis::Area120tablesV1alpha1::SavedView>
Saved views for this table.
-
#update_time ⇒ String
Time when the table was last updated excluding updates to individual rows Corresponds to the JSON property
updateTime.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Table
constructor
A new instance of Table.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Table
Returns a new instance of Table.
485 486 487 |
# File 'lib/google/apis/area120tables_v1alpha1/classes.rb', line 485 def initialize(**args) update!(**args) end |
Instance Attribute Details
#columns ⇒ Array<Google::Apis::Area120tablesV1alpha1::ColumnDescription>
List of columns in this table. Order of columns matches the display order.
Corresponds to the JSON property columns
458 459 460 |
# File 'lib/google/apis/area120tables_v1alpha1/classes.rb', line 458 def columns @columns end |
#create_time ⇒ String
Time when the table was created.
Corresponds to the JSON property createTime
463 464 465 |
# File 'lib/google/apis/area120tables_v1alpha1/classes.rb', line 463 def create_time @create_time end |
#display_name ⇒ String
The human readable title of the table.
Corresponds to the JSON property displayName
468 469 470 |
# File 'lib/google/apis/area120tables_v1alpha1/classes.rb', line 468 def display_name @display_name end |
#name ⇒ String
The resource name of the table. Table names have the form tables/table`.
Corresponds to the JSON propertyname`
473 474 475 |
# File 'lib/google/apis/area120tables_v1alpha1/classes.rb', line 473 def name @name end |
#saved_views ⇒ Array<Google::Apis::Area120tablesV1alpha1::SavedView>
Saved views for this table.
Corresponds to the JSON property savedViews
478 479 480 |
# File 'lib/google/apis/area120tables_v1alpha1/classes.rb', line 478 def saved_views @saved_views end |
#update_time ⇒ String
Time when the table was last updated excluding updates to individual rows
Corresponds to the JSON property updateTime
483 484 485 |
# File 'lib/google/apis/area120tables_v1alpha1/classes.rb', line 483 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
490 491 492 493 494 495 496 497 |
# File 'lib/google/apis/area120tables_v1alpha1/classes.rb', line 490 def update!(**args) @columns = args[:columns] if args.key?(:columns) @create_time = args[:create_time] if args.key?(:create_time) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) @saved_views = args[:saved_views] if args.key?(:saved_views) @update_time = args[:update_time] if args.key?(:update_time) end |