class Google::Apis::SlidesV1::TextContent

The general text content. The text must reside in a compatible shape (e.g. text box or rectangle) or a table cell in a page.

Attributes

lists[RW]

The bulleted lists contained in this text, keyed by list ID. Corresponds to the JSON property `lists` @return [Hash<String,Google::Apis::SlidesV1::List>]

text_elements[RW]

The text contents broken down into its component parts, including styling information. This property is read-only. Corresponds to the JSON property `textElements` @return [Array<Google::Apis::SlidesV1::TextElement>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/slides_v1/classes.rb, line 4083
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/slides_v1/classes.rb, line 4088
def update!(**args)
  @lists = args[:lists] if args.key?(:lists)
  @text_elements = args[:text_elements] if args.key?(:text_elements)
end