# Copyright 2017 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # NOTE: This class is auto generated by the swagger code generator program. # https://github.com/swagger-api/swagger-codegen.git # Do not edit the class manually. defmodule GoogleApi.Slides.V1.Model.TextElement do @moduledoc """ A TextElement describes the content of a range of indices in the text content of a Shape or TableCell. ## Attributes - autoText (AutoText): A TextElement representing a spot in the text that is dynamically replaced with content that can change over time. Defaults to: `null`. - endIndex (Integer): The zero-based end index of this text element, exclusive, in Unicode code units. Defaults to: `null`. - paragraphMarker (ParagraphMarker): A marker representing the beginning of a new paragraph. The `start_index` and `end_index` of this TextElement represent the range of the paragraph. Other TextElements with an index range contained inside this paragraph's range are considered to be part of this paragraph. The range of indices of two separate paragraphs will never overlap. Defaults to: `null`. - startIndex (Integer): The zero-based start index of this text element, in Unicode code units. Defaults to: `null`. - textRun (TextRun): A TextElement representing a run of text where all of the characters in the run have the same TextStyle. The `start_index` and `end_index` of TextRuns will always be fully contained in the index range of a single `paragraph_marker` TextElement. In other words, a TextRun will never span multiple paragraphs. Defaults to: `null`. """ defstruct [ :"autoText", :"endIndex", :"paragraphMarker", :"startIndex", :"textRun" ] end defimpl Poison.Decoder, for: GoogleApi.Slides.V1.Model.TextElement do import GoogleApi.Slides.V1.Deserializer def decode(value, options) do value |> deserialize(:"autoText", :struct, GoogleApi.Slides.V1.Model.AutoText, options) |> deserialize(:"paragraphMarker", :struct, GoogleApi.Slides.V1.Model.ParagraphMarker, options) |> deserialize(:"textRun", :struct, GoogleApi.Slides.V1.Model.TextRun, options) end end defimpl Poison.Encoder, for: GoogleApi.Slides.V1.Model.TextElement do def encode(value, options) do GoogleApi.Slides.V1.Deserializer.serialize_non_nil(value, options) end end