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
4422 4423 4424 |
# File 'generated/google/apis/slides_v1/classes.rb', line 4422 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
4410 4411 4412 |
# File 'generated/google/apis/slides_v1/classes.rb', line 4410 def fields @fields end |
#image_properties ⇒ Google::Apis::SlidesV1::ImageProperties
The properties of the Image.
Corresponds to the JSON property imageProperties
4415 4416 4417 |
# File 'generated/google/apis/slides_v1/classes.rb', line 4415 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
4420 4421 4422 |
# File 'generated/google/apis/slides_v1/classes.rb', line 4420 def object_id_prop @object_id_prop end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4427 4428 4429 4430 4431 |
# File 'generated/google/apis/slides_v1/classes.rb', line 4427 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 |