Class: Google::Apis::Area120tablesV1alpha1::UpdateRowRequest
- Inherits:
-
Object
- Object
- Google::Apis::Area120tablesV1alpha1::UpdateRowRequest
- 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
Request message for TablesService.UpdateRow.
Instance Attribute Summary collapse
-
#row ⇒ Google::Apis::Area120tablesV1alpha1::Row
A single row in a table.
-
#update_mask ⇒ String
The list of fields to update.
-
#view ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UpdateRowRequest
constructor
A new instance of UpdateRowRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UpdateRowRequest
Returns a new instance of UpdateRowRequest.
481 482 483 |
# File 'lib/google/apis/area120tables_v1alpha1/classes.rb', line 481 def initialize(**args) update!(**args) end |
Instance Attribute Details
#row ⇒ Google::Apis::Area120tablesV1alpha1::Row
A single row in a table.
Corresponds to the JSON property row
468 469 470 |
# File 'lib/google/apis/area120tables_v1alpha1/classes.rb', line 468 def row @row end |
#update_mask ⇒ String
The list of fields to update.
Corresponds to the JSON property updateMask
473 474 475 |
# File 'lib/google/apis/area120tables_v1alpha1/classes.rb', line 473 def update_mask @update_mask end |
#view ⇒ String
Optional. Column key to use for values in the row. Defaults to user entered
name.
Corresponds to the JSON property view
479 480 481 |
# File 'lib/google/apis/area120tables_v1alpha1/classes.rb', line 479 def view @view end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
486 487 488 489 490 |
# File 'lib/google/apis/area120tables_v1alpha1/classes.rb', line 486 def update!(**args) @row = args[:row] if args.key?(:row) @update_mask = args[:update_mask] if args.key?(:update_mask) @view = args[:view] if args.key?(:view) end |