Class: Google::Apis::SlidesV1::UpdateImagePropertiesRequest

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

Overview

Update the properties of an Image.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UpdateImagePropertiesRequest

Returns a new instance of UpdateImagePropertiesRequest.



4347
4348
4349
# File 'generated/google/apis/slides_v1/classes.rb', line 4347

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

Instance Attribute Details

#fieldsString

The fields that should be updated. At least one field must be specified. The root imageProperties is implied and should not be specified. A single "*" can be used as short-hand for listing every field. For example to update the image outline color, set fields to "outline.outlineFill.solidFill.color". To reset a property to its default value, include its field name in the field mask but leave the field itself unset. Corresponds to the JSON property fields

Returns:

  • (String)


4335
4336
4337
# File 'generated/google/apis/slides_v1/classes.rb', line 4335

def fields
  @fields
end

#image_propertiesGoogle::Apis::SlidesV1::ImageProperties

The properties of the Image. Corresponds to the JSON property imageProperties



4340
4341
4342
# File 'generated/google/apis/slides_v1/classes.rb', line 4340

def image_properties
  @image_properties
end

#object_id_propString

The object ID of the image the updates are applied to. Corresponds to the JSON property objectId

Returns:

  • (String)


4345
4346
4347
# File 'generated/google/apis/slides_v1/classes.rb', line 4345

def object_id_prop
  @object_id_prop
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4352
4353
4354
4355
4356
# File 'generated/google/apis/slides_v1/classes.rb', line 4352

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