Class: Google::Apis::SheetsV4::PasteDataRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/sheets_v4/classes.rb,
generated/google/apis/sheets_v4/representations.rb,
generated/google/apis/sheets_v4/representations.rb

Overview

Inserts data into the spreadsheet starting at the specified coordinate.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ PasteDataRequest

Returns a new instance of PasteDataRequest



6436
6437
6438
# File 'generated/google/apis/sheets_v4/classes.rb', line 6436

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

Instance Attribute Details

#coordinateGoogle::Apis::SheetsV4::GridCoordinate

A coordinate in a sheet. All indexes are zero-based. Corresponds to the JSON property coordinate



6424
6425
6426
# File 'generated/google/apis/sheets_v4/classes.rb', line 6424

def coordinate
  @coordinate
end

#dataString

The data to insert. Corresponds to the JSON property data

Returns:

  • (String)


6429
6430
6431
# File 'generated/google/apis/sheets_v4/classes.rb', line 6429

def data
  @data
end

#delimiterString

The delimiter in the data. Corresponds to the JSON property delimiter

Returns:

  • (String)


6434
6435
6436
# File 'generated/google/apis/sheets_v4/classes.rb', line 6434

def delimiter
  @delimiter
end

#htmlBoolean Also known as: html?

True if the data is HTML. Corresponds to the JSON property html

Returns:

  • (Boolean)


6417
6418
6419
# File 'generated/google/apis/sheets_v4/classes.rb', line 6417

def html
  @html
end

#typeString

How the data should be pasted. Corresponds to the JSON property type

Returns:

  • (String)


6412
6413
6414
# File 'generated/google/apis/sheets_v4/classes.rb', line 6412

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6441
6442
6443
6444
6445
6446
6447
# File 'generated/google/apis/sheets_v4/classes.rb', line 6441

def update!(**args)
  @type = args[:type] if args.key?(:type)
  @html = args[:html] if args.key?(:html)
  @coordinate = args[:coordinate] if args.key?(:coordinate)
  @data = args[:data] if args.key?(:data)
  @delimiter = args[:delimiter] if args.key?(:delimiter)
end