Class: Google::Apis::SlidesV1::UpdateImagePropertiesRequest
- Inherits:
-
Object
- Object
- Google::Apis::SlidesV1::UpdateImagePropertiesRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/slides_v1/classes.rb,
lib/google/apis/slides_v1/representations.rb,
lib/google/apis/slides_v1/representations.rb
Overview
Update the properties of an Image.
Instance Attribute Summary collapse
-
#fields ⇒ String
The fields that should be updated.
-
#image_properties ⇒ Google::Apis::SlidesV1::ImageProperties
The properties of the Image.
-
#object_id_prop ⇒ String
The object ID of the image the updates are applied to.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UpdateImagePropertiesRequest
constructor
A new instance of UpdateImagePropertiesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UpdateImagePropertiesRequest
Returns a new instance of UpdateImagePropertiesRequest.
4494 4495 4496 |
# File 'lib/google/apis/slides_v1/classes.rb', line 4494 def initialize(**args) update!(**args) end |
Instance Attribute Details
#fields ⇒ String
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
4482 4483 4484 |
# File 'lib/google/apis/slides_v1/classes.rb', line 4482 def fields @fields end |
#image_properties ⇒ Google::Apis::SlidesV1::ImageProperties
The properties of the Image.
Corresponds to the JSON property imageProperties
4487 4488 4489 |
# File 'lib/google/apis/slides_v1/classes.rb', line 4487 def image_properties @image_properties end |
#object_id_prop ⇒ String
The object ID of the image the updates are applied to.
Corresponds to the JSON property objectId
4492 4493 4494 |
# File 'lib/google/apis/slides_v1/classes.rb', line 4492 def object_id_prop @object_id_prop end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4499 4500 4501 4502 4503 |
# File 'lib/google/apis/slides_v1/classes.rb', line 4499 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 |