Class: Google::Apis::SheetsV4::UpdateEmbeddedObjectBorderRequest

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

Overview

Updates an embedded object's border property.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UpdateEmbeddedObjectBorderRequest

Returns a new instance of UpdateEmbeddedObjectBorderRequest.



10679
10680
10681
# File 'lib/google/apis/sheets_v4/classes.rb', line 10679

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

Instance Attribute Details

#borderGoogle::Apis::SheetsV4::EmbeddedObjectBorder

A border along an embedded object. Corresponds to the JSON property border



10665
10666
10667
# File 'lib/google/apis/sheets_v4/classes.rb', line 10665

def border
  @border
end

#fieldsString

The fields that should be updated. At least one field must be specified. The root border is implied and should not be specified. A single "*" can be used as short-hand for listing every field. Corresponds to the JSON property fields

Returns:

  • (String)


10672
10673
10674
# File 'lib/google/apis/sheets_v4/classes.rb', line 10672

def fields
  @fields
end

#object_id_propFixnum

The ID of the embedded object to update. Corresponds to the JSON property objectId

Returns:

  • (Fixnum)


10677
10678
10679
# File 'lib/google/apis/sheets_v4/classes.rb', line 10677

def object_id_prop
  @object_id_prop
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10684
10685
10686
10687
10688
# File 'lib/google/apis/sheets_v4/classes.rb', line 10684

def update!(**args)
  @border = args[:border] if args.key?(:border)
  @fields = args[:fields] if args.key?(:fields)
  @object_id_prop = args[:object_id_prop] if args.key?(:object_id_prop)
end