Class: Google::Apis::SlidesV1::UpdateImagePropertiesRequest
- Inherits:
-
Object
- Object
- Google::Apis::SlidesV1::UpdateImagePropertiesRequest
- 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
-
#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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ UpdateImagePropertiesRequest
Returns a new instance of UpdateImagePropertiesRequest
4555 4556 4557 |
# File 'generated/google/apis/slides_v1/classes.rb', line 4555 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
4543 4544 4545 |
# File 'generated/google/apis/slides_v1/classes.rb', line 4543 def fields @fields end |
#image_properties ⇒ Google::Apis::SlidesV1::ImageProperties
The properties of the Image.
Corresponds to the JSON property imageProperties
4548 4549 4550 |
# File 'generated/google/apis/slides_v1/classes.rb', line 4548 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
4553 4554 4555 |
# File 'generated/google/apis/slides_v1/classes.rb', line 4553 def object_id_prop @object_id_prop end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4560 4561 4562 4563 4564 |
# File 'generated/google/apis/slides_v1/classes.rb', line 4560 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 |