Class: Google::Apis::Area120tablesV1alpha1::SavedView
- Inherits:
-
Object
- Object
- Google::Apis::Area120tablesV1alpha1::SavedView
- 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 saved view of a table. NextId: 3
Instance Attribute Summary collapse
-
#id ⇒ String
Internal id associated with the saved view.
-
#name ⇒ String
Display name of the saved view.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SavedView
constructor
A new instance of SavedView.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SavedView
Returns a new instance of SavedView.
473 474 475 |
# File 'lib/google/apis/area120tables_v1alpha1/classes.rb', line 473 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
Internal id associated with the saved view.
Corresponds to the JSON property id
466 467 468 |
# File 'lib/google/apis/area120tables_v1alpha1/classes.rb', line 466 def id @id end |
#name ⇒ String
Display name of the saved view.
Corresponds to the JSON property name
471 472 473 |
# File 'lib/google/apis/area120tables_v1alpha1/classes.rb', line 471 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
478 479 480 481 |
# File 'lib/google/apis/area120tables_v1alpha1/classes.rb', line 478 def update!(**args) @id = args[:id] if args.key?(:id) @name = args[:name] if args.key?(:name) end |