class Google::Apis::SheetsV4::UpdateEmbeddedObjectBorderRequest

Updates an embedded object's border property.

Attributes

border[RW]

A border along an embedded object. Corresponds to the JSON property `border` @return [Google::Apis::SheetsV4::EmbeddedObjectBorder]

fields[RW]

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` @return [String]

object_id_prop[RW]

The ID of the embedded object to update. Corresponds to the JSON property `objectId` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/sheets_v4/classes.rb, line 10677
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 10682
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