class Google::Apis::SheetsV4::PasteDataRequest

Inserts data into the spreadsheet starting at the specified coordinate.

Attributes

coordinate[RW]

A coordinate in a sheet. All indexes are zero-based. Corresponds to the JSON property `coordinate` @return [Google::Apis::SheetsV4::GridCoordinate]

data[RW]

The data to insert. Corresponds to the JSON property `data` @return [String]

delimiter[RW]

The delimiter in the data. Corresponds to the JSON property `delimiter` @return [String]

html[RW]

True if the data is HTML. Corresponds to the JSON property `html` @return [Boolean]

html?[RW]

True if the data is HTML. Corresponds to the JSON property `html` @return [Boolean]

type[RW]

How the data should be pasted. Corresponds to the JSON property `type` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/sheets_v4/classes.rb, line 7042
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/sheets_v4/classes.rb, line 7047
def update!(**args)
  @coordinate = args[:coordinate] if args.key?(:coordinate)
  @data = args[:data] if args.key?(:data)
  @delimiter = args[:delimiter] if args.key?(:delimiter)
  @html = args[:html] if args.key?(:html)
  @type = args[:type] if args.key?(:type)
end