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.



10855
10856
10857
# File 'lib/google/apis/sheets_v4/classes.rb', line 10855

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



10841
10842
10843
# File 'lib/google/apis/sheets_v4/classes.rb', line 10841

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)


10848
10849
10850
# File 'lib/google/apis/sheets_v4/classes.rb', line 10848

def fields
  @fields
end

#object_id_propFixnum

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

Returns:

  • (Fixnum)


10853
10854
10855
# File 'lib/google/apis/sheets_v4/classes.rb', line 10853

def object_id_prop
  @object_id_prop
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10860
10861
10862
10863
10864
# File 'lib/google/apis/sheets_v4/classes.rb', line 10860

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