Class: Google::Apis::Area120tablesV1alpha1::UpdateRowRequest
- Inherits:
-
Object
- Object
- Google::Apis::Area120tablesV1alpha1::UpdateRowRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/area120tables_v1alpha1/classes.rb,
generated/google/apis/area120tables_v1alpha1/representations.rb,
generated/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.
436 437 438 |
# File 'generated/google/apis/area120tables_v1alpha1/classes.rb', line 436 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
423 424 425 |
# File 'generated/google/apis/area120tables_v1alpha1/classes.rb', line 423 def row @row end |
#update_mask ⇒ String
The list of fields to update.
Corresponds to the JSON property updateMask
428 429 430 |
# File 'generated/google/apis/area120tables_v1alpha1/classes.rb', line 428 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
434 435 436 |
# File 'generated/google/apis/area120tables_v1alpha1/classes.rb', line 434 def view @view end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
441 442 443 444 445 |
# File 'generated/google/apis/area120tables_v1alpha1/classes.rb', line 441 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 |