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.
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
#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
4335 4336 4337 |
# File 'generated/google/apis/slides_v1/classes.rb', line 4335 def fields @fields end |
#image_properties ⇒ Google::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_prop ⇒ String
The object ID of the image the updates are applied to.
Corresponds to the JSON property objectId
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 |