class Google::Apis::Area120tablesV1alpha1::UpdateRowRequest
Request message for TablesService.UpdateRow.
Attributes
row[RW]
A single row in a table. Corresponds to the JSON property `row` @return [Google::Apis::Area120tablesV1alpha1::Row]
update_mask[RW]
The list of fields to update. Corresponds to the JSON property `updateMask` @return [String]
view[RW]
Optional. Column key to use for values in the row. Defaults to user entered name. Corresponds to the JSON property `view` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/area120tables_v1alpha1/classes.rb, line 520 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/area120tables_v1alpha1/classes.rb, line 525 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