class Google::Apis::Area120tablesV1alpha1::CreateRowRequest
Request message for TablesService.CreateRow.
Attributes
parent[RW]
Required. The parent table where this row will be created. Format: tables/` table` Corresponds to the JSON property `parent` @return [String]
row[RW]
A single row in a table. Corresponds to the JSON property `row` @return [Google::Apis::Area120tablesV1alpha1::Row]
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 209 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 214 def update!(**args) @parent = args[:parent] if args.key?(:parent) @row = args[:row] if args.key?(:row) @view = args[:view] if args.key?(:view) end