Class: Google::Apis::Area120tablesV1alpha1::CreateRowRequest

Inherits:
Object
  • Object
show all
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.CreateRow.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CreateRowRequest

Returns a new instance of CreateRowRequest.



222
223
224
# File 'lib/google/apis/area120tables_v1alpha1/classes.rb', line 222

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#parentString

Required. The parent table where this row will be created. Format: tables/ table Corresponds to the JSON property parent

Returns:

  • (String)


209
210
211
# File 'lib/google/apis/area120tables_v1alpha1/classes.rb', line 209

def parent
  @parent
end

#rowGoogle::Apis::Area120tablesV1alpha1::Row

A single row in a table. Corresponds to the JSON property row



214
215
216
# File 'lib/google/apis/area120tables_v1alpha1/classes.rb', line 214

def row
  @row
end

#viewString

Optional. Column key to use for values in the row. Defaults to user entered name. Corresponds to the JSON property view

Returns:

  • (String)


220
221
222
# File 'lib/google/apis/area120tables_v1alpha1/classes.rb', line 220

def view
  @view
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



227
228
229
230
231
# File 'lib/google/apis/area120tables_v1alpha1/classes.rb', line 227

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