class Google::Apis::SlidesV1::UpdatePageElementAltTextRequest
Updates the alt text title and/or description of a page element.
Attributes
The updated alt text description of the page element. If unset the existing value will be maintained. The description is exposed to screen readers and other accessibility interfaces. Only use human readable values related to the content of the page element. Corresponds to the JSON property `description` @return [String]
The object ID of the page element the updates are applied to. Corresponds to the JSON property `objectId` @return [String]
The updated alt text title of the page element. If unset the existing value will be maintained. The title is exposed to screen readers and other accessibility interfaces. Only use human readable values related to the content of the page element. Corresponds to the JSON property `title` @return [String]
Public Class Methods
# File lib/google/apis/slides_v1/classes.rb, line 4522 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/slides_v1/classes.rb, line 4527 def update!(**args) @description = args[:description] if args.key?(:description) @object_id_prop = args[:object_id_prop] if args.key?(:object_id_prop) @title = args[:title] if args.key?(:title) end