Class: Google::Apis::SheetsV4::UpdateChartSpecRequest

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

Updates a chart's specifications. (This does not move or resize a chart. To move or resize a chart, use UpdateEmbeddedObjectPositionRequest.)

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) ⇒ UpdateChartSpecRequest

Returns a new instance of UpdateChartSpecRequest



3073
3074
3075
# File 'generated/google/apis/sheets_v4/classes.rb', line 3073

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

Instance Attribute Details

#chart_idFixnum

The ID of the chart to update. Corresponds to the JSON property chartId

Returns:

  • (Fixnum)


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

def chart_id
  @chart_id
end

#specGoogle::Apis::SheetsV4::ChartSpec

The specifications of a chart. Corresponds to the JSON property spec



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

def spec
  @spec
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

def update!(**args)
  @chart_id = args[:chart_id] if args.key?(:chart_id)
  @spec = args[:spec] if args.key?(:spec)
end