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.



3078
3079
3080
# File 'generated/google/apis/sheets_v4/classes.rb', line 3078

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



3060
3061
3062
# File 'generated/google/apis/sheets_v4/classes.rb', line 3060

def coordinate
  @coordinate
end

#dataString

The data to insert. Corresponds to the JSON property data

Returns:

  • (String)


3054
3055
3056
# File 'generated/google/apis/sheets_v4/classes.rb', line 3054

def data
  @data
end

#delimiterString

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

Returns:

  • (String)


3065
3066
3067
# File 'generated/google/apis/sheets_v4/classes.rb', line 3065

def delimiter
  @delimiter
end

#htmlBoolean Also known as: html?

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

Returns:

  • (Boolean)


3075
3076
3077
# File 'generated/google/apis/sheets_v4/classes.rb', line 3075

def html
  @html
end

#typeString

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

Returns:

  • (String)


3070
3071
3072
# File 'generated/google/apis/sheets_v4/classes.rb', line 3070

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3083
3084
3085
3086
3087
3088
3089
# File 'generated/google/apis/sheets_v4/classes.rb', line 3083

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