class Google::Apis::Area120tablesV1alpha1::Row
A single row in a table.
Attributes
create_time[RW]
Time when the row was created. Corresponds to the JSON property `createTime` @return [String]
name[RW]
The resource name of the row. Row
names have the form `tables/`table`/rows/` row“. The name is ignored when creating a row. Corresponds to the JSON property `name` @return [String]
update_time[RW]
Time when the row was last updated. Corresponds to the JSON property `updateTime` @return [String]
values[RW]
The values of the row. This is a map of column key to value. Key is user entered name(default) or the internal column id based on the view in the request. Corresponds to the JSON property `values` @return [Hash<String,Object>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/area120tables_v1alpha1/classes.rb, line 413 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 418 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @name = args[:name] if args.key?(:name) @update_time = args[:update_time] if args.key?(:update_time) @values = args[:values] if args.key?(:values) end