Google Docs API . documents

Instance Methods

batchUpdate(documentId, body=None, x__xgafv=None)

Applies one or more updates to the document. Each request is validated before being applied. If any request is not valid, then the entire request will fail and nothing will be applied. Some requests have replies to give you some information about how they are applied. Other requests do not need to return information; these each return an empty reply. The order of replies matches that of the requests. For example, suppose you call batchUpdate with four updates, and only the third one returns information. The response would have two empty replies, the reply to the third request, and another empty reply, in that order. Because other users may be editing the document, the document might not exactly reflect your changes: your changes may be altered with respect to collaborator changes. If there are no collaborators, the document should reflect your changes. In any case, the updates in your request are guaranteed to be applied together atomically.

close()

Close httplib2 connections.

create(body=None, x__xgafv=None)

Creates a blank document using the title given in the request. Other fields in the request, including any provided content, are ignored. Returns the created document.

get(documentId, suggestionsViewMode=None, x__xgafv=None)

Gets the latest version of the specified document.

Method Details

batchUpdate(documentId, body=None, x__xgafv=None)
Applies one or more updates to the document. Each request is validated before being applied. If any request is not valid, then the entire request will fail and nothing will be applied. Some requests have replies to give you some information about how they are applied. Other requests do not need to return information; these each return an empty reply. The order of replies matches that of the requests. For example, suppose you call batchUpdate with four updates, and only the third one returns information. The response would have two empty replies, the reply to the third request, and another empty reply, in that order. Because other users may be editing the document, the document might not exactly reflect your changes: your changes may be altered with respect to collaborator changes. If there are no collaborators, the document should reflect your changes. In any case, the updates in your request are guaranteed to be applied together atomically.

Args:
  documentId: string, The ID of the document to update. (required)
  body: object, The request body.
    The object takes the form of:

{ # Request message for BatchUpdateDocument.
  "requests": [ # A list of updates to apply to the document.
    { # A single update to apply to a document.
      "createFooter": { # Creates a Footer. The new footer is applied to the SectionStyle at the location of the SectionBreak if specified, otherwise it is applied to the DocumentStyle. If a footer of the specified type already exists, a 400 bad request error is returned. # Creates a footer.
        "sectionBreakLocation": { # A particular location in the document. # The location of the SectionBreak immediately preceding the section whose SectionStyle this footer should belong to. If this is unset or refers to the first section break in the document, the footer applies to the document style.
          "index": 42, # The zero-based index, in UTF-16 code units. The index is relative to the beginning of the segment specified by segment_id.
          "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty segment ID signifies the document's body.
        },
        "type": "A String", # The type of footer to create.
      },
      "createFootnote": { # Creates a Footnote segment and inserts a new FootnoteReference to it at the given location. The new Footnote segment will contain a space followed by a newline character. # Creates a footnote.
        "endOfSegmentLocation": { # Location at the end of a body, header, footer or footnote. The location is immediately before the last newline in the document segment. # Inserts the footnote reference at the end of the document body. Footnote references cannot be inserted inside a header, footer or footnote. Since footnote references can only be inserted in the body, the segment ID field must be empty.
          "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty segment ID signifies the document's body.
        },
        "location": { # A particular location in the document. # Inserts the footnote reference at a specific index in the document. The footnote reference must be inserted inside the bounds of an existing Paragraph. For instance, it cannot be inserted at a table's start index (i.e. between the table and its preceding paragraph). Footnote references cannot be inserted inside an equation, header, footer or footnote. Since footnote references can only be inserted in the body, the segment ID field must be empty.
          "index": 42, # The zero-based index, in UTF-16 code units. The index is relative to the beginning of the segment specified by segment_id.
          "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty segment ID signifies the document's body.
        },
      },
      "createHeader": { # Creates a Header. The new header is applied to the SectionStyle at the location of the SectionBreak if specified, otherwise it is applied to the DocumentStyle. If a header of the specified type already exists, a 400 bad request error is returned. # Creates a header.
        "sectionBreakLocation": { # A particular location in the document. # The location of the SectionBreak which begins the section this header should belong to. If `section_break_location' is unset or if it refers to the first section break in the document body, the header applies to the DocumentStyle
          "index": 42, # The zero-based index, in UTF-16 code units. The index is relative to the beginning of the segment specified by segment_id.
          "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty segment ID signifies the document's body.
        },
        "type": "A String", # The type of header to create.
      },
      "createNamedRange": { # Creates a NamedRange referencing the given range. # Creates a named range.
        "name": "A String", # The name of the NamedRange. Names do not need to be unique. Names must be at least 1 character and no more than 256 characters, measured in UTF-16 code units.
        "range": { # Specifies a contiguous range of text. # The range to apply the name to.
          "endIndex": 42, # The zero-based end index of this range, exclusive, in UTF-16 code units. In all current uses, an end index must be provided. This field is an Int32Value in order to accommodate future use cases with open-ended ranges.
          "segmentId": "A String", # The ID of the header, footer, or footnote that this range is contained in. An empty segment ID signifies the document's body.
          "startIndex": 42, # The zero-based start index of this range, in UTF-16 code units. In all current uses, a start index must be provided. This field is an Int32Value in order to accommodate future use cases with open-ended ranges.
        },
      },
      "createParagraphBullets": { # Creates bullets for all of the paragraphs that overlap with the given range. The nesting level of each paragraph will be determined by counting leading tabs in front of each paragraph. To avoid excess space between the bullet and the corresponding paragraph, these leading tabs are removed by this request. This may change the indices of parts of the text. If the paragraph immediately before paragraphs being updated is in a list with a matching preset, the paragraphs being updated are added to that preceding list. # Creates bullets for paragraphs.
        "bulletPreset": "A String", # The kinds of bullet glyphs to be used.
        "range": { # Specifies a contiguous range of text. # The range to apply the bullet preset to.
          "endIndex": 42, # The zero-based end index of this range, exclusive, in UTF-16 code units. In all current uses, an end index must be provided. This field is an Int32Value in order to accommodate future use cases with open-ended ranges.
          "segmentId": "A String", # The ID of the header, footer, or footnote that this range is contained in. An empty segment ID signifies the document's body.
          "startIndex": 42, # The zero-based start index of this range, in UTF-16 code units. In all current uses, a start index must be provided. This field is an Int32Value in order to accommodate future use cases with open-ended ranges.
        },
      },
      "deleteContentRange": { # Deletes content from the document. # Deletes content from the document.
        "range": { # Specifies a contiguous range of text. # The range of content to delete. Deleting text that crosses a paragraph boundary may result in changes to paragraph styles, lists, positioned objects and bookmarks as the two paragraphs are merged. Attempting to delete certain ranges can result in an invalid document structure in which case a 400 bad request error is returned. Some examples of invalid delete requests include: * Deleting one code unit of a surrogate pair. * Deleting the last newline character of a Body, Header, Footer, Footnote, TableCell or TableOfContents. * Deleting the start or end of a Table, TableOfContents or Equation without deleting the entire element. * Deleting the newline character before a Table, TableOfContents or SectionBreak without deleting the element. * Deleting individual rows or cells of a table. Deleting the content within a table cell is allowed.
          "endIndex": 42, # The zero-based end index of this range, exclusive, in UTF-16 code units. In all current uses, an end index must be provided. This field is an Int32Value in order to accommodate future use cases with open-ended ranges.
          "segmentId": "A String", # The ID of the header, footer, or footnote that this range is contained in. An empty segment ID signifies the document's body.
          "startIndex": 42, # The zero-based start index of this range, in UTF-16 code units. In all current uses, a start index must be provided. This field is an Int32Value in order to accommodate future use cases with open-ended ranges.
        },
      },
      "deleteFooter": { # Deletes a Footer from the document. # Deletes a footer from the document.
        "footerId": "A String", # The id of the footer to delete. If this footer is defined on DocumentStyle, the reference to this footer is removed, resulting in no footer of that type for the first section of the document. If this footer is defined on a SectionStyle, the reference to this footer is removed and the footer of that type is now continued from the previous section.
      },
      "deleteHeader": { # Deletes a Header from the document. # Deletes a header from the document.
        "headerId": "A String", # The id of the header to delete. If this header is defined on DocumentStyle, the reference to this header is removed, resulting in no header of that type for the first section of the document. If this header is defined on a SectionStyle, the reference to this header is removed and the header of that type is now continued from the previous section.
      },
      "deleteNamedRange": { # Deletes a NamedRange. # Deletes a named range.
        "name": "A String", # The name of the range(s) to delete. All named ranges with the given name will be deleted.
        "namedRangeId": "A String", # The ID of the named range to delete.
      },
      "deleteParagraphBullets": { # Deletes bullets from all of the paragraphs that overlap with the given range. The nesting level of each paragraph will be visually preserved by adding indent to the start of the corresponding paragraph. # Deletes bullets from paragraphs.
        "range": { # Specifies a contiguous range of text. # The range to delete bullets from.
          "endIndex": 42, # The zero-based end index of this range, exclusive, in UTF-16 code units. In all current uses, an end index must be provided. This field is an Int32Value in order to accommodate future use cases with open-ended ranges.
          "segmentId": "A String", # The ID of the header, footer, or footnote that this range is contained in. An empty segment ID signifies the document's body.
          "startIndex": 42, # The zero-based start index of this range, in UTF-16 code units. In all current uses, a start index must be provided. This field is an Int32Value in order to accommodate future use cases with open-ended ranges.
        },
      },
      "deletePositionedObject": { # Deletes a PositionedObject from the document. # Deletes a positioned object from the document.
        "objectId": "A String", # The ID of the positioned object to delete.
      },
      "deleteTableColumn": { # Deletes a column from a table. # Deletes a column from a table.
        "tableCellLocation": { # Location of a single cell within a table. # The reference table cell location from which the column will be deleted. The column this cell spans will be deleted. If this is a merged cell that spans multiple columns, all columns that the cell spans will be deleted. If no columns remain in the table after this deletion, the whole table is deleted.
          "columnIndex": 42, # The zero-based column index. For example, the second column in the table has a column index of 1.
          "rowIndex": 42, # The zero-based row index. For example, the second row in the table has a row index of 1.
          "tableStartLocation": { # A particular location in the document. # The location where the table starts in the document.
            "index": 42, # The zero-based index, in UTF-16 code units. The index is relative to the beginning of the segment specified by segment_id.
            "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty segment ID signifies the document's body.
          },
        },
      },
      "deleteTableRow": { # Deletes a row from a table. # Deletes a row from a table.
        "tableCellLocation": { # Location of a single cell within a table. # The reference table cell location from which the row will be deleted. The row this cell spans will be deleted. If this is a merged cell that spans multiple rows, all rows that the cell spans will be deleted. If no rows remain in the table after this deletion, the whole table is deleted.
          "columnIndex": 42, # The zero-based column index. For example, the second column in the table has a column index of 1.
          "rowIndex": 42, # The zero-based row index. For example, the second row in the table has a row index of 1.
          "tableStartLocation": { # A particular location in the document. # The location where the table starts in the document.
            "index": 42, # The zero-based index, in UTF-16 code units. The index is relative to the beginning of the segment specified by segment_id.
            "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty segment ID signifies the document's body.
          },
        },
      },
      "insertInlineImage": { # Inserts an InlineObject containing an image at the given location. # Inserts an inline image at the specified location.
        "endOfSegmentLocation": { # Location at the end of a body, header, footer or footnote. The location is immediately before the last newline in the document segment. # Inserts the text at the end of a header, footer or the document body. Inline images cannot be inserted inside a footnote.
          "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty segment ID signifies the document's body.
        },
        "location": { # A particular location in the document. # Inserts the image at a specific index in the document. The image must be inserted inside the bounds of an existing Paragraph. For instance, it cannot be inserted at a table's start index (i.e. between the table and its preceding paragraph). Inline images cannot be inserted inside a footnote or equation.
          "index": 42, # The zero-based index, in UTF-16 code units. The index is relative to the beginning of the segment specified by segment_id.
          "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty segment ID signifies the document's body.
        },
        "objectSize": { # A width and height. # The size that the image should appear as in the document. This property is optional and the final size of the image in the document is determined by the following rules: * If neither width nor height is specified, then a default size of the image is calculated based on its resolution. * If one dimension is specified then the other dimension is calculated to preserve the aspect ratio of the image. * If both width and height are specified, the image is scaled to fit within the provided dimensions while maintaining its aspect ratio.
          "height": { # A magnitude in a single direction in the specified units. # The height of the object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "width": { # A magnitude in a single direction in the specified units. # The width of the object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
        },
        "uri": "A String", # The image URI. The image is fetched once at insertion time and a copy is stored for display inside the document. Images must be less than 50MB in size, cannot exceed 25 megapixels, and must be in one of PNG, JPEG, or GIF format. The provided URI must be publicly accessible and at most 2 kB in length. The URI itself is saved with the image, and exposed via the ImageProperties.content_uri field.
      },
      "insertPageBreak": { # Inserts a page break followed by a newline at the specified location. # Inserts a page break at the specified location.
        "endOfSegmentLocation": { # Location at the end of a body, header, footer or footnote. The location is immediately before the last newline in the document segment. # Inserts the page break at the end of the document body. Page breaks cannot be inserted inside a footnote, header or footer. Since page breaks can only be inserted inside the body, the segment ID field must be empty.
          "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty segment ID signifies the document's body.
        },
        "location": { # A particular location in the document. # Inserts the page break at a specific index in the document. The page break must be inserted inside the bounds of an existing Paragraph. For instance, it cannot be inserted at a table's start index (i.e. between the table and its preceding paragraph). Page breaks cannot be inserted inside a table, equation, footnote, header or footer. Since page breaks can only be inserted inside the body, the segment ID field must be empty.
          "index": 42, # The zero-based index, in UTF-16 code units. The index is relative to the beginning of the segment specified by segment_id.
          "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty segment ID signifies the document's body.
        },
      },
      "insertSectionBreak": { # Inserts a section break at the given location. A newline character will be inserted before the section break. # Inserts a section break at the specified location.
        "endOfSegmentLocation": { # Location at the end of a body, header, footer or footnote. The location is immediately before the last newline in the document segment. # Inserts a newline and a section break at the end of the document body. Section breaks cannot be inserted inside a footnote, header or footer. Because section breaks can only be inserted inside the body, the segment ID field must be empty.
          "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty segment ID signifies the document's body.
        },
        "location": { # A particular location in the document. # Inserts a newline and a section break at a specific index in the document. The section break must be inserted inside the bounds of an existing Paragraph. For instance, it cannot be inserted at a table's start index (i.e. between the table and its preceding paragraph). Section breaks cannot be inserted inside a table, equation, footnote, header, or footer. Since section breaks can only be inserted inside the body, the segment ID field must be empty.
          "index": 42, # The zero-based index, in UTF-16 code units. The index is relative to the beginning of the segment specified by segment_id.
          "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty segment ID signifies the document's body.
        },
        "sectionType": "A String", # The type of section to insert.
      },
      "insertTable": { # Inserts a table at the specified location. A newline character will be inserted before the inserted table. # Inserts a table at the specified location.
        "columns": 42, # The number of columns in the table.
        "endOfSegmentLocation": { # Location at the end of a body, header, footer or footnote. The location is immediately before the last newline in the document segment. # Inserts the table at the end of the given header, footer or document body. A newline character will be inserted before the inserted table. Tables cannot be inserted inside a footnote.
          "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty segment ID signifies the document's body.
        },
        "location": { # A particular location in the document. # Inserts the table at a specific model index. A newline character will be inserted before the inserted table, therefore the table start index will be at the specified location index + 1. The table must be inserted inside the bounds of an existing Paragraph. For instance, it cannot be inserted at a table's start index (i.e. between an existing table and its preceding paragraph). Tables cannot be inserted inside a footnote or equation.
          "index": 42, # The zero-based index, in UTF-16 code units. The index is relative to the beginning of the segment specified by segment_id.
          "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty segment ID signifies the document's body.
        },
        "rows": 42, # The number of rows in the table.
      },
      "insertTableColumn": { # Inserts an empty column into a table. # Inserts an empty column into a table.
        "insertRight": True or False, # Whether to insert new column to the right of the reference cell location. - `True`: insert to the right. - `False`: insert to the left.
        "tableCellLocation": { # Location of a single cell within a table. # The reference table cell location from which columns will be inserted. A new column will be inserted to the left (or right) of the column where the reference cell is. If the reference cell is a merged cell, a new column will be inserted to the left (or right) of the merged cell.
          "columnIndex": 42, # The zero-based column index. For example, the second column in the table has a column index of 1.
          "rowIndex": 42, # The zero-based row index. For example, the second row in the table has a row index of 1.
          "tableStartLocation": { # A particular location in the document. # The location where the table starts in the document.
            "index": 42, # The zero-based index, in UTF-16 code units. The index is relative to the beginning of the segment specified by segment_id.
            "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty segment ID signifies the document's body.
          },
        },
      },
      "insertTableRow": { # Inserts an empty row into a table. # Inserts an empty row into a table.
        "insertBelow": True or False, # Whether to insert new row below the reference cell location. - `True`: insert below the cell. - `False`: insert above the cell.
        "tableCellLocation": { # Location of a single cell within a table. # The reference table cell location from which rows will be inserted. A new row will be inserted above (or below) the row where the reference cell is. If the reference cell is a merged cell, a new row will be inserted above (or below) the merged cell.
          "columnIndex": 42, # The zero-based column index. For example, the second column in the table has a column index of 1.
          "rowIndex": 42, # The zero-based row index. For example, the second row in the table has a row index of 1.
          "tableStartLocation": { # A particular location in the document. # The location where the table starts in the document.
            "index": 42, # The zero-based index, in UTF-16 code units. The index is relative to the beginning of the segment specified by segment_id.
            "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty segment ID signifies the document's body.
          },
        },
      },
      "insertText": { # Inserts text at the specified location. # Inserts text at the specified location.
        "endOfSegmentLocation": { # Location at the end of a body, header, footer or footnote. The location is immediately before the last newline in the document segment. # Inserts the text at the end of a header, footer, footnote or the document body.
          "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty segment ID signifies the document's body.
        },
        "location": { # A particular location in the document. # Inserts the text at a specific index in the document. Text must be inserted inside the bounds of an existing Paragraph. For instance, text cannot be inserted at a table's start index (i.e. between the table and its preceding paragraph). The text must be inserted in the preceding paragraph.
          "index": 42, # The zero-based index, in UTF-16 code units. The index is relative to the beginning of the segment specified by segment_id.
          "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty segment ID signifies the document's body.
        },
        "text": "A String", # The text to be inserted. Inserting a newline character will implicitly create a new Paragraph at that index. The paragraph style of the new paragraph will be copied from the paragraph at the current insertion index, including lists and bullets. Text styles for inserted text will be determined automatically, generally preserving the styling of neighboring text. In most cases, the text style for the inserted text will match the text immediately before the insertion index. Some control characters (U+0000-U+0008, U+000C-U+001F) and characters from the Unicode Basic Multilingual Plane Private Use Area (U+E000-U+F8FF) will be stripped out of the inserted text.
      },
      "mergeTableCells": { # Merges cells in a Table. # Merges cells in a table.
        "tableRange": { # A table range represents a reference to a subset of a table. It's important to note that the cells specified by a table range do not necessarily form a rectangle. For example, let's say we have a 3 x 3 table where all the cells of the last row are merged together. The table looks like this: [ ] A table range with table cell location = (table_start_location, row = 0, column = 0), row span = 3 and column span = 2 specifies the following cells: x x [ x x x ] # The table range specifying which cells of the table to merge. Any text in the cells being merged will be concatenated and stored in the "head" cell of the range. This is the upper-left cell of the range when the content direction is left to right, and the upper-right cell of the range otherwise. If the range is non-rectangular (which can occur in some cases where the range covers cells that are already merged or where the table is non-rectangular), a 400 bad request error is returned.
          "columnSpan": 42, # The column span of the table range.
          "rowSpan": 42, # The row span of the table range.
          "tableCellLocation": { # Location of a single cell within a table. # The cell location where the table range starts.
            "columnIndex": 42, # The zero-based column index. For example, the second column in the table has a column index of 1.
            "rowIndex": 42, # The zero-based row index. For example, the second row in the table has a row index of 1.
            "tableStartLocation": { # A particular location in the document. # The location where the table starts in the document.
              "index": 42, # The zero-based index, in UTF-16 code units. The index is relative to the beginning of the segment specified by segment_id.
              "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty segment ID signifies the document's body.
            },
          },
        },
      },
      "pinTableHeaderRows": { # Updates the number of pinned table header rows in a table. # Updates the number of pinned header rows in a table.
        "pinnedHeaderRowsCount": 42, # The number of table rows to pin, where 0 implies that all rows are unpinned.
        "tableStartLocation": { # A particular location in the document. # The location where the table starts in the document.
          "index": 42, # The zero-based index, in UTF-16 code units. The index is relative to the beginning of the segment specified by segment_id.
          "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty segment ID signifies the document's body.
        },
      },
      "replaceAllText": { # Replaces all instances of text matching a criteria with replace text. # Replaces all instances of the specified text.
        "containsText": { # A criteria that matches a specific string of text in the document. # Finds text in the document matching this substring.
          "matchCase": True or False, # Indicates whether the search should respect case: - `True`: the search is case sensitive. - `False`: the search is case insensitive.
          "text": "A String", # The text to search for in the document.
        },
        "replaceText": "A String", # The text that will replace the matched text.
      },
      "replaceImage": { # Replaces an existing image with a new image. Replacing an image removes some image effects from the existing image in order to mirror the behavior of the Docs editor. # Replaces an image in the document.
        "imageObjectId": "A String", # The ID of the existing image that will be replaced. The ID can be retrieved from the response of a get request.
        "imageReplaceMethod": "A String", # The replacement method.
        "uri": "A String", # The URI of the new image. The image is fetched once at insertion time and a copy is stored for display inside the document. Images must be less than 50MB, cannot exceed 25 megapixels, and must be in PNG, JPEG, or GIF format. The provided URI can't surpass 2 KB in length. The URI is saved with the image, and exposed through the ImageProperties.source_uri field.
      },
      "replaceNamedRangeContent": { # Replaces the contents of the specified NamedRange or NamedRanges with the given replacement content. Note that an individual NamedRange may consist of multiple discontinuous ranges. In this case, only the content in the first range will be replaced. The other ranges and their content will be deleted. In cases where replacing or deleting any ranges would result in an invalid document structure, a 400 bad request error is returned. # Replaces the content in a named range.
        "namedRangeId": "A String", # The ID of the named range whose content will be replaced. If there is no named range with the given ID a 400 bad request error is returned.
        "namedRangeName": "A String", # The name of the NamedRanges whose content will be replaced. If there are multiple named ranges with the given name, then the content of each one will be replaced. If there are no named ranges with the given name, then the request will be a no-op.
        "text": "A String", # Replaces the content of the specified named range(s) with the given text.
      },
      "unmergeTableCells": { # Unmerges cells in a Table. # Unmerges cells in a table.
        "tableRange": { # A table range represents a reference to a subset of a table. It's important to note that the cells specified by a table range do not necessarily form a rectangle. For example, let's say we have a 3 x 3 table where all the cells of the last row are merged together. The table looks like this: [ ] A table range with table cell location = (table_start_location, row = 0, column = 0), row span = 3 and column span = 2 specifies the following cells: x x [ x x x ] # The table range specifying which cells of the table to unmerge. All merged cells in this range will be unmerged, and cells that are already unmerged will not be affected. If the range has no merged cells, the request will do nothing. If there is text in any of the merged cells, the text will remain in the "head" cell of the resulting block of unmerged cells. The "head" cell is the upper-left cell when the content direction is from left to right, and the upper-right otherwise.
          "columnSpan": 42, # The column span of the table range.
          "rowSpan": 42, # The row span of the table range.
          "tableCellLocation": { # Location of a single cell within a table. # The cell location where the table range starts.
            "columnIndex": 42, # The zero-based column index. For example, the second column in the table has a column index of 1.
            "rowIndex": 42, # The zero-based row index. For example, the second row in the table has a row index of 1.
            "tableStartLocation": { # A particular location in the document. # The location where the table starts in the document.
              "index": 42, # The zero-based index, in UTF-16 code units. The index is relative to the beginning of the segment specified by segment_id.
              "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty segment ID signifies the document's body.
            },
          },
        },
      },
      "updateDocumentStyle": { # Updates the DocumentStyle. # Updates the style of the document.
        "documentStyle": { # The style of the document. # The styles to set on the document. Certain document style changes may cause other changes in order to mirror the behavior of the Docs editor. See the documentation of DocumentStyle for more information.
          "background": { # Represents the background of a document. # The background of the document. Documents cannot have a transparent background color.
            "color": { # A color that can either be fully opaque or fully transparent. # The background color.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
          },
          "defaultFooterId": "A String", # The ID of the default footer. If not set, there's no default footer. This property is read-only.
          "defaultHeaderId": "A String", # The ID of the default header. If not set, there's no default header. This property is read-only.
          "evenPageFooterId": "A String", # The ID of the footer used only for even pages. The value of use_even_page_header_footer determines whether to use the default_footer_id or this value for the footer on even pages. If not set, there's no even page footer. This property is read-only.
          "evenPageHeaderId": "A String", # The ID of the header used only for even pages. The value of use_even_page_header_footer determines whether to use the default_header_id or this value for the header on even pages. If not set, there's no even page header. This property is read-only.
          "firstPageFooterId": "A String", # The ID of the footer used only for the first page. If not set then a unique footer for the first page does not exist. The value of use_first_page_header_footer determines whether to use the default_footer_id or this value for the footer on the first page. If not set, there's no first page footer. This property is read-only.
          "firstPageHeaderId": "A String", # The ID of the header used only for the first page. If not set then a unique header for the first page does not exist. The value of use_first_page_header_footer determines whether to use the default_header_id or this value for the header on the first page. If not set, there's no first page header. This property is read-only.
          "flipPageOrientation": True or False, # Optional. Indicates whether to flip the dimensions of the page_size, which allows changing the page orientation between portrait and landscape.
          "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom page margin. Updating the bottom page margin on the document style clears the bottom page margin on all section styles.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "marginFooter": { # A magnitude in a single direction in the specified units. # The amount of space between the bottom of the page and the contents of the footer.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "marginHeader": { # A magnitude in a single direction in the specified units. # The amount of space between the top of the page and the contents of the header.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "marginLeft": { # A magnitude in a single direction in the specified units. # The left page margin. Updating the left page margin on the document style clears the left page margin on all section styles. It may also cause columns to resize in all sections.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "marginRight": { # A magnitude in a single direction in the specified units. # The right page margin. Updating the right page margin on the document style clears the right page margin on all section styles. It may also cause columns to resize in all sections.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "marginTop": { # A magnitude in a single direction in the specified units. # The top page margin. Updating the top page margin on the document style clears the top page margin on all section styles.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "pageNumberStart": 42, # The page number from which to start counting the number of pages.
          "pageSize": { # A width and height. # The size of a page in the document.
            "height": { # A magnitude in a single direction in the specified units. # The height of the object.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "width": { # A magnitude in a single direction in the specified units. # The width of the object.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "useCustomHeaderFooterMargins": True or False, # Indicates whether DocumentStyle margin_header, SectionStyle margin_header and DocumentStyle margin_footer, SectionStyle margin_footer are respected. When false, the default values in the Docs editor for header and footer margin are used. This property is read-only.
          "useEvenPageHeaderFooter": True or False, # Indicates whether to use the even page header / footer IDs for the even pages.
          "useFirstPageHeaderFooter": True or False, # Indicates whether to use the first page header / footer IDs for the first page.
        },
        "fields": "A String", # The fields that should be updated. At least one field must be specified. The root `document_style` is implied and should not be specified. A single `"*"` can be used as short-hand for listing every field. For example to update the background, set `fields` to `"background"`.
      },
      "updateParagraphStyle": { # Update the styling of all paragraphs that overlap with the given range. # Updates the paragraph style at the specified range.
        "fields": "A String", # The fields that should be updated. At least one field must be specified. The root `paragraph_style` is implied and should not be specified. A single `"*"` can be used as short-hand for listing every field. For example, to update the paragraph style's alignment property, set `fields` to `"alignment"`. To reset a property to its default value, include its field name in the field mask but leave the field itself unset.
        "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The styles to set on the paragraphs. Certain paragraph style changes may cause other changes in order to mirror the behavior of the Docs editor. See the documentation of ParagraphStyle for more information.
          "alignment": "A String", # The text alignment for this paragraph.
          "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
          "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
            "dashStyle": "A String", # The dash style of the border.
            "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
            "dashStyle": "A String", # The dash style of the border.
            "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
            "dashStyle": "A String", # The dash style of the border.
            "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
            "dashStyle": "A String", # The dash style of the border.
            "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
            "dashStyle": "A String", # The dash style of the border.
            "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
          "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
          "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
          "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
          "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
          "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
          "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
          "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
            "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
          },
          "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "spacingMode": "A String", # The spacing mode for the paragraph.
          "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
            { # A tab stop within a paragraph.
              "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
              "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
            },
          ],
        },
        "range": { # Specifies a contiguous range of text. # The range overlapping the paragraphs to style.
          "endIndex": 42, # The zero-based end index of this range, exclusive, in UTF-16 code units. In all current uses, an end index must be provided. This field is an Int32Value in order to accommodate future use cases with open-ended ranges.
          "segmentId": "A String", # The ID of the header, footer, or footnote that this range is contained in. An empty segment ID signifies the document's body.
          "startIndex": 42, # The zero-based start index of this range, in UTF-16 code units. In all current uses, a start index must be provided. This field is an Int32Value in order to accommodate future use cases with open-ended ranges.
        },
      },
      "updateSectionStyle": { # Updates the SectionStyle. # Updates the section style of the specified range.
        "fields": "A String", # The fields that should be updated. At least one field must be specified. The root `section_style` is implied and must not be specified. A single `"*"` can be used as short-hand for listing every field. For example to update the left margin, set `fields` to `"margin_left"`.
        "range": { # Specifies a contiguous range of text. # The range overlapping the sections to style. Because section breaks can only be inserted inside the body, the segment ID field must be empty.
          "endIndex": 42, # The zero-based end index of this range, exclusive, in UTF-16 code units. In all current uses, an end index must be provided. This field is an Int32Value in order to accommodate future use cases with open-ended ranges.
          "segmentId": "A String", # The ID of the header, footer, or footnote that this range is contained in. An empty segment ID signifies the document's body.
          "startIndex": 42, # The zero-based start index of this range, in UTF-16 code units. In all current uses, a start index must be provided. This field is an Int32Value in order to accommodate future use cases with open-ended ranges.
        },
        "sectionStyle": { # The styling that applies to a section. # The styles to be set on the section. Certain section style changes may cause other changes in order to mirror the behavior of the Docs editor. See the documentation of SectionStyle for more information.
          "columnProperties": [ # The section's columns properties. If empty, the section contains one column with the default properties in the Docs editor. A section can be updated to have no more than 3 columns. When updating this property, setting a concrete value is required. Unsetting this property will result in a 400 bad request error.
            { # Properties that apply to a section's column.
              "paddingEnd": { # A magnitude in a single direction in the specified units. # The padding at the end of the column.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "width": { # A magnitude in a single direction in the specified units. # Output only. The width of the column.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
            },
          ],
          "columnSeparatorStyle": "A String", # The style of column separators. This style can be set even when there's one column in the section. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
          "contentDirection": "A String", # The content direction of this section. If unset, the value defaults to LEFT_TO_RIGHT. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
          "defaultFooterId": "A String", # The ID of the default footer. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's default_footer_id. This property is read-only.
          "defaultHeaderId": "A String", # The ID of the default header. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's default_header_id. This property is read-only.
          "evenPageFooterId": "A String", # The ID of the footer used only for even pages. If the value of DocumentStyle's use_even_page_header_footer is true, this value is used for the footers on even pages in the section. If it is false, the footers on even pages use the default_footer_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's even_page_footer_id. This property is read-only.
          "evenPageHeaderId": "A String", # The ID of the header used only for even pages. If the value of DocumentStyle's use_even_page_header_footer is true, this value is used for the headers on even pages in the section. If it is false, the headers on even pages use the default_header_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's even_page_header_id. This property is read-only.
          "firstPageFooterId": "A String", # The ID of the footer used only for the first page of the section. If use_first_page_header_footer is true, this value is used for the footer on the first page of the section. If it's false, the footer on the first page of the section uses the default_footer_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's first_page_footer_id. This property is read-only.
          "firstPageHeaderId": "A String", # The ID of the header used only for the first page of the section. If use_first_page_header_footer is true, this value is used for the header on the first page of the section. If it's false, the header on the first page of the section uses the default_header_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's first_page_header_id. This property is read-only.
          "flipPageOrientation": True or False, # Optional. Indicates whether to flip the dimensions of DocumentStyle's page_size for this section, which allows changing the page orientation between portrait and landscape. If unset, the value inherits from DocumentStyle's flip_page_orientation. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
          "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom page margin of the section. If unset, the value defaults to margin_bottom from DocumentStyle. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "marginFooter": { # A magnitude in a single direction in the specified units. # The footer margin of the section. If unset, the value defaults to margin_footer from DocumentStyle. If updated, use_custom_header_footer_margins is set to true on DocumentStyle. The value of use_custom_header_footer_margins on DocumentStyle indicates if a footer margin is being respected for this section When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "marginHeader": { # A magnitude in a single direction in the specified units. # The header margin of the section. If unset, the value defaults to margin_header from DocumentStyle. If updated, use_custom_header_footer_margins is set to true on DocumentStyle. The value of use_custom_header_footer_margins on DocumentStyle indicates if a header margin is being respected for this section. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "marginLeft": { # A magnitude in a single direction in the specified units. # The left page margin of the section. If unset, the value defaults to margin_left from DocumentStyle. Updating the left margin causes columns in this section to resize. Since the margin affects column width, it's applied before column properties. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "marginRight": { # A magnitude in a single direction in the specified units. # The right page margin of the section. If unset, the value defaults to margin_right from DocumentStyle. Updating the right margin causes columns in this section to resize. Since the margin affects column width, it's applied before column properties. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "marginTop": { # A magnitude in a single direction in the specified units. # The top page margin of the section. If unset, the value defaults to margin_top from DocumentStyle. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "pageNumberStart": 42, # The page number from which to start counting the number of pages for this section. If unset, page numbering continues from the previous section. If the value is unset in the first SectionBreak, refer to DocumentStyle's page_number_start. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
          "sectionType": "A String", # Output only. The type of section.
          "useFirstPageHeaderFooter": True or False, # Indicates whether to use the first page header / footer IDs for the first page of the section. If unset, it inherits from DocumentStyle's use_first_page_header_footer for the first section. If the value is unset for subsequent sectors, it should be interpreted as false. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
        },
      },
      "updateTableCellStyle": { # Updates the style of a range of table cells. # Updates the style of table cells.
        "fields": "A String", # The fields that should be updated. At least one field must be specified. The root `tableCellStyle` is implied and should not be specified. A single `"*"` can be used as short-hand for listing every field. For example to update the table cell background color, set `fields` to `"backgroundColor"`. To reset a property to its default value, include its field name in the field mask but leave the field itself unset.
        "tableCellStyle": { # The style of a TableCell. Inherited table cell styles are represented as unset fields in this message. A table cell style can inherit from the table's style. # The style to set on the table cells. When updating borders, if a cell shares a border with an adjacent cell, the corresponding border property of the adjacent cell is updated as well. Borders that are merged and invisible are not updated. Since updating a border shared by adjacent cells in the same request can cause conflicting border updates, border updates are applied in the following order: - `border_right` - `border_left` - `border_bottom` - `border_top`
          "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the cell.
            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
              "rgbColor": { # An RGB color. # The RGB color value.
                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
              },
            },
          },
          "borderBottom": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The bottom border of the cell.
            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
            "dashStyle": "A String", # The dash style of the border.
            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "borderLeft": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The left border of the cell.
            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
            "dashStyle": "A String", # The dash style of the border.
            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "borderRight": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The right border of the cell.
            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
            "dashStyle": "A String", # The dash style of the border.
            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "borderTop": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The top border of the cell.
            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
            "dashStyle": "A String", # The dash style of the border.
            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "columnSpan": 42, # The column span of the cell. This property is read-only.
          "contentAlignment": "A String", # The alignment of the content in the table cell. The default alignment matches the alignment for newly created table cells in the Docs editor.
          "paddingBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of the cell.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "paddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of the cell.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "paddingRight": { # A magnitude in a single direction in the specified units. # The right padding of the cell.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of the cell.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "rowSpan": 42, # The row span of the cell. This property is read-only.
        },
        "tableRange": { # A table range represents a reference to a subset of a table. It's important to note that the cells specified by a table range do not necessarily form a rectangle. For example, let's say we have a 3 x 3 table where all the cells of the last row are merged together. The table looks like this: [ ] A table range with table cell location = (table_start_location, row = 0, column = 0), row span = 3 and column span = 2 specifies the following cells: x x [ x x x ] # The table range representing the subset of the table to which the updates are applied.
          "columnSpan": 42, # The column span of the table range.
          "rowSpan": 42, # The row span of the table range.
          "tableCellLocation": { # Location of a single cell within a table. # The cell location where the table range starts.
            "columnIndex": 42, # The zero-based column index. For example, the second column in the table has a column index of 1.
            "rowIndex": 42, # The zero-based row index. For example, the second row in the table has a row index of 1.
            "tableStartLocation": { # A particular location in the document. # The location where the table starts in the document.
              "index": 42, # The zero-based index, in UTF-16 code units. The index is relative to the beginning of the segment specified by segment_id.
              "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty segment ID signifies the document's body.
            },
          },
        },
        "tableStartLocation": { # A particular location in the document. # The location where the table starts in the document. When specified, the updates are applied to all the cells in the table.
          "index": 42, # The zero-based index, in UTF-16 code units. The index is relative to the beginning of the segment specified by segment_id.
          "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty segment ID signifies the document's body.
        },
      },
      "updateTableColumnProperties": { # Updates the TableColumnProperties of columns in a table. # Updates the properties of columns in a table.
        "columnIndices": [ # The list of zero-based column indices whose property should be updated. If no indices are specified, all columns will be updated.
          42,
        ],
        "fields": "A String", # The fields that should be updated. At least one field must be specified. The root `tableColumnProperties` is implied and should not be specified. A single `"*"` can be used as short-hand for listing every field. For example to update the column width, set `fields` to `"width"`.
        "tableColumnProperties": { # The properties of a column in a table. # The table column properties to update. If the value of `table_column_properties#width` is less than 5 points (5/72 inch), a 400 bad request error is returned.
          "width": { # A magnitude in a single direction in the specified units. # The width of the column. Set when the column's `width_type` is FIXED_WIDTH.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "widthType": "A String", # The width type of the column.
        },
        "tableStartLocation": { # A particular location in the document. # The location where the table starts in the document.
          "index": 42, # The zero-based index, in UTF-16 code units. The index is relative to the beginning of the segment specified by segment_id.
          "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty segment ID signifies the document's body.
        },
      },
      "updateTableRowStyle": { # Updates the TableRowStyle of rows in a table. # Updates the row style in a table.
        "fields": "A String", # The fields that should be updated. At least one field must be specified. The root `tableRowStyle` is implied and should not be specified. A single `"*"` can be used as short-hand for listing every field. For example to update the minimum row height, set `fields` to `"min_row_height"`.
        "rowIndices": [ # The list of zero-based row indices whose style should be updated. If no indices are specified, all rows will be updated.
          42,
        ],
        "tableRowStyle": { # Styles that apply to a table row. # The styles to be set on the rows.
          "minRowHeight": { # A magnitude in a single direction in the specified units. # The minimum height of the row. The row will be rendered in the Docs editor at a height equal to or greater than this value in order to show all the content in the row's cells.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "preventOverflow": True or False, # Whether the row cannot overflow across page or column boundaries.
          "tableHeader": True or False, # Whether the row is a table header.
        },
        "tableStartLocation": { # A particular location in the document. # The location where the table starts in the document.
          "index": 42, # The zero-based index, in UTF-16 code units. The index is relative to the beginning of the segment specified by segment_id.
          "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty segment ID signifies the document's body.
        },
      },
      "updateTextStyle": { # Update the styling of text. # Updates the text style at the specified range.
        "fields": "A String", # The fields that should be updated. At least one field must be specified. The root `text_style` is implied and should not be specified. A single `"*"` can be used as short-hand for listing every field. For example, to update the text style to bold, set `fields` to `"bold"`. To reset a property to its default value, include its field name in the field mask but leave the field itself unset.
        "range": { # Specifies a contiguous range of text. # The range of text to style. The range may be extended to include adjacent newlines. If the range fully contains a paragraph belonging to a list, the paragraph's bullet is also updated with the matching text style. Ranges cannot be inserted inside a relative UpdateTextStyleRequest.
          "endIndex": 42, # The zero-based end index of this range, exclusive, in UTF-16 code units. In all current uses, an end index must be provided. This field is an Int32Value in order to accommodate future use cases with open-ended ranges.
          "segmentId": "A String", # The ID of the header, footer, or footnote that this range is contained in. An empty segment ID signifies the document's body.
          "startIndex": 42, # The zero-based start index of this range, in UTF-16 code units. In all current uses, a start index must be provided. This field is an Int32Value in order to accommodate future use cases with open-ended ranges.
        },
        "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The styles to set on the text. If the value for a particular style matches that of the parent, that style will be set to inherit. Certain text style changes may cause other changes in order to to mirror the behavior of the Docs editor. See the documentation of TextStyle for more information.
          "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
              "rgbColor": { # An RGB color. # The RGB color value.
                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
              },
            },
          },
          "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
          "bold": True or False, # Whether or not the text is rendered as bold.
          "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
              "rgbColor": { # An RGB color. # The RGB color value.
                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
              },
            },
          },
          "italic": True or False, # Whether or not the text is italicized.
          "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
            "bookmarkId": "A String", # The ID of a bookmark in this document.
            "headingId": "A String", # The ID of a heading in this document.
            "url": "A String", # An external URL.
          },
          "smallCaps": True or False, # Whether or not the text is in small capital letters.
          "strikethrough": True or False, # Whether or not the text is struck through.
          "underline": True or False, # Whether or not the text is underlined.
          "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
            "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
            "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
          },
        },
      },
    },
  ],
  "writeControl": { # Provides control over how write requests are executed. # Provides control over how write requests are executed.
    "requiredRevisionId": "A String", # The optional revision ID of the document the write request is applied to. If this is not the latest revision of the document, the request is not processed and returns a 400 bad request error. When a required revision ID is returned in a response, it indicates the revision ID of the document after the request was applied.
    "targetRevisionId": "A String", # The optional target revision ID of the document the write request is applied to. If collaborator changes have occurred after the document was read using the API, the changes produced by this write request are applied against the collaborator changes. This results in a new revision of the document that incorporates both the collaborator changes and the changes in the request, with the Docs server resolving conflicting changes. When using target revision ID, the API client can be thought of as another collaborator of the document. The target revision ID can only be used to write to recent versions of a document. If the target revision is too far behind the latest revision, the request is not processed and returns a 400 bad request error. The request should be tried again after retrieving the latest version of the document. Usually a revision ID remains valid for use as a target revision for several minutes after it's read, but for frequently edited documents this window might be shorter.
  },
}

  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Response message from a BatchUpdateDocument request.
  "documentId": "A String", # The ID of the document to which the updates were applied to.
  "replies": [ # The reply of the updates. This maps 1:1 with the updates, although replies to some requests may be empty.
    { # A single response from an update.
      "createFooter": { # The result of creating a footer. # The result of creating a footer.
        "footerId": "A String", # The ID of the created footer.
      },
      "createFootnote": { # The result of creating a footnote. # The result of creating a footnote.
        "footnoteId": "A String", # The ID of the created footnote.
      },
      "createHeader": { # The result of creating a header. # The result of creating a header.
        "headerId": "A String", # The ID of the created header.
      },
      "createNamedRange": { # The result of creating a named range. # The result of creating a named range.
        "namedRangeId": "A String", # The ID of the created named range.
      },
      "insertInlineImage": { # The result of inserting an inline image. # The result of inserting an inline image.
        "objectId": "A String", # The ID of the created InlineObject.
      },
      "insertInlineSheetsChart": { # The result of inserting an embedded Google Sheets chart. # The result of inserting an inline Google Sheets chart.
        "objectId": "A String", # The object ID of the inserted chart.
      },
      "replaceAllText": { # The result of replacing text. # The result of replacing text.
        "occurrencesChanged": 42, # The number of occurrences changed by replacing all text.
      },
    },
  ],
  "writeControl": { # Provides control over how write requests are executed. # The updated write control after applying the request.
    "requiredRevisionId": "A String", # The optional revision ID of the document the write request is applied to. If this is not the latest revision of the document, the request is not processed and returns a 400 bad request error. When a required revision ID is returned in a response, it indicates the revision ID of the document after the request was applied.
    "targetRevisionId": "A String", # The optional target revision ID of the document the write request is applied to. If collaborator changes have occurred after the document was read using the API, the changes produced by this write request are applied against the collaborator changes. This results in a new revision of the document that incorporates both the collaborator changes and the changes in the request, with the Docs server resolving conflicting changes. When using target revision ID, the API client can be thought of as another collaborator of the document. The target revision ID can only be used to write to recent versions of a document. If the target revision is too far behind the latest revision, the request is not processed and returns a 400 bad request error. The request should be tried again after retrieving the latest version of the document. Usually a revision ID remains valid for use as a target revision for several minutes after it's read, but for frequently edited documents this window might be shorter.
  },
}
close()
Close httplib2 connections.
create(body=None, x__xgafv=None)
Creates a blank document using the title given in the request. Other fields in the request, including any provided content, are ignored. Returns the created document.

Args:
  body: object, The request body.
    The object takes the form of:

{ # A Google Docs document.
  "body": { # The document body. The body typically contains the full document contents except for headers, footers, and footnotes. # Output only. The main body of the document.
    "content": [ # The contents of the body. The indexes for the body's content begin at zero.
      { # A StructuralElement describes content that provides structure to the document.
        "endIndex": 42, # The zero-based end index of this structural element, exclusive, in UTF-16 code units.
        "paragraph": { # A StructuralElement representing a paragraph. A paragraph is a range of content that's terminated with a newline character. # A paragraph type of structural element.
          "bullet": { # Describes the bullet of a paragraph. # The bullet for this paragraph. If not present, the paragraph does not belong to a list.
            "listId": "A String", # The ID of the list this paragraph belongs to.
            "nestingLevel": 42, # The nesting level of this paragraph in the list.
            "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The paragraph-specific text style applied to this bullet.
              "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
              "bold": True or False, # Whether or not the text is rendered as bold.
              "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "italic": True or False, # Whether or not the text is italicized.
              "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                "bookmarkId": "A String", # The ID of a bookmark in this document.
                "headingId": "A String", # The ID of a heading in this document.
                "url": "A String", # An external URL.
              },
              "smallCaps": True or False, # Whether or not the text is in small capital letters.
              "strikethrough": True or False, # Whether or not the text is struck through.
              "underline": True or False, # Whether or not the text is underlined.
              "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
              },
            },
          },
          "elements": [ # The content of the paragraph, broken down into its component parts.
            { # A ParagraphElement describes content within a Paragraph.
              "autoText": { # A ParagraphElement representing a spot in the text that's dynamically replaced with content that can change over time, like a page number. # An auto text paragraph element.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. An AutoText may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
                "suggestedTextStyleChanges": { # The suggested text style changes to this AutoText, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TextStyle.
                    "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                      "bold": True or False, # Whether or not the text is rendered as bold.
                      "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "italic": True or False, # Whether or not the text is italicized.
                      "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                        "bookmarkId": "A String", # The ID of a bookmark in this document.
                        "headingId": "A String", # The ID of a heading in this document.
                        "url": "A String", # An external URL.
                      },
                      "smallCaps": True or False, # Whether or not the text is in small capital letters.
                      "strikethrough": True or False, # Whether or not the text is struck through.
                      "underline": True or False, # Whether or not the text is underlined.
                      "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                        "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                        "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                      },
                    },
                    "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                      "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                      "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                      "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                      "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                      "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                      "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                      "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                      "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                      "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                      "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                      "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                    },
                  },
                },
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this AutoText.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
                "type": "A String", # The type of this auto text.
              },
              "columnBreak": { # A ParagraphElement representing a column break. A column break makes the subsequent text start at the top of the next column. # A column break paragraph element.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. A ColumnBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
                "suggestedTextStyleChanges": { # The suggested text style changes to this ColumnBreak, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TextStyle.
                    "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                      "bold": True or False, # Whether or not the text is rendered as bold.
                      "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "italic": True or False, # Whether or not the text is italicized.
                      "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                        "bookmarkId": "A String", # The ID of a bookmark in this document.
                        "headingId": "A String", # The ID of a heading in this document.
                        "url": "A String", # An external URL.
                      },
                      "smallCaps": True or False, # Whether or not the text is in small capital letters.
                      "strikethrough": True or False, # Whether or not the text is struck through.
                      "underline": True or False, # Whether or not the text is underlined.
                      "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                        "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                        "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                      },
                    },
                    "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                      "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                      "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                      "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                      "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                      "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                      "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                      "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                      "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                      "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                      "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                      "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                    },
                  },
                },
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this ColumnBreak. Similar to text content, like text runs and footnote references, the text style of a column break can affect content layout as well as the styling of text inserted next to it.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
              },
              "endIndex": 42, # The zero-base end index of this paragraph element, exclusive, in UTF-16 code units.
              "equation": { # A ParagraphElement representing an equation. # An equation paragraph element.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. An Equation may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
              },
              "footnoteReference": { # A ParagraphElement representing a footnote reference. A footnote reference is the inline content rendered with a number and is used to identify the footnote. # A footnote reference paragraph element.
                "footnoteId": "A String", # The ID of the footnote that contains the content of this footnote reference.
                "footnoteNumber": "A String", # The rendered number of this footnote.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. A FootnoteReference may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
                "suggestedTextStyleChanges": { # The suggested text style changes to this FootnoteReference, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TextStyle.
                    "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                      "bold": True or False, # Whether or not the text is rendered as bold.
                      "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "italic": True or False, # Whether or not the text is italicized.
                      "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                        "bookmarkId": "A String", # The ID of a bookmark in this document.
                        "headingId": "A String", # The ID of a heading in this document.
                        "url": "A String", # An external URL.
                      },
                      "smallCaps": True or False, # Whether or not the text is in small capital letters.
                      "strikethrough": True or False, # Whether or not the text is struck through.
                      "underline": True or False, # Whether or not the text is underlined.
                      "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                        "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                        "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                      },
                    },
                    "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                      "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                      "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                      "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                      "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                      "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                      "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                      "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                      "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                      "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                      "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                      "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                    },
                  },
                },
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this FootnoteReference.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
              },
              "horizontalRule": { # A ParagraphElement representing a horizontal line. # A horizontal rule paragraph element.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. A HorizontalRule may have multiple insertion IDs if it is a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
                "suggestedTextStyleChanges": { # The suggested text style changes to this HorizontalRule, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TextStyle.
                    "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                      "bold": True or False, # Whether or not the text is rendered as bold.
                      "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "italic": True or False, # Whether or not the text is italicized.
                      "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                        "bookmarkId": "A String", # The ID of a bookmark in this document.
                        "headingId": "A String", # The ID of a heading in this document.
                        "url": "A String", # An external URL.
                      },
                      "smallCaps": True or False, # Whether or not the text is in small capital letters.
                      "strikethrough": True or False, # Whether or not the text is struck through.
                      "underline": True or False, # Whether or not the text is underlined.
                      "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                        "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                        "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                      },
                    },
                    "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                      "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                      "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                      "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                      "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                      "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                      "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                      "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                      "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                      "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                      "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                      "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                    },
                  },
                },
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this HorizontalRule. Similar to text content, like text runs and footnote references, the text style of a horizontal rule can affect content layout as well as the styling of text inserted next to it.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
              },
              "inlineObjectElement": { # A ParagraphElement that contains an InlineObject. # An inline object paragraph element.
                "inlineObjectId": "A String", # The ID of the InlineObject this element contains.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. An InlineObjectElement may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
                "suggestedTextStyleChanges": { # The suggested text style changes to this InlineObject, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TextStyle.
                    "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                      "bold": True or False, # Whether or not the text is rendered as bold.
                      "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "italic": True or False, # Whether or not the text is italicized.
                      "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                        "bookmarkId": "A String", # The ID of a bookmark in this document.
                        "headingId": "A String", # The ID of a heading in this document.
                        "url": "A String", # An external URL.
                      },
                      "smallCaps": True or False, # Whether or not the text is in small capital letters.
                      "strikethrough": True or False, # Whether or not the text is struck through.
                      "underline": True or False, # Whether or not the text is underlined.
                      "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                        "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                        "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                      },
                    },
                    "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                      "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                      "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                      "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                      "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                      "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                      "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                      "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                      "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                      "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                      "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                      "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                    },
                  },
                },
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this InlineObjectElement. Similar to text content, like text runs and footnote references, the text style of an inline object element can affect content layout as well as the styling of text inserted next to it.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
              },
              "pageBreak": { # A ParagraphElement representing a page break. A page break makes the subsequent text start at the top of the next page. # A page break paragraph element.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. A PageBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
                "suggestedTextStyleChanges": { # The suggested text style changes to this PageBreak, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TextStyle.
                    "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                      "bold": True or False, # Whether or not the text is rendered as bold.
                      "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "italic": True or False, # Whether or not the text is italicized.
                      "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                        "bookmarkId": "A String", # The ID of a bookmark in this document.
                        "headingId": "A String", # The ID of a heading in this document.
                        "url": "A String", # An external URL.
                      },
                      "smallCaps": True or False, # Whether or not the text is in small capital letters.
                      "strikethrough": True or False, # Whether or not the text is struck through.
                      "underline": True or False, # Whether or not the text is underlined.
                      "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                        "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                        "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                      },
                    },
                    "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                      "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                      "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                      "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                      "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                      "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                      "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                      "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                      "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                      "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                      "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                      "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                    },
                  },
                },
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this PageBreak. Similar to text content, like text runs and footnote references, the text style of a page break can affect content layout as well as the styling of text inserted next to it.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
              },
              "person": { # A person or email address mentioned in a document. These mentions behave as a single, immutable element containing the person's name or email address. # A paragraph element that links to a person or email address.
                "personId": "A String", # Output only. The unique ID of this link.
                "personProperties": { # Properties specific to a linked Person. # Output only. The properties of this Person. This field is always present.
                  "email": "A String", # Output only. The email address linked to this Person. This field is always present.
                  "name": "A String", # Output only. The name of the person if it's displayed in the link text instead of the person's email address.
                },
                "suggestedDeletionIds": [ # IDs for suggestions that remove this person link from the document. A Person might have multiple deletion IDs if, for example, multiple users suggest deleting it. If empty, then this person link isn't suggested for deletion.
                  "A String",
                ],
                "suggestedInsertionIds": [ # IDs for suggestions that insert this person link into the document. A Person might have multiple insertion IDs if it's a nested suggested change (a suggestion within a suggestion made by a different user, for example). If empty, then this person link isn't a suggested insertion.
                  "A String",
                ],
                "suggestedTextStyleChanges": { # The suggested text style changes to this Person, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TextStyle.
                    "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                      "bold": True or False, # Whether or not the text is rendered as bold.
                      "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "italic": True or False, # Whether or not the text is italicized.
                      "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                        "bookmarkId": "A String", # The ID of a bookmark in this document.
                        "headingId": "A String", # The ID of a heading in this document.
                        "url": "A String", # An external URL.
                      },
                      "smallCaps": True or False, # Whether or not the text is in small capital letters.
                      "strikethrough": True or False, # Whether or not the text is struck through.
                      "underline": True or False, # Whether or not the text is underlined.
                      "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                        "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                        "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                      },
                    },
                    "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                      "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                      "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                      "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                      "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                      "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                      "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                      "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                      "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                      "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                      "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                      "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                    },
                  },
                },
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this Person.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
              },
              "richLink": { # A link to a Google resource (such as a file in Drive, a YouTube video, or a Calendar event). # A paragraph element that links to a Google resource (such as a file in Google Drive, a YouTube video, or a Calendar event.)
                "richLinkId": "A String", # Output only. The ID of this link.
                "richLinkProperties": { # Properties specific to a RichLink. # Output only. The properties of this RichLink. This field is always present.
                  "mimeType": "A String", # Output only. The [MIME type](https://developers.google.com/drive/api/v3/mime-types) of the RichLink, if there's one (for example, when it's a file in Drive).
                  "title": "A String", # Output only. The title of the RichLink as displayed in the link. This title matches the title of the linked resource at the time of the insertion or last update of the link. This field is always present.
                  "uri": "A String", # Output only. The URI to the RichLink. This is always present.
                },
                "suggestedDeletionIds": [ # IDs for suggestions that remove this link from the document. A RichLink might have multiple deletion IDs if, for example, multiple users suggest deleting it. If empty, then this person link isn't suggested for deletion.
                  "A String",
                ],
                "suggestedInsertionIds": [ # IDs for suggestions that insert this link into the document. A RichLink might have multiple insertion IDs if it's a nested suggested change (a suggestion within a suggestion made by a different user, for example). If empty, then this person link isn't a suggested insertion.
                  "A String",
                ],
                "suggestedTextStyleChanges": { # The suggested text style changes to this RichLink, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TextStyle.
                    "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                      "bold": True or False, # Whether or not the text is rendered as bold.
                      "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "italic": True or False, # Whether or not the text is italicized.
                      "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                        "bookmarkId": "A String", # The ID of a bookmark in this document.
                        "headingId": "A String", # The ID of a heading in this document.
                        "url": "A String", # An external URL.
                      },
                      "smallCaps": True or False, # Whether or not the text is in small capital letters.
                      "strikethrough": True or False, # Whether or not the text is struck through.
                      "underline": True or False, # Whether or not the text is underlined.
                      "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                        "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                        "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                      },
                    },
                    "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                      "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                      "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                      "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                      "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                      "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                      "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                      "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                      "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                      "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                      "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                      "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                    },
                  },
                },
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this RichLink.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
              },
              "startIndex": 42, # The zero-based start index of this paragraph element, in UTF-16 code units.
              "textRun": { # A ParagraphElement that represents a run of text that all has the same styling. # A text run paragraph element.
                "content": "A String", # The text of this run. Any non-text elements in the run are replaced with the Unicode character U+E907.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. A TextRun may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
                "suggestedTextStyleChanges": { # The suggested text style changes to this run, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TextStyle.
                    "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                      "bold": True or False, # Whether or not the text is rendered as bold.
                      "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "italic": True or False, # Whether or not the text is italicized.
                      "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                        "bookmarkId": "A String", # The ID of a bookmark in this document.
                        "headingId": "A String", # The ID of a heading in this document.
                        "url": "A String", # An external URL.
                      },
                      "smallCaps": True or False, # Whether or not the text is in small capital letters.
                      "strikethrough": True or False, # Whether or not the text is struck through.
                      "underline": True or False, # Whether or not the text is underlined.
                      "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                        "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                        "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                      },
                    },
                    "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                      "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                      "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                      "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                      "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                      "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                      "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                      "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                      "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                      "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                      "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                      "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                    },
                  },
                },
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this run.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
              },
            },
          ],
          "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The style of this paragraph.
            "alignment": "A String", # The text alignment for this paragraph.
            "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
            "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
              "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "dashStyle": "A String", # The dash style of the border.
              "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
            },
            "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
              "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "dashStyle": "A String", # The dash style of the border.
              "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
            },
            "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
              "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "dashStyle": "A String", # The dash style of the border.
              "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
            },
            "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
              "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "dashStyle": "A String", # The dash style of the border.
              "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
            },
            "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
              "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "dashStyle": "A String", # The dash style of the border.
              "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
            },
            "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
            "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
            "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
            "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
            "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
            "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
            "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
            "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
              "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
            },
            "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "spacingMode": "A String", # The spacing mode for the paragraph.
            "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
              { # A tab stop within a paragraph.
                "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
                "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
            ],
          },
          "positionedObjectIds": [ # The IDs of the positioned objects tethered to this paragraph.
            "A String",
          ],
          "suggestedBulletChanges": { # The suggested changes to this paragraph's bullet.
            "a_key": { # A suggested change to a Bullet.
              "bullet": { # Describes the bullet of a paragraph. # A Bullet that only includes the changes made in this suggestion. This can be used along with the bullet_suggestion_state to see which fields have changed and their new values.
                "listId": "A String", # The ID of the list this paragraph belongs to.
                "nestingLevel": 42, # The nesting level of this paragraph in the list.
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The paragraph-specific text style applied to this bullet.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
              },
              "bulletSuggestionState": { # A mask that indicates which of the fields on the base Bullet have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base Bullet have been changed in this suggestion.
                "listIdSuggested": True or False, # Indicates if there was a suggested change to the list_id.
                "nestingLevelSuggested": True or False, # Indicates if there was a suggested change to the nesting_level.
                "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in text style have been changed in this suggestion.
                  "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                  "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                  "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                  "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                  "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                  "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                  "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                  "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                  "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                  "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                  "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                },
              },
            },
          },
          "suggestedParagraphStyleChanges": { # The suggested paragraph style changes to this paragraph, keyed by suggestion ID.
            "a_key": { # A suggested change to a ParagraphStyle.
              "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A ParagraphStyle that only includes the changes made in this suggestion. This can be used along with the paragraph_style_suggestion_state to see which fields have changed and their new values.
                "alignment": "A String", # The text alignment for this paragraph.
                "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
                "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                  "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "dashStyle": "A String", # The dash style of the border.
                  "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
                "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                  "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "dashStyle": "A String", # The dash style of the border.
                  "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
                "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                  "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "dashStyle": "A String", # The dash style of the border.
                  "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
                "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                  "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "dashStyle": "A String", # The dash style of the border.
                  "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
                "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                  "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "dashStyle": "A String", # The dash style of the border.
                  "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
                "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
                "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
                "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
                "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
                "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
                "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
                "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
                "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                },
                "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "spacingMode": "A String", # The spacing mode for the paragraph.
                "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
                  { # A tab stop within a paragraph.
                    "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
                    "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                ],
              },
              "paragraphStyleSuggestionState": { # A mask that indicates which of the fields on the base ParagraphStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base ParagraphStyle have been changed in this suggestion.
                "alignmentSuggested": True or False, # Indicates if there was a suggested change to alignment.
                "avoidWidowAndOrphanSuggested": True or False, # Indicates if there was a suggested change to avoid_widow_and_orphan.
                "borderBetweenSuggested": True or False, # Indicates if there was a suggested change to border_between.
                "borderBottomSuggested": True or False, # Indicates if there was a suggested change to border_bottom.
                "borderLeftSuggested": True or False, # Indicates if there was a suggested change to border_left.
                "borderRightSuggested": True or False, # Indicates if there was a suggested change to border_right.
                "borderTopSuggested": True or False, # Indicates if there was a suggested change to border_top.
                "directionSuggested": True or False, # Indicates if there was a suggested change to direction.
                "headingIdSuggested": True or False, # Indicates if there was a suggested change to heading_id.
                "indentEndSuggested": True or False, # Indicates if there was a suggested change to indent_end.
                "indentFirstLineSuggested": True or False, # Indicates if there was a suggested change to indent_first_line.
                "indentStartSuggested": True or False, # Indicates if there was a suggested change to indent_start.
                "keepLinesTogetherSuggested": True or False, # Indicates if there was a suggested change to keep_lines_together.
                "keepWithNextSuggested": True or False, # Indicates if there was a suggested change to keep_with_next.
                "lineSpacingSuggested": True or False, # Indicates if there was a suggested change to line_spacing.
                "namedStyleTypeSuggested": True or False, # Indicates if there was a suggested change to named_style_type.
                "pageBreakBeforeSuggested": True or False, # Indicates if there was a suggested change to page_break_before.
                "shadingSuggestionState": { # A mask that indicates which of the fields on the base Shading have been changed in this suggested change. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in shading have been changed in this suggestion.
                  "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to the Shading.
                },
                "spaceAboveSuggested": True or False, # Indicates if there was a suggested change to space_above.
                "spaceBelowSuggested": True or False, # Indicates if there was a suggested change to space_below.
                "spacingModeSuggested": True or False, # Indicates if there was a suggested change to spacing_mode.
              },
            },
          },
          "suggestedPositionedObjectIds": { # The IDs of the positioned objects suggested to be attached to this paragraph, keyed by suggestion ID.
            "a_key": { # A collection of object IDs.
              "objectIds": [ # The object IDs.
                "A String",
              ],
            },
          },
        },
        "sectionBreak": { # A StructuralElement representing a section break. A section is a range of content that has the same SectionStyle. A section break represents the start of a new section, and the section style applies to the section after the section break. The document body always begins with a section break. # A section break type of structural element.
          "sectionStyle": { # The styling that applies to a section. # The style of the section after this section break.
            "columnProperties": [ # The section's columns properties. If empty, the section contains one column with the default properties in the Docs editor. A section can be updated to have no more than 3 columns. When updating this property, setting a concrete value is required. Unsetting this property will result in a 400 bad request error.
              { # Properties that apply to a section's column.
                "paddingEnd": { # A magnitude in a single direction in the specified units. # The padding at the end of the column.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # Output only. The width of the column.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
            ],
            "columnSeparatorStyle": "A String", # The style of column separators. This style can be set even when there's one column in the section. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
            "contentDirection": "A String", # The content direction of this section. If unset, the value defaults to LEFT_TO_RIGHT. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
            "defaultFooterId": "A String", # The ID of the default footer. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's default_footer_id. This property is read-only.
            "defaultHeaderId": "A String", # The ID of the default header. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's default_header_id. This property is read-only.
            "evenPageFooterId": "A String", # The ID of the footer used only for even pages. If the value of DocumentStyle's use_even_page_header_footer is true, this value is used for the footers on even pages in the section. If it is false, the footers on even pages use the default_footer_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's even_page_footer_id. This property is read-only.
            "evenPageHeaderId": "A String", # The ID of the header used only for even pages. If the value of DocumentStyle's use_even_page_header_footer is true, this value is used for the headers on even pages in the section. If it is false, the headers on even pages use the default_header_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's even_page_header_id. This property is read-only.
            "firstPageFooterId": "A String", # The ID of the footer used only for the first page of the section. If use_first_page_header_footer is true, this value is used for the footer on the first page of the section. If it's false, the footer on the first page of the section uses the default_footer_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's first_page_footer_id. This property is read-only.
            "firstPageHeaderId": "A String", # The ID of the header used only for the first page of the section. If use_first_page_header_footer is true, this value is used for the header on the first page of the section. If it's false, the header on the first page of the section uses the default_header_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's first_page_header_id. This property is read-only.
            "flipPageOrientation": True or False, # Optional. Indicates whether to flip the dimensions of DocumentStyle's page_size for this section, which allows changing the page orientation between portrait and landscape. If unset, the value inherits from DocumentStyle's flip_page_orientation. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
            "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom page margin of the section. If unset, the value defaults to margin_bottom from DocumentStyle. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "marginFooter": { # A magnitude in a single direction in the specified units. # The footer margin of the section. If unset, the value defaults to margin_footer from DocumentStyle. If updated, use_custom_header_footer_margins is set to true on DocumentStyle. The value of use_custom_header_footer_margins on DocumentStyle indicates if a footer margin is being respected for this section When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "marginHeader": { # A magnitude in a single direction in the specified units. # The header margin of the section. If unset, the value defaults to margin_header from DocumentStyle. If updated, use_custom_header_footer_margins is set to true on DocumentStyle. The value of use_custom_header_footer_margins on DocumentStyle indicates if a header margin is being respected for this section. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "marginLeft": { # A magnitude in a single direction in the specified units. # The left page margin of the section. If unset, the value defaults to margin_left from DocumentStyle. Updating the left margin causes columns in this section to resize. Since the margin affects column width, it's applied before column properties. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "marginRight": { # A magnitude in a single direction in the specified units. # The right page margin of the section. If unset, the value defaults to margin_right from DocumentStyle. Updating the right margin causes columns in this section to resize. Since the margin affects column width, it's applied before column properties. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "marginTop": { # A magnitude in a single direction in the specified units. # The top page margin of the section. If unset, the value defaults to margin_top from DocumentStyle. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "pageNumberStart": 42, # The page number from which to start counting the number of pages for this section. If unset, page numbering continues from the previous section. If the value is unset in the first SectionBreak, refer to DocumentStyle's page_number_start. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
            "sectionType": "A String", # Output only. The type of section.
            "useFirstPageHeaderFooter": True or False, # Indicates whether to use the first page header / footer IDs for the first page of the section. If unset, it inherits from DocumentStyle's use_first_page_header_footer for the first section. If the value is unset for subsequent sectors, it should be interpreted as false. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
          },
          "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
            "A String",
          ],
          "suggestedInsertionIds": [ # The suggested insertion IDs. A SectionBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
            "A String",
          ],
        },
        "startIndex": 42, # The zero-based start index of this structural element, in UTF-16 code units.
        "table": { # A StructuralElement representing a table. # A table type of structural element.
          "columns": 42, # Number of columns in the table. It's possible for a table to be non-rectangular, so some rows may have a different number of cells.
          "rows": 42, # Number of rows in the table.
          "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
            "A String",
          ],
          "suggestedInsertionIds": [ # The suggested insertion IDs. A Table may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
            "A String",
          ],
          "tableRows": [ # The contents and style of each row.
            { # The contents and style of a row in a Table.
              "endIndex": 42, # The zero-based end index of this row, exclusive, in UTF-16 code units.
              "startIndex": 42, # The zero-based start index of this row, in UTF-16 code units.
              "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                "A String",
              ],
              "suggestedInsertionIds": [ # The suggested insertion IDs. A TableRow may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                "A String",
              ],
              "suggestedTableRowStyleChanges": { # The suggested style changes to this row, keyed by suggestion ID.
                "a_key": { # A suggested change to a TableRowStyle.
                  "tableRowStyle": { # Styles that apply to a table row. # A TableRowStyle that only includes the changes made in this suggestion. This can be used along with the table_row_style_suggestion_state to see which fields have changed and their new values.
                    "minRowHeight": { # A magnitude in a single direction in the specified units. # The minimum height of the row. The row will be rendered in the Docs editor at a height equal to or greater than this value in order to show all the content in the row's cells.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "preventOverflow": True or False, # Whether the row cannot overflow across page or column boundaries.
                    "tableHeader": True or False, # Whether the row is a table header.
                  },
                  "tableRowStyleSuggestionState": { # A mask that indicates which of the fields on the base TableRowStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TableRowStyle have been changed in this suggestion.
                    "minRowHeightSuggested": True or False, # Indicates if there was a suggested change to min_row_height.
                  },
                },
              },
              "tableCells": [ # The contents and style of each cell in this row. It's possible for a table to be non-rectangular, so some rows may have a different number of cells than other rows in the same table.
                { # The contents and style of a cell in a Table.
                  "content": [ # The content of the cell.
                    # Object with schema name: StructuralElement
                  ],
                  "endIndex": 42, # The zero-based end index of this cell, exclusive, in UTF-16 code units.
                  "startIndex": 42, # The zero-based start index of this cell, in UTF-16 code units.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A TableCell may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTableCellStyleChanges": { # The suggested changes to the table cell style, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TableCellStyle.
                      "tableCellStyle": { # The style of a TableCell. Inherited table cell styles are represented as unset fields in this message. A table cell style can inherit from the table's style. # A TableCellStyle that only includes the changes made in this suggestion. This can be used along with the table_cell_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the cell.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "borderBottom": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The bottom border of the cell.
                          "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                              "rgbColor": { # An RGB color. # The RGB color value.
                                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                              },
                            },
                          },
                          "dashStyle": "A String", # The dash style of the border.
                          "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                        },
                        "borderLeft": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The left border of the cell.
                          "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                              "rgbColor": { # An RGB color. # The RGB color value.
                                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                              },
                            },
                          },
                          "dashStyle": "A String", # The dash style of the border.
                          "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                        },
                        "borderRight": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The right border of the cell.
                          "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                              "rgbColor": { # An RGB color. # The RGB color value.
                                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                              },
                            },
                          },
                          "dashStyle": "A String", # The dash style of the border.
                          "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                        },
                        "borderTop": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The top border of the cell.
                          "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                              "rgbColor": { # An RGB color. # The RGB color value.
                                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                              },
                            },
                          },
                          "dashStyle": "A String", # The dash style of the border.
                          "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                        },
                        "columnSpan": 42, # The column span of the cell. This property is read-only.
                        "contentAlignment": "A String", # The alignment of the content in the table cell. The default alignment matches the alignment for newly created table cells in the Docs editor.
                        "paddingBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of the cell.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "paddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of the cell.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "paddingRight": { # A magnitude in a single direction in the specified units. # The right padding of the cell.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of the cell.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "rowSpan": 42, # The row span of the cell. This property is read-only.
                      },
                      "tableCellStyleSuggestionState": { # A mask that indicates which of the fields on the base TableCellStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TableCellStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "borderBottomSuggested": True or False, # Indicates if there was a suggested change to border_bottom.
                        "borderLeftSuggested": True or False, # Indicates if there was a suggested change to border_left.
                        "borderRightSuggested": True or False, # Indicates if there was a suggested change to border_right.
                        "borderTopSuggested": True or False, # Indicates if there was a suggested change to border_top.
                        "columnSpanSuggested": True or False, # Indicates if there was a suggested change to column_span.
                        "contentAlignmentSuggested": True or False, # Indicates if there was a suggested change to content_alignment.
                        "paddingBottomSuggested": True or False, # Indicates if there was a suggested change to padding_bottom.
                        "paddingLeftSuggested": True or False, # Indicates if there was a suggested change to padding_left.
                        "paddingRightSuggested": True or False, # Indicates if there was a suggested change to padding_right.
                        "paddingTopSuggested": True or False, # Indicates if there was a suggested change to padding_top.
                        "rowSpanSuggested": True or False, # Indicates if there was a suggested change to row_span.
                      },
                    },
                  },
                  "tableCellStyle": { # The style of a TableCell. Inherited table cell styles are represented as unset fields in this message. A table cell style can inherit from the table's style. # The style of the cell.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the cell.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "borderBottom": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The bottom border of the cell.
                      "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "dashStyle": "A String", # The dash style of the border.
                      "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                    },
                    "borderLeft": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The left border of the cell.
                      "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "dashStyle": "A String", # The dash style of the border.
                      "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                    },
                    "borderRight": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The right border of the cell.
                      "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "dashStyle": "A String", # The dash style of the border.
                      "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                    },
                    "borderTop": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The top border of the cell.
                      "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "dashStyle": "A String", # The dash style of the border.
                      "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                    },
                    "columnSpan": 42, # The column span of the cell. This property is read-only.
                    "contentAlignment": "A String", # The alignment of the content in the table cell. The default alignment matches the alignment for newly created table cells in the Docs editor.
                    "paddingBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of the cell.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "paddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of the cell.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "paddingRight": { # A magnitude in a single direction in the specified units. # The right padding of the cell.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of the cell.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "rowSpan": 42, # The row span of the cell. This property is read-only.
                  },
                },
              ],
              "tableRowStyle": { # Styles that apply to a table row. # The style of the table row.
                "minRowHeight": { # A magnitude in a single direction in the specified units. # The minimum height of the row. The row will be rendered in the Docs editor at a height equal to or greater than this value in order to show all the content in the row's cells.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "preventOverflow": True or False, # Whether the row cannot overflow across page or column boundaries.
                "tableHeader": True or False, # Whether the row is a table header.
              },
            },
          ],
          "tableStyle": { # Styles that apply to a table. # The style of the table.
            "tableColumnProperties": [ # The properties of each column. Note that in Docs, tables contain rows and rows contain cells, similar to HTML. So the properties for a row can be found on the row's table_row_style.
              { # The properties of a column in a table.
                "width": { # A magnitude in a single direction in the specified units. # The width of the column. Set when the column's `width_type` is FIXED_WIDTH.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "widthType": "A String", # The width type of the column.
              },
            ],
          },
        },
        "tableOfContents": { # A StructuralElement representing a table of contents. # A table of contents type of structural element.
          "content": [ # The content of the table of contents.
            # Object with schema name: StructuralElement
          ],
          "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
            "A String",
          ],
          "suggestedInsertionIds": [ # The suggested insertion IDs. A TableOfContents may have multiple insertion IDs if it is a nested suggested change. If empty, then this is not a suggested insertion.
            "A String",
          ],
        },
      },
    ],
  },
  "documentId": "A String", # Output only. The ID of the document.
  "documentStyle": { # The style of the document. # Output only. The style of the document.
    "background": { # Represents the background of a document. # The background of the document. Documents cannot have a transparent background color.
      "color": { # A color that can either be fully opaque or fully transparent. # The background color.
        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
          "rgbColor": { # An RGB color. # The RGB color value.
            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
          },
        },
      },
    },
    "defaultFooterId": "A String", # The ID of the default footer. If not set, there's no default footer. This property is read-only.
    "defaultHeaderId": "A String", # The ID of the default header. If not set, there's no default header. This property is read-only.
    "evenPageFooterId": "A String", # The ID of the footer used only for even pages. The value of use_even_page_header_footer determines whether to use the default_footer_id or this value for the footer on even pages. If not set, there's no even page footer. This property is read-only.
    "evenPageHeaderId": "A String", # The ID of the header used only for even pages. The value of use_even_page_header_footer determines whether to use the default_header_id or this value for the header on even pages. If not set, there's no even page header. This property is read-only.
    "firstPageFooterId": "A String", # The ID of the footer used only for the first page. If not set then a unique footer for the first page does not exist. The value of use_first_page_header_footer determines whether to use the default_footer_id or this value for the footer on the first page. If not set, there's no first page footer. This property is read-only.
    "firstPageHeaderId": "A String", # The ID of the header used only for the first page. If not set then a unique header for the first page does not exist. The value of use_first_page_header_footer determines whether to use the default_header_id or this value for the header on the first page. If not set, there's no first page header. This property is read-only.
    "flipPageOrientation": True or False, # Optional. Indicates whether to flip the dimensions of the page_size, which allows changing the page orientation between portrait and landscape.
    "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom page margin. Updating the bottom page margin on the document style clears the bottom page margin on all section styles.
      "magnitude": 3.14, # The magnitude.
      "unit": "A String", # The units for magnitude.
    },
    "marginFooter": { # A magnitude in a single direction in the specified units. # The amount of space between the bottom of the page and the contents of the footer.
      "magnitude": 3.14, # The magnitude.
      "unit": "A String", # The units for magnitude.
    },
    "marginHeader": { # A magnitude in a single direction in the specified units. # The amount of space between the top of the page and the contents of the header.
      "magnitude": 3.14, # The magnitude.
      "unit": "A String", # The units for magnitude.
    },
    "marginLeft": { # A magnitude in a single direction in the specified units. # The left page margin. Updating the left page margin on the document style clears the left page margin on all section styles. It may also cause columns to resize in all sections.
      "magnitude": 3.14, # The magnitude.
      "unit": "A String", # The units for magnitude.
    },
    "marginRight": { # A magnitude in a single direction in the specified units. # The right page margin. Updating the right page margin on the document style clears the right page margin on all section styles. It may also cause columns to resize in all sections.
      "magnitude": 3.14, # The magnitude.
      "unit": "A String", # The units for magnitude.
    },
    "marginTop": { # A magnitude in a single direction in the specified units. # The top page margin. Updating the top page margin on the document style clears the top page margin on all section styles.
      "magnitude": 3.14, # The magnitude.
      "unit": "A String", # The units for magnitude.
    },
    "pageNumberStart": 42, # The page number from which to start counting the number of pages.
    "pageSize": { # A width and height. # The size of a page in the document.
      "height": { # A magnitude in a single direction in the specified units. # The height of the object.
        "magnitude": 3.14, # The magnitude.
        "unit": "A String", # The units for magnitude.
      },
      "width": { # A magnitude in a single direction in the specified units. # The width of the object.
        "magnitude": 3.14, # The magnitude.
        "unit": "A String", # The units for magnitude.
      },
    },
    "useCustomHeaderFooterMargins": True or False, # Indicates whether DocumentStyle margin_header, SectionStyle margin_header and DocumentStyle margin_footer, SectionStyle margin_footer are respected. When false, the default values in the Docs editor for header and footer margin are used. This property is read-only.
    "useEvenPageHeaderFooter": True or False, # Indicates whether to use the even page header / footer IDs for the even pages.
    "useFirstPageHeaderFooter": True or False, # Indicates whether to use the first page header / footer IDs for the first page.
  },
  "footers": { # Output only. The footers in the document, keyed by footer ID.
    "a_key": { # A document footer.
      "content": [ # The contents of the footer. The indexes for a footer's content begin at zero.
        { # A StructuralElement describes content that provides structure to the document.
          "endIndex": 42, # The zero-based end index of this structural element, exclusive, in UTF-16 code units.
          "paragraph": { # A StructuralElement representing a paragraph. A paragraph is a range of content that's terminated with a newline character. # A paragraph type of structural element.
            "bullet": { # Describes the bullet of a paragraph. # The bullet for this paragraph. If not present, the paragraph does not belong to a list.
              "listId": "A String", # The ID of the list this paragraph belongs to.
              "nestingLevel": 42, # The nesting level of this paragraph in the list.
              "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The paragraph-specific text style applied to this bullet.
                "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                "bold": True or False, # Whether or not the text is rendered as bold.
                "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "italic": True or False, # Whether or not the text is italicized.
                "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                  "bookmarkId": "A String", # The ID of a bookmark in this document.
                  "headingId": "A String", # The ID of a heading in this document.
                  "url": "A String", # An external URL.
                },
                "smallCaps": True or False, # Whether or not the text is in small capital letters.
                "strikethrough": True or False, # Whether or not the text is struck through.
                "underline": True or False, # Whether or not the text is underlined.
                "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                  "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                  "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                },
              },
            },
            "elements": [ # The content of the paragraph, broken down into its component parts.
              { # A ParagraphElement describes content within a Paragraph.
                "autoText": { # A ParagraphElement representing a spot in the text that's dynamically replaced with content that can change over time, like a page number. # An auto text paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. An AutoText may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this AutoText, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this AutoText.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                  "type": "A String", # The type of this auto text.
                },
                "columnBreak": { # A ParagraphElement representing a column break. A column break makes the subsequent text start at the top of the next column. # A column break paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A ColumnBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this ColumnBreak, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this ColumnBreak. Similar to text content, like text runs and footnote references, the text style of a column break can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "endIndex": 42, # The zero-base end index of this paragraph element, exclusive, in UTF-16 code units.
                "equation": { # A ParagraphElement representing an equation. # An equation paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. An Equation may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                },
                "footnoteReference": { # A ParagraphElement representing a footnote reference. A footnote reference is the inline content rendered with a number and is used to identify the footnote. # A footnote reference paragraph element.
                  "footnoteId": "A String", # The ID of the footnote that contains the content of this footnote reference.
                  "footnoteNumber": "A String", # The rendered number of this footnote.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A FootnoteReference may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this FootnoteReference, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this FootnoteReference.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "horizontalRule": { # A ParagraphElement representing a horizontal line. # A horizontal rule paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A HorizontalRule may have multiple insertion IDs if it is a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this HorizontalRule, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this HorizontalRule. Similar to text content, like text runs and footnote references, the text style of a horizontal rule can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "inlineObjectElement": { # A ParagraphElement that contains an InlineObject. # An inline object paragraph element.
                  "inlineObjectId": "A String", # The ID of the InlineObject this element contains.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. An InlineObjectElement may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this InlineObject, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this InlineObjectElement. Similar to text content, like text runs and footnote references, the text style of an inline object element can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "pageBreak": { # A ParagraphElement representing a page break. A page break makes the subsequent text start at the top of the next page. # A page break paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A PageBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this PageBreak, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this PageBreak. Similar to text content, like text runs and footnote references, the text style of a page break can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "person": { # A person or email address mentioned in a document. These mentions behave as a single, immutable element containing the person's name or email address. # A paragraph element that links to a person or email address.
                  "personId": "A String", # Output only. The unique ID of this link.
                  "personProperties": { # Properties specific to a linked Person. # Output only. The properties of this Person. This field is always present.
                    "email": "A String", # Output only. The email address linked to this Person. This field is always present.
                    "name": "A String", # Output only. The name of the person if it's displayed in the link text instead of the person's email address.
                  },
                  "suggestedDeletionIds": [ # IDs for suggestions that remove this person link from the document. A Person might have multiple deletion IDs if, for example, multiple users suggest deleting it. If empty, then this person link isn't suggested for deletion.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # IDs for suggestions that insert this person link into the document. A Person might have multiple insertion IDs if it's a nested suggested change (a suggestion within a suggestion made by a different user, for example). If empty, then this person link isn't a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this Person, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this Person.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "richLink": { # A link to a Google resource (such as a file in Drive, a YouTube video, or a Calendar event). # A paragraph element that links to a Google resource (such as a file in Google Drive, a YouTube video, or a Calendar event.)
                  "richLinkId": "A String", # Output only. The ID of this link.
                  "richLinkProperties": { # Properties specific to a RichLink. # Output only. The properties of this RichLink. This field is always present.
                    "mimeType": "A String", # Output only. The [MIME type](https://developers.google.com/drive/api/v3/mime-types) of the RichLink, if there's one (for example, when it's a file in Drive).
                    "title": "A String", # Output only. The title of the RichLink as displayed in the link. This title matches the title of the linked resource at the time of the insertion or last update of the link. This field is always present.
                    "uri": "A String", # Output only. The URI to the RichLink. This is always present.
                  },
                  "suggestedDeletionIds": [ # IDs for suggestions that remove this link from the document. A RichLink might have multiple deletion IDs if, for example, multiple users suggest deleting it. If empty, then this person link isn't suggested for deletion.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # IDs for suggestions that insert this link into the document. A RichLink might have multiple insertion IDs if it's a nested suggested change (a suggestion within a suggestion made by a different user, for example). If empty, then this person link isn't a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this RichLink, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this RichLink.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "startIndex": 42, # The zero-based start index of this paragraph element, in UTF-16 code units.
                "textRun": { # A ParagraphElement that represents a run of text that all has the same styling. # A text run paragraph element.
                  "content": "A String", # The text of this run. Any non-text elements in the run are replaced with the Unicode character U+E907.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A TextRun may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this run, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this run.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
              },
            ],
            "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The style of this paragraph.
              "alignment": "A String", # The text alignment for this paragraph.
              "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
              "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
              "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
              "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
              "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
              "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
              "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
              "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
              "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
                "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
              },
              "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "spacingMode": "A String", # The spacing mode for the paragraph.
              "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
                { # A tab stop within a paragraph.
                  "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
                  "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
              ],
            },
            "positionedObjectIds": [ # The IDs of the positioned objects tethered to this paragraph.
              "A String",
            ],
            "suggestedBulletChanges": { # The suggested changes to this paragraph's bullet.
              "a_key": { # A suggested change to a Bullet.
                "bullet": { # Describes the bullet of a paragraph. # A Bullet that only includes the changes made in this suggestion. This can be used along with the bullet_suggestion_state to see which fields have changed and their new values.
                  "listId": "A String", # The ID of the list this paragraph belongs to.
                  "nestingLevel": 42, # The nesting level of this paragraph in the list.
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The paragraph-specific text style applied to this bullet.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "bulletSuggestionState": { # A mask that indicates which of the fields on the base Bullet have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base Bullet have been changed in this suggestion.
                  "listIdSuggested": True or False, # Indicates if there was a suggested change to the list_id.
                  "nestingLevelSuggested": True or False, # Indicates if there was a suggested change to the nesting_level.
                  "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in text style have been changed in this suggestion.
                    "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                    "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                    "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                    "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                    "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                    "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                    "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                    "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                    "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                    "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                    "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                  },
                },
              },
            },
            "suggestedParagraphStyleChanges": { # The suggested paragraph style changes to this paragraph, keyed by suggestion ID.
              "a_key": { # A suggested change to a ParagraphStyle.
                "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A ParagraphStyle that only includes the changes made in this suggestion. This can be used along with the paragraph_style_suggestion_state to see which fields have changed and their new values.
                  "alignment": "A String", # The text alignment for this paragraph.
                  "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
                  "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
                  "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
                  "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
                  "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
                  "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
                  "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
                  "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
                  "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                  },
                  "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "spacingMode": "A String", # The spacing mode for the paragraph.
                  "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
                    { # A tab stop within a paragraph.
                      "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
                      "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                    },
                  ],
                },
                "paragraphStyleSuggestionState": { # A mask that indicates which of the fields on the base ParagraphStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base ParagraphStyle have been changed in this suggestion.
                  "alignmentSuggested": True or False, # Indicates if there was a suggested change to alignment.
                  "avoidWidowAndOrphanSuggested": True or False, # Indicates if there was a suggested change to avoid_widow_and_orphan.
                  "borderBetweenSuggested": True or False, # Indicates if there was a suggested change to border_between.
                  "borderBottomSuggested": True or False, # Indicates if there was a suggested change to border_bottom.
                  "borderLeftSuggested": True or False, # Indicates if there was a suggested change to border_left.
                  "borderRightSuggested": True or False, # Indicates if there was a suggested change to border_right.
                  "borderTopSuggested": True or False, # Indicates if there was a suggested change to border_top.
                  "directionSuggested": True or False, # Indicates if there was a suggested change to direction.
                  "headingIdSuggested": True or False, # Indicates if there was a suggested change to heading_id.
                  "indentEndSuggested": True or False, # Indicates if there was a suggested change to indent_end.
                  "indentFirstLineSuggested": True or False, # Indicates if there was a suggested change to indent_first_line.
                  "indentStartSuggested": True or False, # Indicates if there was a suggested change to indent_start.
                  "keepLinesTogetherSuggested": True or False, # Indicates if there was a suggested change to keep_lines_together.
                  "keepWithNextSuggested": True or False, # Indicates if there was a suggested change to keep_with_next.
                  "lineSpacingSuggested": True or False, # Indicates if there was a suggested change to line_spacing.
                  "namedStyleTypeSuggested": True or False, # Indicates if there was a suggested change to named_style_type.
                  "pageBreakBeforeSuggested": True or False, # Indicates if there was a suggested change to page_break_before.
                  "shadingSuggestionState": { # A mask that indicates which of the fields on the base Shading have been changed in this suggested change. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in shading have been changed in this suggestion.
                    "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to the Shading.
                  },
                  "spaceAboveSuggested": True or False, # Indicates if there was a suggested change to space_above.
                  "spaceBelowSuggested": True or False, # Indicates if there was a suggested change to space_below.
                  "spacingModeSuggested": True or False, # Indicates if there was a suggested change to spacing_mode.
                },
              },
            },
            "suggestedPositionedObjectIds": { # The IDs of the positioned objects suggested to be attached to this paragraph, keyed by suggestion ID.
              "a_key": { # A collection of object IDs.
                "objectIds": [ # The object IDs.
                  "A String",
                ],
              },
            },
          },
          "sectionBreak": { # A StructuralElement representing a section break. A section is a range of content that has the same SectionStyle. A section break represents the start of a new section, and the section style applies to the section after the section break. The document body always begins with a section break. # A section break type of structural element.
            "sectionStyle": { # The styling that applies to a section. # The style of the section after this section break.
              "columnProperties": [ # The section's columns properties. If empty, the section contains one column with the default properties in the Docs editor. A section can be updated to have no more than 3 columns. When updating this property, setting a concrete value is required. Unsetting this property will result in a 400 bad request error.
                { # Properties that apply to a section's column.
                  "paddingEnd": { # A magnitude in a single direction in the specified units. # The padding at the end of the column.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "width": { # A magnitude in a single direction in the specified units. # Output only. The width of the column.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
              ],
              "columnSeparatorStyle": "A String", # The style of column separators. This style can be set even when there's one column in the section. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "contentDirection": "A String", # The content direction of this section. If unset, the value defaults to LEFT_TO_RIGHT. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "defaultFooterId": "A String", # The ID of the default footer. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's default_footer_id. This property is read-only.
              "defaultHeaderId": "A String", # The ID of the default header. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's default_header_id. This property is read-only.
              "evenPageFooterId": "A String", # The ID of the footer used only for even pages. If the value of DocumentStyle's use_even_page_header_footer is true, this value is used for the footers on even pages in the section. If it is false, the footers on even pages use the default_footer_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's even_page_footer_id. This property is read-only.
              "evenPageHeaderId": "A String", # The ID of the header used only for even pages. If the value of DocumentStyle's use_even_page_header_footer is true, this value is used for the headers on even pages in the section. If it is false, the headers on even pages use the default_header_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's even_page_header_id. This property is read-only.
              "firstPageFooterId": "A String", # The ID of the footer used only for the first page of the section. If use_first_page_header_footer is true, this value is used for the footer on the first page of the section. If it's false, the footer on the first page of the section uses the default_footer_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's first_page_footer_id. This property is read-only.
              "firstPageHeaderId": "A String", # The ID of the header used only for the first page of the section. If use_first_page_header_footer is true, this value is used for the header on the first page of the section. If it's false, the header on the first page of the section uses the default_header_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's first_page_header_id. This property is read-only.
              "flipPageOrientation": True or False, # Optional. Indicates whether to flip the dimensions of DocumentStyle's page_size for this section, which allows changing the page orientation between portrait and landscape. If unset, the value inherits from DocumentStyle's flip_page_orientation. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom page margin of the section. If unset, the value defaults to margin_bottom from DocumentStyle. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginFooter": { # A magnitude in a single direction in the specified units. # The footer margin of the section. If unset, the value defaults to margin_footer from DocumentStyle. If updated, use_custom_header_footer_margins is set to true on DocumentStyle. The value of use_custom_header_footer_margins on DocumentStyle indicates if a footer margin is being respected for this section When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginHeader": { # A magnitude in a single direction in the specified units. # The header margin of the section. If unset, the value defaults to margin_header from DocumentStyle. If updated, use_custom_header_footer_margins is set to true on DocumentStyle. The value of use_custom_header_footer_margins on DocumentStyle indicates if a header margin is being respected for this section. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginLeft": { # A magnitude in a single direction in the specified units. # The left page margin of the section. If unset, the value defaults to margin_left from DocumentStyle. Updating the left margin causes columns in this section to resize. Since the margin affects column width, it's applied before column properties. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginRight": { # A magnitude in a single direction in the specified units. # The right page margin of the section. If unset, the value defaults to margin_right from DocumentStyle. Updating the right margin causes columns in this section to resize. Since the margin affects column width, it's applied before column properties. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginTop": { # A magnitude in a single direction in the specified units. # The top page margin of the section. If unset, the value defaults to margin_top from DocumentStyle. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "pageNumberStart": 42, # The page number from which to start counting the number of pages for this section. If unset, page numbering continues from the previous section. If the value is unset in the first SectionBreak, refer to DocumentStyle's page_number_start. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "sectionType": "A String", # Output only. The type of section.
              "useFirstPageHeaderFooter": True or False, # Indicates whether to use the first page header / footer IDs for the first page of the section. If unset, it inherits from DocumentStyle's use_first_page_header_footer for the first section. If the value is unset for subsequent sectors, it should be interpreted as false. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
            },
            "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
              "A String",
            ],
            "suggestedInsertionIds": [ # The suggested insertion IDs. A SectionBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
              "A String",
            ],
          },
          "startIndex": 42, # The zero-based start index of this structural element, in UTF-16 code units.
          "table": { # A StructuralElement representing a table. # A table type of structural element.
            "columns": 42, # Number of columns in the table. It's possible for a table to be non-rectangular, so some rows may have a different number of cells.
            "rows": 42, # Number of rows in the table.
            "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
              "A String",
            ],
            "suggestedInsertionIds": [ # The suggested insertion IDs. A Table may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
              "A String",
            ],
            "tableRows": [ # The contents and style of each row.
              { # The contents and style of a row in a Table.
                "endIndex": 42, # The zero-based end index of this row, exclusive, in UTF-16 code units.
                "startIndex": 42, # The zero-based start index of this row, in UTF-16 code units.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. A TableRow may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
                "suggestedTableRowStyleChanges": { # The suggested style changes to this row, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TableRowStyle.
                    "tableRowStyle": { # Styles that apply to a table row. # A TableRowStyle that only includes the changes made in this suggestion. This can be used along with the table_row_style_suggestion_state to see which fields have changed and their new values.
                      "minRowHeight": { # A magnitude in a single direction in the specified units. # The minimum height of the row. The row will be rendered in the Docs editor at a height equal to or greater than this value in order to show all the content in the row's cells.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "preventOverflow": True or False, # Whether the row cannot overflow across page or column boundaries.
                      "tableHeader": True or False, # Whether the row is a table header.
                    },
                    "tableRowStyleSuggestionState": { # A mask that indicates which of the fields on the base TableRowStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TableRowStyle have been changed in this suggestion.
                      "minRowHeightSuggested": True or False, # Indicates if there was a suggested change to min_row_height.
                    },
                  },
                },
                "tableCells": [ # The contents and style of each cell in this row. It's possible for a table to be non-rectangular, so some rows may have a different number of cells than other rows in the same table.
                  { # The contents and style of a cell in a Table.
                    "content": [ # The content of the cell.
                      # Object with schema name: StructuralElement
                    ],
                    "endIndex": 42, # The zero-based end index of this cell, exclusive, in UTF-16 code units.
                    "startIndex": 42, # The zero-based start index of this cell, in UTF-16 code units.
                    "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                      "A String",
                    ],
                    "suggestedInsertionIds": [ # The suggested insertion IDs. A TableCell may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                      "A String",
                    ],
                    "suggestedTableCellStyleChanges": { # The suggested changes to the table cell style, keyed by suggestion ID.
                      "a_key": { # A suggested change to a TableCellStyle.
                        "tableCellStyle": { # The style of a TableCell. Inherited table cell styles are represented as unset fields in this message. A table cell style can inherit from the table's style. # A TableCellStyle that only includes the changes made in this suggestion. This can be used along with the table_cell_style_suggestion_state to see which fields have changed and their new values.
                          "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the cell.
                            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                              "rgbColor": { # An RGB color. # The RGB color value.
                                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                              },
                            },
                          },
                          "borderBottom": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The bottom border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "borderLeft": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The left border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "borderRight": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The right border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "borderTop": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The top border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "columnSpan": 42, # The column span of the cell. This property is read-only.
                          "contentAlignment": "A String", # The alignment of the content in the table cell. The default alignment matches the alignment for newly created table cells in the Docs editor.
                          "paddingBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "paddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "paddingRight": { # A magnitude in a single direction in the specified units. # The right padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "rowSpan": 42, # The row span of the cell. This property is read-only.
                        },
                        "tableCellStyleSuggestionState": { # A mask that indicates which of the fields on the base TableCellStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TableCellStyle have been changed in this suggestion.
                          "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                          "borderBottomSuggested": True or False, # Indicates if there was a suggested change to border_bottom.
                          "borderLeftSuggested": True or False, # Indicates if there was a suggested change to border_left.
                          "borderRightSuggested": True or False, # Indicates if there was a suggested change to border_right.
                          "borderTopSuggested": True or False, # Indicates if there was a suggested change to border_top.
                          "columnSpanSuggested": True or False, # Indicates if there was a suggested change to column_span.
                          "contentAlignmentSuggested": True or False, # Indicates if there was a suggested change to content_alignment.
                          "paddingBottomSuggested": True or False, # Indicates if there was a suggested change to padding_bottom.
                          "paddingLeftSuggested": True or False, # Indicates if there was a suggested change to padding_left.
                          "paddingRightSuggested": True or False, # Indicates if there was a suggested change to padding_right.
                          "paddingTopSuggested": True or False, # Indicates if there was a suggested change to padding_top.
                          "rowSpanSuggested": True or False, # Indicates if there was a suggested change to row_span.
                        },
                      },
                    },
                    "tableCellStyle": { # The style of a TableCell. Inherited table cell styles are represented as unset fields in this message. A table cell style can inherit from the table's style. # The style of the cell.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the cell.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "borderBottom": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The bottom border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "borderLeft": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The left border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "borderRight": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The right border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "borderTop": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The top border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "columnSpan": 42, # The column span of the cell. This property is read-only.
                      "contentAlignment": "A String", # The alignment of the content in the table cell. The default alignment matches the alignment for newly created table cells in the Docs editor.
                      "paddingBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "paddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "paddingRight": { # A magnitude in a single direction in the specified units. # The right padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "rowSpan": 42, # The row span of the cell. This property is read-only.
                    },
                  },
                ],
                "tableRowStyle": { # Styles that apply to a table row. # The style of the table row.
                  "minRowHeight": { # A magnitude in a single direction in the specified units. # The minimum height of the row. The row will be rendered in the Docs editor at a height equal to or greater than this value in order to show all the content in the row's cells.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "preventOverflow": True or False, # Whether the row cannot overflow across page or column boundaries.
                  "tableHeader": True or False, # Whether the row is a table header.
                },
              },
            ],
            "tableStyle": { # Styles that apply to a table. # The style of the table.
              "tableColumnProperties": [ # The properties of each column. Note that in Docs, tables contain rows and rows contain cells, similar to HTML. So the properties for a row can be found on the row's table_row_style.
                { # The properties of a column in a table.
                  "width": { # A magnitude in a single direction in the specified units. # The width of the column. Set when the column's `width_type` is FIXED_WIDTH.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "widthType": "A String", # The width type of the column.
                },
              ],
            },
          },
          "tableOfContents": { # A StructuralElement representing a table of contents. # A table of contents type of structural element.
            "content": [ # The content of the table of contents.
              # Object with schema name: StructuralElement
            ],
            "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
              "A String",
            ],
            "suggestedInsertionIds": [ # The suggested insertion IDs. A TableOfContents may have multiple insertion IDs if it is a nested suggested change. If empty, then this is not a suggested insertion.
              "A String",
            ],
          },
        },
      ],
      "footerId": "A String", # The ID of the footer.
    },
  },
  "footnotes": { # Output only. The footnotes in the document, keyed by footnote ID.
    "a_key": { # A document footnote.
      "content": [ # The contents of the footnote. The indexes for a footnote's content begin at zero.
        { # A StructuralElement describes content that provides structure to the document.
          "endIndex": 42, # The zero-based end index of this structural element, exclusive, in UTF-16 code units.
          "paragraph": { # A StructuralElement representing a paragraph. A paragraph is a range of content that's terminated with a newline character. # A paragraph type of structural element.
            "bullet": { # Describes the bullet of a paragraph. # The bullet for this paragraph. If not present, the paragraph does not belong to a list.
              "listId": "A String", # The ID of the list this paragraph belongs to.
              "nestingLevel": 42, # The nesting level of this paragraph in the list.
              "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The paragraph-specific text style applied to this bullet.
                "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                "bold": True or False, # Whether or not the text is rendered as bold.
                "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "italic": True or False, # Whether or not the text is italicized.
                "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                  "bookmarkId": "A String", # The ID of a bookmark in this document.
                  "headingId": "A String", # The ID of a heading in this document.
                  "url": "A String", # An external URL.
                },
                "smallCaps": True or False, # Whether or not the text is in small capital letters.
                "strikethrough": True or False, # Whether or not the text is struck through.
                "underline": True or False, # Whether or not the text is underlined.
                "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                  "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                  "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                },
              },
            },
            "elements": [ # The content of the paragraph, broken down into its component parts.
              { # A ParagraphElement describes content within a Paragraph.
                "autoText": { # A ParagraphElement representing a spot in the text that's dynamically replaced with content that can change over time, like a page number. # An auto text paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. An AutoText may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this AutoText, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this AutoText.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                  "type": "A String", # The type of this auto text.
                },
                "columnBreak": { # A ParagraphElement representing a column break. A column break makes the subsequent text start at the top of the next column. # A column break paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A ColumnBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this ColumnBreak, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this ColumnBreak. Similar to text content, like text runs and footnote references, the text style of a column break can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "endIndex": 42, # The zero-base end index of this paragraph element, exclusive, in UTF-16 code units.
                "equation": { # A ParagraphElement representing an equation. # An equation paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. An Equation may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                },
                "footnoteReference": { # A ParagraphElement representing a footnote reference. A footnote reference is the inline content rendered with a number and is used to identify the footnote. # A footnote reference paragraph element.
                  "footnoteId": "A String", # The ID of the footnote that contains the content of this footnote reference.
                  "footnoteNumber": "A String", # The rendered number of this footnote.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A FootnoteReference may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this FootnoteReference, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this FootnoteReference.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "horizontalRule": { # A ParagraphElement representing a horizontal line. # A horizontal rule paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A HorizontalRule may have multiple insertion IDs if it is a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this HorizontalRule, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this HorizontalRule. Similar to text content, like text runs and footnote references, the text style of a horizontal rule can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "inlineObjectElement": { # A ParagraphElement that contains an InlineObject. # An inline object paragraph element.
                  "inlineObjectId": "A String", # The ID of the InlineObject this element contains.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. An InlineObjectElement may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this InlineObject, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this InlineObjectElement. Similar to text content, like text runs and footnote references, the text style of an inline object element can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "pageBreak": { # A ParagraphElement representing a page break. A page break makes the subsequent text start at the top of the next page. # A page break paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A PageBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this PageBreak, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this PageBreak. Similar to text content, like text runs and footnote references, the text style of a page break can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "person": { # A person or email address mentioned in a document. These mentions behave as a single, immutable element containing the person's name or email address. # A paragraph element that links to a person or email address.
                  "personId": "A String", # Output only. The unique ID of this link.
                  "personProperties": { # Properties specific to a linked Person. # Output only. The properties of this Person. This field is always present.
                    "email": "A String", # Output only. The email address linked to this Person. This field is always present.
                    "name": "A String", # Output only. The name of the person if it's displayed in the link text instead of the person's email address.
                  },
                  "suggestedDeletionIds": [ # IDs for suggestions that remove this person link from the document. A Person might have multiple deletion IDs if, for example, multiple users suggest deleting it. If empty, then this person link isn't suggested for deletion.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # IDs for suggestions that insert this person link into the document. A Person might have multiple insertion IDs if it's a nested suggested change (a suggestion within a suggestion made by a different user, for example). If empty, then this person link isn't a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this Person, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this Person.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "richLink": { # A link to a Google resource (such as a file in Drive, a YouTube video, or a Calendar event). # A paragraph element that links to a Google resource (such as a file in Google Drive, a YouTube video, or a Calendar event.)
                  "richLinkId": "A String", # Output only. The ID of this link.
                  "richLinkProperties": { # Properties specific to a RichLink. # Output only. The properties of this RichLink. This field is always present.
                    "mimeType": "A String", # Output only. The [MIME type](https://developers.google.com/drive/api/v3/mime-types) of the RichLink, if there's one (for example, when it's a file in Drive).
                    "title": "A String", # Output only. The title of the RichLink as displayed in the link. This title matches the title of the linked resource at the time of the insertion or last update of the link. This field is always present.
                    "uri": "A String", # Output only. The URI to the RichLink. This is always present.
                  },
                  "suggestedDeletionIds": [ # IDs for suggestions that remove this link from the document. A RichLink might have multiple deletion IDs if, for example, multiple users suggest deleting it. If empty, then this person link isn't suggested for deletion.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # IDs for suggestions that insert this link into the document. A RichLink might have multiple insertion IDs if it's a nested suggested change (a suggestion within a suggestion made by a different user, for example). If empty, then this person link isn't a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this RichLink, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this RichLink.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "startIndex": 42, # The zero-based start index of this paragraph element, in UTF-16 code units.
                "textRun": { # A ParagraphElement that represents a run of text that all has the same styling. # A text run paragraph element.
                  "content": "A String", # The text of this run. Any non-text elements in the run are replaced with the Unicode character U+E907.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A TextRun may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this run, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this run.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
              },
            ],
            "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The style of this paragraph.
              "alignment": "A String", # The text alignment for this paragraph.
              "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
              "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
              "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
              "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
              "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
              "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
              "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
              "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
              "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
                "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
              },
              "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "spacingMode": "A String", # The spacing mode for the paragraph.
              "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
                { # A tab stop within a paragraph.
                  "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
                  "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
              ],
            },
            "positionedObjectIds": [ # The IDs of the positioned objects tethered to this paragraph.
              "A String",
            ],
            "suggestedBulletChanges": { # The suggested changes to this paragraph's bullet.
              "a_key": { # A suggested change to a Bullet.
                "bullet": { # Describes the bullet of a paragraph. # A Bullet that only includes the changes made in this suggestion. This can be used along with the bullet_suggestion_state to see which fields have changed and their new values.
                  "listId": "A String", # The ID of the list this paragraph belongs to.
                  "nestingLevel": 42, # The nesting level of this paragraph in the list.
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The paragraph-specific text style applied to this bullet.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "bulletSuggestionState": { # A mask that indicates which of the fields on the base Bullet have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base Bullet have been changed in this suggestion.
                  "listIdSuggested": True or False, # Indicates if there was a suggested change to the list_id.
                  "nestingLevelSuggested": True or False, # Indicates if there was a suggested change to the nesting_level.
                  "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in text style have been changed in this suggestion.
                    "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                    "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                    "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                    "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                    "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                    "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                    "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                    "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                    "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                    "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                    "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                  },
                },
              },
            },
            "suggestedParagraphStyleChanges": { # The suggested paragraph style changes to this paragraph, keyed by suggestion ID.
              "a_key": { # A suggested change to a ParagraphStyle.
                "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A ParagraphStyle that only includes the changes made in this suggestion. This can be used along with the paragraph_style_suggestion_state to see which fields have changed and their new values.
                  "alignment": "A String", # The text alignment for this paragraph.
                  "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
                  "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
                  "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
                  "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
                  "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
                  "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
                  "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
                  "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
                  "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                  },
                  "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "spacingMode": "A String", # The spacing mode for the paragraph.
                  "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
                    { # A tab stop within a paragraph.
                      "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
                      "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                    },
                  ],
                },
                "paragraphStyleSuggestionState": { # A mask that indicates which of the fields on the base ParagraphStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base ParagraphStyle have been changed in this suggestion.
                  "alignmentSuggested": True or False, # Indicates if there was a suggested change to alignment.
                  "avoidWidowAndOrphanSuggested": True or False, # Indicates if there was a suggested change to avoid_widow_and_orphan.
                  "borderBetweenSuggested": True or False, # Indicates if there was a suggested change to border_between.
                  "borderBottomSuggested": True or False, # Indicates if there was a suggested change to border_bottom.
                  "borderLeftSuggested": True or False, # Indicates if there was a suggested change to border_left.
                  "borderRightSuggested": True or False, # Indicates if there was a suggested change to border_right.
                  "borderTopSuggested": True or False, # Indicates if there was a suggested change to border_top.
                  "directionSuggested": True or False, # Indicates if there was a suggested change to direction.
                  "headingIdSuggested": True or False, # Indicates if there was a suggested change to heading_id.
                  "indentEndSuggested": True or False, # Indicates if there was a suggested change to indent_end.
                  "indentFirstLineSuggested": True or False, # Indicates if there was a suggested change to indent_first_line.
                  "indentStartSuggested": True or False, # Indicates if there was a suggested change to indent_start.
                  "keepLinesTogetherSuggested": True or False, # Indicates if there was a suggested change to keep_lines_together.
                  "keepWithNextSuggested": True or False, # Indicates if there was a suggested change to keep_with_next.
                  "lineSpacingSuggested": True or False, # Indicates if there was a suggested change to line_spacing.
                  "namedStyleTypeSuggested": True or False, # Indicates if there was a suggested change to named_style_type.
                  "pageBreakBeforeSuggested": True or False, # Indicates if there was a suggested change to page_break_before.
                  "shadingSuggestionState": { # A mask that indicates which of the fields on the base Shading have been changed in this suggested change. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in shading have been changed in this suggestion.
                    "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to the Shading.
                  },
                  "spaceAboveSuggested": True or False, # Indicates if there was a suggested change to space_above.
                  "spaceBelowSuggested": True or False, # Indicates if there was a suggested change to space_below.
                  "spacingModeSuggested": True or False, # Indicates if there was a suggested change to spacing_mode.
                },
              },
            },
            "suggestedPositionedObjectIds": { # The IDs of the positioned objects suggested to be attached to this paragraph, keyed by suggestion ID.
              "a_key": { # A collection of object IDs.
                "objectIds": [ # The object IDs.
                  "A String",
                ],
              },
            },
          },
          "sectionBreak": { # A StructuralElement representing a section break. A section is a range of content that has the same SectionStyle. A section break represents the start of a new section, and the section style applies to the section after the section break. The document body always begins with a section break. # A section break type of structural element.
            "sectionStyle": { # The styling that applies to a section. # The style of the section after this section break.
              "columnProperties": [ # The section's columns properties. If empty, the section contains one column with the default properties in the Docs editor. A section can be updated to have no more than 3 columns. When updating this property, setting a concrete value is required. Unsetting this property will result in a 400 bad request error.
                { # Properties that apply to a section's column.
                  "paddingEnd": { # A magnitude in a single direction in the specified units. # The padding at the end of the column.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "width": { # A magnitude in a single direction in the specified units. # Output only. The width of the column.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
              ],
              "columnSeparatorStyle": "A String", # The style of column separators. This style can be set even when there's one column in the section. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "contentDirection": "A String", # The content direction of this section. If unset, the value defaults to LEFT_TO_RIGHT. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "defaultFooterId": "A String", # The ID of the default footer. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's default_footer_id. This property is read-only.
              "defaultHeaderId": "A String", # The ID of the default header. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's default_header_id. This property is read-only.
              "evenPageFooterId": "A String", # The ID of the footer used only for even pages. If the value of DocumentStyle's use_even_page_header_footer is true, this value is used for the footers on even pages in the section. If it is false, the footers on even pages use the default_footer_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's even_page_footer_id. This property is read-only.
              "evenPageHeaderId": "A String", # The ID of the header used only for even pages. If the value of DocumentStyle's use_even_page_header_footer is true, this value is used for the headers on even pages in the section. If it is false, the headers on even pages use the default_header_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's even_page_header_id. This property is read-only.
              "firstPageFooterId": "A String", # The ID of the footer used only for the first page of the section. If use_first_page_header_footer is true, this value is used for the footer on the first page of the section. If it's false, the footer on the first page of the section uses the default_footer_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's first_page_footer_id. This property is read-only.
              "firstPageHeaderId": "A String", # The ID of the header used only for the first page of the section. If use_first_page_header_footer is true, this value is used for the header on the first page of the section. If it's false, the header on the first page of the section uses the default_header_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's first_page_header_id. This property is read-only.
              "flipPageOrientation": True or False, # Optional. Indicates whether to flip the dimensions of DocumentStyle's page_size for this section, which allows changing the page orientation between portrait and landscape. If unset, the value inherits from DocumentStyle's flip_page_orientation. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom page margin of the section. If unset, the value defaults to margin_bottom from DocumentStyle. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginFooter": { # A magnitude in a single direction in the specified units. # The footer margin of the section. If unset, the value defaults to margin_footer from DocumentStyle. If updated, use_custom_header_footer_margins is set to true on DocumentStyle. The value of use_custom_header_footer_margins on DocumentStyle indicates if a footer margin is being respected for this section When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginHeader": { # A magnitude in a single direction in the specified units. # The header margin of the section. If unset, the value defaults to margin_header from DocumentStyle. If updated, use_custom_header_footer_margins is set to true on DocumentStyle. The value of use_custom_header_footer_margins on DocumentStyle indicates if a header margin is being respected for this section. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginLeft": { # A magnitude in a single direction in the specified units. # The left page margin of the section. If unset, the value defaults to margin_left from DocumentStyle. Updating the left margin causes columns in this section to resize. Since the margin affects column width, it's applied before column properties. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginRight": { # A magnitude in a single direction in the specified units. # The right page margin of the section. If unset, the value defaults to margin_right from DocumentStyle. Updating the right margin causes columns in this section to resize. Since the margin affects column width, it's applied before column properties. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginTop": { # A magnitude in a single direction in the specified units. # The top page margin of the section. If unset, the value defaults to margin_top from DocumentStyle. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "pageNumberStart": 42, # The page number from which to start counting the number of pages for this section. If unset, page numbering continues from the previous section. If the value is unset in the first SectionBreak, refer to DocumentStyle's page_number_start. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "sectionType": "A String", # Output only. The type of section.
              "useFirstPageHeaderFooter": True or False, # Indicates whether to use the first page header / footer IDs for the first page of the section. If unset, it inherits from DocumentStyle's use_first_page_header_footer for the first section. If the value is unset for subsequent sectors, it should be interpreted as false. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
            },
            "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
              "A String",
            ],
            "suggestedInsertionIds": [ # The suggested insertion IDs. A SectionBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
              "A String",
            ],
          },
          "startIndex": 42, # The zero-based start index of this structural element, in UTF-16 code units.
          "table": { # A StructuralElement representing a table. # A table type of structural element.
            "columns": 42, # Number of columns in the table. It's possible for a table to be non-rectangular, so some rows may have a different number of cells.
            "rows": 42, # Number of rows in the table.
            "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
              "A String",
            ],
            "suggestedInsertionIds": [ # The suggested insertion IDs. A Table may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
              "A String",
            ],
            "tableRows": [ # The contents and style of each row.
              { # The contents and style of a row in a Table.
                "endIndex": 42, # The zero-based end index of this row, exclusive, in UTF-16 code units.
                "startIndex": 42, # The zero-based start index of this row, in UTF-16 code units.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. A TableRow may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
                "suggestedTableRowStyleChanges": { # The suggested style changes to this row, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TableRowStyle.
                    "tableRowStyle": { # Styles that apply to a table row. # A TableRowStyle that only includes the changes made in this suggestion. This can be used along with the table_row_style_suggestion_state to see which fields have changed and their new values.
                      "minRowHeight": { # A magnitude in a single direction in the specified units. # The minimum height of the row. The row will be rendered in the Docs editor at a height equal to or greater than this value in order to show all the content in the row's cells.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "preventOverflow": True or False, # Whether the row cannot overflow across page or column boundaries.
                      "tableHeader": True or False, # Whether the row is a table header.
                    },
                    "tableRowStyleSuggestionState": { # A mask that indicates which of the fields on the base TableRowStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TableRowStyle have been changed in this suggestion.
                      "minRowHeightSuggested": True or False, # Indicates if there was a suggested change to min_row_height.
                    },
                  },
                },
                "tableCells": [ # The contents and style of each cell in this row. It's possible for a table to be non-rectangular, so some rows may have a different number of cells than other rows in the same table.
                  { # The contents and style of a cell in a Table.
                    "content": [ # The content of the cell.
                      # Object with schema name: StructuralElement
                    ],
                    "endIndex": 42, # The zero-based end index of this cell, exclusive, in UTF-16 code units.
                    "startIndex": 42, # The zero-based start index of this cell, in UTF-16 code units.
                    "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                      "A String",
                    ],
                    "suggestedInsertionIds": [ # The suggested insertion IDs. A TableCell may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                      "A String",
                    ],
                    "suggestedTableCellStyleChanges": { # The suggested changes to the table cell style, keyed by suggestion ID.
                      "a_key": { # A suggested change to a TableCellStyle.
                        "tableCellStyle": { # The style of a TableCell. Inherited table cell styles are represented as unset fields in this message. A table cell style can inherit from the table's style. # A TableCellStyle that only includes the changes made in this suggestion. This can be used along with the table_cell_style_suggestion_state to see which fields have changed and their new values.
                          "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the cell.
                            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                              "rgbColor": { # An RGB color. # The RGB color value.
                                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                              },
                            },
                          },
                          "borderBottom": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The bottom border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "borderLeft": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The left border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "borderRight": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The right border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "borderTop": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The top border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "columnSpan": 42, # The column span of the cell. This property is read-only.
                          "contentAlignment": "A String", # The alignment of the content in the table cell. The default alignment matches the alignment for newly created table cells in the Docs editor.
                          "paddingBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "paddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "paddingRight": { # A magnitude in a single direction in the specified units. # The right padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "rowSpan": 42, # The row span of the cell. This property is read-only.
                        },
                        "tableCellStyleSuggestionState": { # A mask that indicates which of the fields on the base TableCellStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TableCellStyle have been changed in this suggestion.
                          "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                          "borderBottomSuggested": True or False, # Indicates if there was a suggested change to border_bottom.
                          "borderLeftSuggested": True or False, # Indicates if there was a suggested change to border_left.
                          "borderRightSuggested": True or False, # Indicates if there was a suggested change to border_right.
                          "borderTopSuggested": True or False, # Indicates if there was a suggested change to border_top.
                          "columnSpanSuggested": True or False, # Indicates if there was a suggested change to column_span.
                          "contentAlignmentSuggested": True or False, # Indicates if there was a suggested change to content_alignment.
                          "paddingBottomSuggested": True or False, # Indicates if there was a suggested change to padding_bottom.
                          "paddingLeftSuggested": True or False, # Indicates if there was a suggested change to padding_left.
                          "paddingRightSuggested": True or False, # Indicates if there was a suggested change to padding_right.
                          "paddingTopSuggested": True or False, # Indicates if there was a suggested change to padding_top.
                          "rowSpanSuggested": True or False, # Indicates if there was a suggested change to row_span.
                        },
                      },
                    },
                    "tableCellStyle": { # The style of a TableCell. Inherited table cell styles are represented as unset fields in this message. A table cell style can inherit from the table's style. # The style of the cell.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the cell.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "borderBottom": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The bottom border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "borderLeft": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The left border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "borderRight": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The right border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "borderTop": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The top border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "columnSpan": 42, # The column span of the cell. This property is read-only.
                      "contentAlignment": "A String", # The alignment of the content in the table cell. The default alignment matches the alignment for newly created table cells in the Docs editor.
                      "paddingBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "paddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "paddingRight": { # A magnitude in a single direction in the specified units. # The right padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "rowSpan": 42, # The row span of the cell. This property is read-only.
                    },
                  },
                ],
                "tableRowStyle": { # Styles that apply to a table row. # The style of the table row.
                  "minRowHeight": { # A magnitude in a single direction in the specified units. # The minimum height of the row. The row will be rendered in the Docs editor at a height equal to or greater than this value in order to show all the content in the row's cells.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "preventOverflow": True or False, # Whether the row cannot overflow across page or column boundaries.
                  "tableHeader": True or False, # Whether the row is a table header.
                },
              },
            ],
            "tableStyle": { # Styles that apply to a table. # The style of the table.
              "tableColumnProperties": [ # The properties of each column. Note that in Docs, tables contain rows and rows contain cells, similar to HTML. So the properties for a row can be found on the row's table_row_style.
                { # The properties of a column in a table.
                  "width": { # A magnitude in a single direction in the specified units. # The width of the column. Set when the column's `width_type` is FIXED_WIDTH.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "widthType": "A String", # The width type of the column.
                },
              ],
            },
          },
          "tableOfContents": { # A StructuralElement representing a table of contents. # A table of contents type of structural element.
            "content": [ # The content of the table of contents.
              # Object with schema name: StructuralElement
            ],
            "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
              "A String",
            ],
            "suggestedInsertionIds": [ # The suggested insertion IDs. A TableOfContents may have multiple insertion IDs if it is a nested suggested change. If empty, then this is not a suggested insertion.
              "A String",
            ],
          },
        },
      ],
      "footnoteId": "A String", # The ID of the footnote.
    },
  },
  "headers": { # Output only. The headers in the document, keyed by header ID.
    "a_key": { # A document header.
      "content": [ # The contents of the header. The indexes for a header's content begin at zero.
        { # A StructuralElement describes content that provides structure to the document.
          "endIndex": 42, # The zero-based end index of this structural element, exclusive, in UTF-16 code units.
          "paragraph": { # A StructuralElement representing a paragraph. A paragraph is a range of content that's terminated with a newline character. # A paragraph type of structural element.
            "bullet": { # Describes the bullet of a paragraph. # The bullet for this paragraph. If not present, the paragraph does not belong to a list.
              "listId": "A String", # The ID of the list this paragraph belongs to.
              "nestingLevel": 42, # The nesting level of this paragraph in the list.
              "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The paragraph-specific text style applied to this bullet.
                "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                "bold": True or False, # Whether or not the text is rendered as bold.
                "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "italic": True or False, # Whether or not the text is italicized.
                "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                  "bookmarkId": "A String", # The ID of a bookmark in this document.
                  "headingId": "A String", # The ID of a heading in this document.
                  "url": "A String", # An external URL.
                },
                "smallCaps": True or False, # Whether or not the text is in small capital letters.
                "strikethrough": True or False, # Whether or not the text is struck through.
                "underline": True or False, # Whether or not the text is underlined.
                "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                  "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                  "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                },
              },
            },
            "elements": [ # The content of the paragraph, broken down into its component parts.
              { # A ParagraphElement describes content within a Paragraph.
                "autoText": { # A ParagraphElement representing a spot in the text that's dynamically replaced with content that can change over time, like a page number. # An auto text paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. An AutoText may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this AutoText, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this AutoText.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                  "type": "A String", # The type of this auto text.
                },
                "columnBreak": { # A ParagraphElement representing a column break. A column break makes the subsequent text start at the top of the next column. # A column break paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A ColumnBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this ColumnBreak, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this ColumnBreak. Similar to text content, like text runs and footnote references, the text style of a column break can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "endIndex": 42, # The zero-base end index of this paragraph element, exclusive, in UTF-16 code units.
                "equation": { # A ParagraphElement representing an equation. # An equation paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. An Equation may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                },
                "footnoteReference": { # A ParagraphElement representing a footnote reference. A footnote reference is the inline content rendered with a number and is used to identify the footnote. # A footnote reference paragraph element.
                  "footnoteId": "A String", # The ID of the footnote that contains the content of this footnote reference.
                  "footnoteNumber": "A String", # The rendered number of this footnote.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A FootnoteReference may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this FootnoteReference, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this FootnoteReference.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "horizontalRule": { # A ParagraphElement representing a horizontal line. # A horizontal rule paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A HorizontalRule may have multiple insertion IDs if it is a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this HorizontalRule, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this HorizontalRule. Similar to text content, like text runs and footnote references, the text style of a horizontal rule can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "inlineObjectElement": { # A ParagraphElement that contains an InlineObject. # An inline object paragraph element.
                  "inlineObjectId": "A String", # The ID of the InlineObject this element contains.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. An InlineObjectElement may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this InlineObject, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this InlineObjectElement. Similar to text content, like text runs and footnote references, the text style of an inline object element can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "pageBreak": { # A ParagraphElement representing a page break. A page break makes the subsequent text start at the top of the next page. # A page break paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A PageBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this PageBreak, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this PageBreak. Similar to text content, like text runs and footnote references, the text style of a page break can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "person": { # A person or email address mentioned in a document. These mentions behave as a single, immutable element containing the person's name or email address. # A paragraph element that links to a person or email address.
                  "personId": "A String", # Output only. The unique ID of this link.
                  "personProperties": { # Properties specific to a linked Person. # Output only. The properties of this Person. This field is always present.
                    "email": "A String", # Output only. The email address linked to this Person. This field is always present.
                    "name": "A String", # Output only. The name of the person if it's displayed in the link text instead of the person's email address.
                  },
                  "suggestedDeletionIds": [ # IDs for suggestions that remove this person link from the document. A Person might have multiple deletion IDs if, for example, multiple users suggest deleting it. If empty, then this person link isn't suggested for deletion.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # IDs for suggestions that insert this person link into the document. A Person might have multiple insertion IDs if it's a nested suggested change (a suggestion within a suggestion made by a different user, for example). If empty, then this person link isn't a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this Person, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this Person.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "richLink": { # A link to a Google resource (such as a file in Drive, a YouTube video, or a Calendar event). # A paragraph element that links to a Google resource (such as a file in Google Drive, a YouTube video, or a Calendar event.)
                  "richLinkId": "A String", # Output only. The ID of this link.
                  "richLinkProperties": { # Properties specific to a RichLink. # Output only. The properties of this RichLink. This field is always present.
                    "mimeType": "A String", # Output only. The [MIME type](https://developers.google.com/drive/api/v3/mime-types) of the RichLink, if there's one (for example, when it's a file in Drive).
                    "title": "A String", # Output only. The title of the RichLink as displayed in the link. This title matches the title of the linked resource at the time of the insertion or last update of the link. This field is always present.
                    "uri": "A String", # Output only. The URI to the RichLink. This is always present.
                  },
                  "suggestedDeletionIds": [ # IDs for suggestions that remove this link from the document. A RichLink might have multiple deletion IDs if, for example, multiple users suggest deleting it. If empty, then this person link isn't suggested for deletion.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # IDs for suggestions that insert this link into the document. A RichLink might have multiple insertion IDs if it's a nested suggested change (a suggestion within a suggestion made by a different user, for example). If empty, then this person link isn't a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this RichLink, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this RichLink.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "startIndex": 42, # The zero-based start index of this paragraph element, in UTF-16 code units.
                "textRun": { # A ParagraphElement that represents a run of text that all has the same styling. # A text run paragraph element.
                  "content": "A String", # The text of this run. Any non-text elements in the run are replaced with the Unicode character U+E907.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A TextRun may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this run, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this run.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
              },
            ],
            "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The style of this paragraph.
              "alignment": "A String", # The text alignment for this paragraph.
              "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
              "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
              "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
              "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
              "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
              "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
              "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
              "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
              "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
                "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
              },
              "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "spacingMode": "A String", # The spacing mode for the paragraph.
              "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
                { # A tab stop within a paragraph.
                  "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
                  "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
              ],
            },
            "positionedObjectIds": [ # The IDs of the positioned objects tethered to this paragraph.
              "A String",
            ],
            "suggestedBulletChanges": { # The suggested changes to this paragraph's bullet.
              "a_key": { # A suggested change to a Bullet.
                "bullet": { # Describes the bullet of a paragraph. # A Bullet that only includes the changes made in this suggestion. This can be used along with the bullet_suggestion_state to see which fields have changed and their new values.
                  "listId": "A String", # The ID of the list this paragraph belongs to.
                  "nestingLevel": 42, # The nesting level of this paragraph in the list.
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The paragraph-specific text style applied to this bullet.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "bulletSuggestionState": { # A mask that indicates which of the fields on the base Bullet have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base Bullet have been changed in this suggestion.
                  "listIdSuggested": True or False, # Indicates if there was a suggested change to the list_id.
                  "nestingLevelSuggested": True or False, # Indicates if there was a suggested change to the nesting_level.
                  "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in text style have been changed in this suggestion.
                    "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                    "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                    "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                    "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                    "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                    "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                    "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                    "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                    "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                    "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                    "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                  },
                },
              },
            },
            "suggestedParagraphStyleChanges": { # The suggested paragraph style changes to this paragraph, keyed by suggestion ID.
              "a_key": { # A suggested change to a ParagraphStyle.
                "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A ParagraphStyle that only includes the changes made in this suggestion. This can be used along with the paragraph_style_suggestion_state to see which fields have changed and their new values.
                  "alignment": "A String", # The text alignment for this paragraph.
                  "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
                  "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
                  "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
                  "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
                  "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
                  "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
                  "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
                  "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
                  "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                  },
                  "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "spacingMode": "A String", # The spacing mode for the paragraph.
                  "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
                    { # A tab stop within a paragraph.
                      "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
                      "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                    },
                  ],
                },
                "paragraphStyleSuggestionState": { # A mask that indicates which of the fields on the base ParagraphStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base ParagraphStyle have been changed in this suggestion.
                  "alignmentSuggested": True or False, # Indicates if there was a suggested change to alignment.
                  "avoidWidowAndOrphanSuggested": True or False, # Indicates if there was a suggested change to avoid_widow_and_orphan.
                  "borderBetweenSuggested": True or False, # Indicates if there was a suggested change to border_between.
                  "borderBottomSuggested": True or False, # Indicates if there was a suggested change to border_bottom.
                  "borderLeftSuggested": True or False, # Indicates if there was a suggested change to border_left.
                  "borderRightSuggested": True or False, # Indicates if there was a suggested change to border_right.
                  "borderTopSuggested": True or False, # Indicates if there was a suggested change to border_top.
                  "directionSuggested": True or False, # Indicates if there was a suggested change to direction.
                  "headingIdSuggested": True or False, # Indicates if there was a suggested change to heading_id.
                  "indentEndSuggested": True or False, # Indicates if there was a suggested change to indent_end.
                  "indentFirstLineSuggested": True or False, # Indicates if there was a suggested change to indent_first_line.
                  "indentStartSuggested": True or False, # Indicates if there was a suggested change to indent_start.
                  "keepLinesTogetherSuggested": True or False, # Indicates if there was a suggested change to keep_lines_together.
                  "keepWithNextSuggested": True or False, # Indicates if there was a suggested change to keep_with_next.
                  "lineSpacingSuggested": True or False, # Indicates if there was a suggested change to line_spacing.
                  "namedStyleTypeSuggested": True or False, # Indicates if there was a suggested change to named_style_type.
                  "pageBreakBeforeSuggested": True or False, # Indicates if there was a suggested change to page_break_before.
                  "shadingSuggestionState": { # A mask that indicates which of the fields on the base Shading have been changed in this suggested change. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in shading have been changed in this suggestion.
                    "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to the Shading.
                  },
                  "spaceAboveSuggested": True or False, # Indicates if there was a suggested change to space_above.
                  "spaceBelowSuggested": True or False, # Indicates if there was a suggested change to space_below.
                  "spacingModeSuggested": True or False, # Indicates if there was a suggested change to spacing_mode.
                },
              },
            },
            "suggestedPositionedObjectIds": { # The IDs of the positioned objects suggested to be attached to this paragraph, keyed by suggestion ID.
              "a_key": { # A collection of object IDs.
                "objectIds": [ # The object IDs.
                  "A String",
                ],
              },
            },
          },
          "sectionBreak": { # A StructuralElement representing a section break. A section is a range of content that has the same SectionStyle. A section break represents the start of a new section, and the section style applies to the section after the section break. The document body always begins with a section break. # A section break type of structural element.
            "sectionStyle": { # The styling that applies to a section. # The style of the section after this section break.
              "columnProperties": [ # The section's columns properties. If empty, the section contains one column with the default properties in the Docs editor. A section can be updated to have no more than 3 columns. When updating this property, setting a concrete value is required. Unsetting this property will result in a 400 bad request error.
                { # Properties that apply to a section's column.
                  "paddingEnd": { # A magnitude in a single direction in the specified units. # The padding at the end of the column.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "width": { # A magnitude in a single direction in the specified units. # Output only. The width of the column.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
              ],
              "columnSeparatorStyle": "A String", # The style of column separators. This style can be set even when there's one column in the section. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "contentDirection": "A String", # The content direction of this section. If unset, the value defaults to LEFT_TO_RIGHT. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "defaultFooterId": "A String", # The ID of the default footer. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's default_footer_id. This property is read-only.
              "defaultHeaderId": "A String", # The ID of the default header. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's default_header_id. This property is read-only.
              "evenPageFooterId": "A String", # The ID of the footer used only for even pages. If the value of DocumentStyle's use_even_page_header_footer is true, this value is used for the footers on even pages in the section. If it is false, the footers on even pages use the default_footer_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's even_page_footer_id. This property is read-only.
              "evenPageHeaderId": "A String", # The ID of the header used only for even pages. If the value of DocumentStyle's use_even_page_header_footer is true, this value is used for the headers on even pages in the section. If it is false, the headers on even pages use the default_header_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's even_page_header_id. This property is read-only.
              "firstPageFooterId": "A String", # The ID of the footer used only for the first page of the section. If use_first_page_header_footer is true, this value is used for the footer on the first page of the section. If it's false, the footer on the first page of the section uses the default_footer_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's first_page_footer_id. This property is read-only.
              "firstPageHeaderId": "A String", # The ID of the header used only for the first page of the section. If use_first_page_header_footer is true, this value is used for the header on the first page of the section. If it's false, the header on the first page of the section uses the default_header_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's first_page_header_id. This property is read-only.
              "flipPageOrientation": True or False, # Optional. Indicates whether to flip the dimensions of DocumentStyle's page_size for this section, which allows changing the page orientation between portrait and landscape. If unset, the value inherits from DocumentStyle's flip_page_orientation. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom page margin of the section. If unset, the value defaults to margin_bottom from DocumentStyle. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginFooter": { # A magnitude in a single direction in the specified units. # The footer margin of the section. If unset, the value defaults to margin_footer from DocumentStyle. If updated, use_custom_header_footer_margins is set to true on DocumentStyle. The value of use_custom_header_footer_margins on DocumentStyle indicates if a footer margin is being respected for this section When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginHeader": { # A magnitude in a single direction in the specified units. # The header margin of the section. If unset, the value defaults to margin_header from DocumentStyle. If updated, use_custom_header_footer_margins is set to true on DocumentStyle. The value of use_custom_header_footer_margins on DocumentStyle indicates if a header margin is being respected for this section. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginLeft": { # A magnitude in a single direction in the specified units. # The left page margin of the section. If unset, the value defaults to margin_left from DocumentStyle. Updating the left margin causes columns in this section to resize. Since the margin affects column width, it's applied before column properties. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginRight": { # A magnitude in a single direction in the specified units. # The right page margin of the section. If unset, the value defaults to margin_right from DocumentStyle. Updating the right margin causes columns in this section to resize. Since the margin affects column width, it's applied before column properties. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginTop": { # A magnitude in a single direction in the specified units. # The top page margin of the section. If unset, the value defaults to margin_top from DocumentStyle. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "pageNumberStart": 42, # The page number from which to start counting the number of pages for this section. If unset, page numbering continues from the previous section. If the value is unset in the first SectionBreak, refer to DocumentStyle's page_number_start. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "sectionType": "A String", # Output only. The type of section.
              "useFirstPageHeaderFooter": True or False, # Indicates whether to use the first page header / footer IDs for the first page of the section. If unset, it inherits from DocumentStyle's use_first_page_header_footer for the first section. If the value is unset for subsequent sectors, it should be interpreted as false. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
            },
            "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
              "A String",
            ],
            "suggestedInsertionIds": [ # The suggested insertion IDs. A SectionBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
              "A String",
            ],
          },
          "startIndex": 42, # The zero-based start index of this structural element, in UTF-16 code units.
          "table": { # A StructuralElement representing a table. # A table type of structural element.
            "columns": 42, # Number of columns in the table. It's possible for a table to be non-rectangular, so some rows may have a different number of cells.
            "rows": 42, # Number of rows in the table.
            "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
              "A String",
            ],
            "suggestedInsertionIds": [ # The suggested insertion IDs. A Table may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
              "A String",
            ],
            "tableRows": [ # The contents and style of each row.
              { # The contents and style of a row in a Table.
                "endIndex": 42, # The zero-based end index of this row, exclusive, in UTF-16 code units.
                "startIndex": 42, # The zero-based start index of this row, in UTF-16 code units.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. A TableRow may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
                "suggestedTableRowStyleChanges": { # The suggested style changes to this row, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TableRowStyle.
                    "tableRowStyle": { # Styles that apply to a table row. # A TableRowStyle that only includes the changes made in this suggestion. This can be used along with the table_row_style_suggestion_state to see which fields have changed and their new values.
                      "minRowHeight": { # A magnitude in a single direction in the specified units. # The minimum height of the row. The row will be rendered in the Docs editor at a height equal to or greater than this value in order to show all the content in the row's cells.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "preventOverflow": True or False, # Whether the row cannot overflow across page or column boundaries.
                      "tableHeader": True or False, # Whether the row is a table header.
                    },
                    "tableRowStyleSuggestionState": { # A mask that indicates which of the fields on the base TableRowStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TableRowStyle have been changed in this suggestion.
                      "minRowHeightSuggested": True or False, # Indicates if there was a suggested change to min_row_height.
                    },
                  },
                },
                "tableCells": [ # The contents and style of each cell in this row. It's possible for a table to be non-rectangular, so some rows may have a different number of cells than other rows in the same table.
                  { # The contents and style of a cell in a Table.
                    "content": [ # The content of the cell.
                      # Object with schema name: StructuralElement
                    ],
                    "endIndex": 42, # The zero-based end index of this cell, exclusive, in UTF-16 code units.
                    "startIndex": 42, # The zero-based start index of this cell, in UTF-16 code units.
                    "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                      "A String",
                    ],
                    "suggestedInsertionIds": [ # The suggested insertion IDs. A TableCell may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                      "A String",
                    ],
                    "suggestedTableCellStyleChanges": { # The suggested changes to the table cell style, keyed by suggestion ID.
                      "a_key": { # A suggested change to a TableCellStyle.
                        "tableCellStyle": { # The style of a TableCell. Inherited table cell styles are represented as unset fields in this message. A table cell style can inherit from the table's style. # A TableCellStyle that only includes the changes made in this suggestion. This can be used along with the table_cell_style_suggestion_state to see which fields have changed and their new values.
                          "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the cell.
                            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                              "rgbColor": { # An RGB color. # The RGB color value.
                                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                              },
                            },
                          },
                          "borderBottom": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The bottom border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "borderLeft": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The left border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "borderRight": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The right border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "borderTop": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The top border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "columnSpan": 42, # The column span of the cell. This property is read-only.
                          "contentAlignment": "A String", # The alignment of the content in the table cell. The default alignment matches the alignment for newly created table cells in the Docs editor.
                          "paddingBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "paddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "paddingRight": { # A magnitude in a single direction in the specified units. # The right padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "rowSpan": 42, # The row span of the cell. This property is read-only.
                        },
                        "tableCellStyleSuggestionState": { # A mask that indicates which of the fields on the base TableCellStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TableCellStyle have been changed in this suggestion.
                          "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                          "borderBottomSuggested": True or False, # Indicates if there was a suggested change to border_bottom.
                          "borderLeftSuggested": True or False, # Indicates if there was a suggested change to border_left.
                          "borderRightSuggested": True or False, # Indicates if there was a suggested change to border_right.
                          "borderTopSuggested": True or False, # Indicates if there was a suggested change to border_top.
                          "columnSpanSuggested": True or False, # Indicates if there was a suggested change to column_span.
                          "contentAlignmentSuggested": True or False, # Indicates if there was a suggested change to content_alignment.
                          "paddingBottomSuggested": True or False, # Indicates if there was a suggested change to padding_bottom.
                          "paddingLeftSuggested": True or False, # Indicates if there was a suggested change to padding_left.
                          "paddingRightSuggested": True or False, # Indicates if there was a suggested change to padding_right.
                          "paddingTopSuggested": True or False, # Indicates if there was a suggested change to padding_top.
                          "rowSpanSuggested": True or False, # Indicates if there was a suggested change to row_span.
                        },
                      },
                    },
                    "tableCellStyle": { # The style of a TableCell. Inherited table cell styles are represented as unset fields in this message. A table cell style can inherit from the table's style. # The style of the cell.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the cell.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "borderBottom": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The bottom border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "borderLeft": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The left border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "borderRight": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The right border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "borderTop": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The top border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "columnSpan": 42, # The column span of the cell. This property is read-only.
                      "contentAlignment": "A String", # The alignment of the content in the table cell. The default alignment matches the alignment for newly created table cells in the Docs editor.
                      "paddingBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "paddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "paddingRight": { # A magnitude in a single direction in the specified units. # The right padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "rowSpan": 42, # The row span of the cell. This property is read-only.
                    },
                  },
                ],
                "tableRowStyle": { # Styles that apply to a table row. # The style of the table row.
                  "minRowHeight": { # A magnitude in a single direction in the specified units. # The minimum height of the row. The row will be rendered in the Docs editor at a height equal to or greater than this value in order to show all the content in the row's cells.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "preventOverflow": True or False, # Whether the row cannot overflow across page or column boundaries.
                  "tableHeader": True or False, # Whether the row is a table header.
                },
              },
            ],
            "tableStyle": { # Styles that apply to a table. # The style of the table.
              "tableColumnProperties": [ # The properties of each column. Note that in Docs, tables contain rows and rows contain cells, similar to HTML. So the properties for a row can be found on the row's table_row_style.
                { # The properties of a column in a table.
                  "width": { # A magnitude in a single direction in the specified units. # The width of the column. Set when the column's `width_type` is FIXED_WIDTH.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "widthType": "A String", # The width type of the column.
                },
              ],
            },
          },
          "tableOfContents": { # A StructuralElement representing a table of contents. # A table of contents type of structural element.
            "content": [ # The content of the table of contents.
              # Object with schema name: StructuralElement
            ],
            "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
              "A String",
            ],
            "suggestedInsertionIds": [ # The suggested insertion IDs. A TableOfContents may have multiple insertion IDs if it is a nested suggested change. If empty, then this is not a suggested insertion.
              "A String",
            ],
          },
        },
      ],
      "headerId": "A String", # The ID of the header.
    },
  },
  "inlineObjects": { # Output only. The inline objects in the document, keyed by object ID.
    "a_key": { # An object that appears inline with text. An InlineObject contains an EmbeddedObject such as an image.
      "inlineObjectProperties": { # Properties of an InlineObject. # The properties of this inline object.
        "embeddedObject": { # An embedded object in the document. # The embedded object of this inline object.
          "description": "A String", # The description of the embedded object. The `title` and `description` are both combined to display alt text.
          "embeddedDrawingProperties": { # The properties of an embedded drawing and used to differentiate the object type. An embedded drawing is one that's created and edited within a document. Note that extensive details are not supported. # The properties of an embedded drawing.
          },
          "embeddedObjectBorder": { # A border around an EmbeddedObject. # The border of the embedded object.
            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
            "dashStyle": "A String", # The dash style of the border.
            "propertyState": "A String", # The property state of the border property.
            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "imageProperties": { # The properties of an image. # The properties of an image.
            "angle": 3.14, # The clockwise rotation angle of the image, in radians.
            "brightness": 3.14, # The brightness effect of the image. The value should be in the interval [-1.0, 1.0], where 0 means no effect.
            "contentUri": "A String", # A URI to the image with a default lifetime of 30 minutes. This URI is tagged with the account of the requester. Anyone with the URI effectively accesses the image as the original requester. Access to the image may be lost if the document's sharing settings change.
            "contrast": 3.14, # The contrast effect of the image. The value should be in the interval [-1.0, 1.0], where 0 means no effect.
            "cropProperties": { # The crop properties of an image. The crop rectangle is represented using fractional offsets from the original content's 4 edges. - If the offset is in the interval (0, 1), the corresponding edge of crop rectangle is positioned inside of the image's original bounding rectangle. - If the offset is negative or greater than 1, the corresponding edge of crop rectangle is positioned outside of the image's original bounding rectangle. - If all offsets and rotation angle are 0, the image is not cropped. # The crop properties of the image.
              "angle": 3.14, # The clockwise rotation angle of the crop rectangle around its center, in radians. Rotation is applied after the offsets.
              "offsetBottom": 3.14, # The offset specifies how far inwards the bottom edge of the crop rectangle is from the bottom edge of the original content as a fraction of the original content's height.
              "offsetLeft": 3.14, # The offset specifies how far inwards the left edge of the crop rectangle is from the left edge of the original content as a fraction of the original content's width.
              "offsetRight": 3.14, # The offset specifies how far inwards the right edge of the crop rectangle is from the right edge of the original content as a fraction of the original content's width.
              "offsetTop": 3.14, # The offset specifies how far inwards the top edge of the crop rectangle is from the top edge of the original content as a fraction of the original content's height.
            },
            "sourceUri": "A String", # The source URI is the URI used to insert the image. The source URI can be empty.
            "transparency": 3.14, # The transparency effect of the image. The value should be in the interval [0.0, 1.0], where 0 means no effect and 1 means transparent.
          },
          "linkedContentReference": { # A reference to the external linked source content. # A reference to the external linked source content. For example, it contains a reference to the source Google Sheets chart when the embedded object is a linked chart. If unset, then the embedded object is not linked.
            "sheetsChartReference": { # A reference to a linked chart embedded from Google Sheets. # A reference to the linked chart.
              "chartId": 42, # The ID of the specific chart in the Google Sheets spreadsheet that's embedded.
              "spreadsheetId": "A String", # The ID of the Google Sheets spreadsheet that contains the source chart.
            },
          },
          "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom margin of the embedded object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "marginLeft": { # A magnitude in a single direction in the specified units. # The left margin of the embedded object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "marginRight": { # A magnitude in a single direction in the specified units. # The right margin of the embedded object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "marginTop": { # A magnitude in a single direction in the specified units. # The top margin of the embedded object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "size": { # A width and height. # The visible size of the image after cropping.
            "height": { # A magnitude in a single direction in the specified units. # The height of the object.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "width": { # A magnitude in a single direction in the specified units. # The width of the object.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "title": "A String", # The title of the embedded object. The `title` and `description` are both combined to display alt text.
        },
      },
      "objectId": "A String", # The ID of this inline object. Can be used to update an object’s properties.
      "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
        "A String",
      ],
      "suggestedInlineObjectPropertiesChanges": { # The suggested changes to the inline object properties, keyed by suggestion ID.
        "a_key": { # A suggested change to InlineObjectProperties.
          "inlineObjectProperties": { # Properties of an InlineObject. # An InlineObjectProperties that only includes the changes made in this suggestion. This can be used along with the inline_object_properties_suggestion_state to see which fields have changed and their new values.
            "embeddedObject": { # An embedded object in the document. # The embedded object of this inline object.
              "description": "A String", # The description of the embedded object. The `title` and `description` are both combined to display alt text.
              "embeddedDrawingProperties": { # The properties of an embedded drawing and used to differentiate the object type. An embedded drawing is one that's created and edited within a document. Note that extensive details are not supported. # The properties of an embedded drawing.
              },
              "embeddedObjectBorder": { # A border around an EmbeddedObject. # The border of the embedded object.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "propertyState": "A String", # The property state of the border property.
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "imageProperties": { # The properties of an image. # The properties of an image.
                "angle": 3.14, # The clockwise rotation angle of the image, in radians.
                "brightness": 3.14, # The brightness effect of the image. The value should be in the interval [-1.0, 1.0], where 0 means no effect.
                "contentUri": "A String", # A URI to the image with a default lifetime of 30 minutes. This URI is tagged with the account of the requester. Anyone with the URI effectively accesses the image as the original requester. Access to the image may be lost if the document's sharing settings change.
                "contrast": 3.14, # The contrast effect of the image. The value should be in the interval [-1.0, 1.0], where 0 means no effect.
                "cropProperties": { # The crop properties of an image. The crop rectangle is represented using fractional offsets from the original content's 4 edges. - If the offset is in the interval (0, 1), the corresponding edge of crop rectangle is positioned inside of the image's original bounding rectangle. - If the offset is negative or greater than 1, the corresponding edge of crop rectangle is positioned outside of the image's original bounding rectangle. - If all offsets and rotation angle are 0, the image is not cropped. # The crop properties of the image.
                  "angle": 3.14, # The clockwise rotation angle of the crop rectangle around its center, in radians. Rotation is applied after the offsets.
                  "offsetBottom": 3.14, # The offset specifies how far inwards the bottom edge of the crop rectangle is from the bottom edge of the original content as a fraction of the original content's height.
                  "offsetLeft": 3.14, # The offset specifies how far inwards the left edge of the crop rectangle is from the left edge of the original content as a fraction of the original content's width.
                  "offsetRight": 3.14, # The offset specifies how far inwards the right edge of the crop rectangle is from the right edge of the original content as a fraction of the original content's width.
                  "offsetTop": 3.14, # The offset specifies how far inwards the top edge of the crop rectangle is from the top edge of the original content as a fraction of the original content's height.
                },
                "sourceUri": "A String", # The source URI is the URI used to insert the image. The source URI can be empty.
                "transparency": 3.14, # The transparency effect of the image. The value should be in the interval [0.0, 1.0], where 0 means no effect and 1 means transparent.
              },
              "linkedContentReference": { # A reference to the external linked source content. # A reference to the external linked source content. For example, it contains a reference to the source Google Sheets chart when the embedded object is a linked chart. If unset, then the embedded object is not linked.
                "sheetsChartReference": { # A reference to a linked chart embedded from Google Sheets. # A reference to the linked chart.
                  "chartId": 42, # The ID of the specific chart in the Google Sheets spreadsheet that's embedded.
                  "spreadsheetId": "A String", # The ID of the Google Sheets spreadsheet that contains the source chart.
                },
              },
              "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom margin of the embedded object.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginLeft": { # A magnitude in a single direction in the specified units. # The left margin of the embedded object.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginRight": { # A magnitude in a single direction in the specified units. # The right margin of the embedded object.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginTop": { # A magnitude in a single direction in the specified units. # The top margin of the embedded object.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "size": { # A width and height. # The visible size of the image after cropping.
                "height": { # A magnitude in a single direction in the specified units. # The height of the object.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the object.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "title": "A String", # The title of the embedded object. The `title` and `description` are both combined to display alt text.
            },
          },
          "inlineObjectPropertiesSuggestionState": { # A mask that indicates which of the fields on the base InlineObjectProperties have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base InlineObjectProperties have been changed in this suggestion.
            "embeddedObjectSuggestionState": { # A mask that indicates which of the fields on the base EmbeddedObject have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in embedded_object have been changed in this suggestion.
              "descriptionSuggested": True or False, # Indicates if there was a suggested change to description.
              "embeddedDrawingPropertiesSuggestionState": { # A mask that indicates which of the fields on the base EmbeddedDrawingProperties have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in embedded_drawing_properties have been changed in this suggestion.
              },
              "embeddedObjectBorderSuggestionState": { # A mask that indicates which of the fields on the base EmbeddedObjectBorder have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in embedded_object_border have been changed in this suggestion.
                "colorSuggested": True or False, # Indicates if there was a suggested change to color.
                "dashStyleSuggested": True or False, # Indicates if there was a suggested change to dash_style.
                "propertyStateSuggested": True or False, # Indicates if there was a suggested change to property_state.
                "widthSuggested": True or False, # Indicates if there was a suggested change to width.
              },
              "imagePropertiesSuggestionState": { # A mask that indicates which of the fields on the base ImageProperties have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in image_properties have been changed in this suggestion.
                "angleSuggested": True or False, # Indicates if there was a suggested change to angle.
                "brightnessSuggested": True or False, # Indicates if there was a suggested change to brightness.
                "contentUriSuggested": True or False, # Indicates if there was a suggested change to content_uri.
                "contrastSuggested": True or False, # Indicates if there was a suggested change to contrast.
                "cropPropertiesSuggestionState": { # A mask that indicates which of the fields on the base CropProperties have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in crop_properties have been changed in this suggestion.
                  "angleSuggested": True or False, # Indicates if there was a suggested change to angle.
                  "offsetBottomSuggested": True or False, # Indicates if there was a suggested change to offset_bottom.
                  "offsetLeftSuggested": True or False, # Indicates if there was a suggested change to offset_left.
                  "offsetRightSuggested": True or False, # Indicates if there was a suggested change to offset_right.
                  "offsetTopSuggested": True or False, # Indicates if there was a suggested change to offset_top.
                },
                "sourceUriSuggested": True or False, # Indicates if there was a suggested change to source_uri.
                "transparencySuggested": True or False, # Indicates if there was a suggested change to transparency.
              },
              "linkedContentReferenceSuggestionState": { # A mask that indicates which of the fields on the base LinkedContentReference have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in linked_content_reference have been changed in this suggestion.
                "sheetsChartReferenceSuggestionState": { # A mask that indicates which of the fields on the base SheetsChartReference have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in sheets_chart_reference have been changed in this suggestion.
                  "chartIdSuggested": True or False, # Indicates if there was a suggested change to chart_id.
                  "spreadsheetIdSuggested": True or False, # Indicates if there was a suggested change to spreadsheet_id.
                },
              },
              "marginBottomSuggested": True or False, # Indicates if there was a suggested change to margin_bottom.
              "marginLeftSuggested": True or False, # Indicates if there was a suggested change to margin_left.
              "marginRightSuggested": True or False, # Indicates if there was a suggested change to margin_right.
              "marginTopSuggested": True or False, # Indicates if there was a suggested change to margin_top.
              "sizeSuggestionState": { # A mask that indicates which of the fields on the base Size have been changed in this suggestion. For any field set to true, the Size has a new suggested value. # A mask that indicates which of the fields in size have been changed in this suggestion.
                "heightSuggested": True or False, # Indicates if there was a suggested change to height.
                "widthSuggested": True or False, # Indicates if there was a suggested change to width.
              },
              "titleSuggested": True or False, # Indicates if there was a suggested change to title.
            },
          },
        },
      },
      "suggestedInsertionId": "A String", # The suggested insertion ID. If empty, then this is not a suggested insertion.
    },
  },
  "lists": { # Output only. The lists in the document, keyed by list ID.
    "a_key": { # A List represents the list attributes for a group of paragraphs that all belong to the same list. A paragraph that's part of a list has a reference to the list's ID in its bullet.
      "listProperties": { # The properties of a list that describe the look and feel of bullets belonging to paragraphs associated with a list. # The properties of the list.
        "nestingLevels": [ # Describes the properties of the bullets at the associated level. A list has at most 9 levels of nesting with nesting level 0 corresponding to the top-most level and nesting level 8 corresponding to the most nested level. The nesting levels are returned in ascending order with the least nested returned first.
          { # Contains properties describing the look and feel of a list bullet at a given level of nesting.
            "bulletAlignment": "A String", # The alignment of the bullet within the space allotted for rendering the bullet.
            "glyphFormat": "A String", # The format string used by bullets at this level of nesting. The glyph format contains one or more placeholders, and these placeholders are replaced with the appropriate values depending on the glyph_type or glyph_symbol. The placeholders follow the pattern `%[nesting_level]`. Furthermore, placeholders can have prefixes and suffixes. Thus, the glyph format follows the pattern `%[nesting_level]`. Note that the prefix and suffix are optional and can be arbitrary strings. For example, the glyph format `%0.` indicates that the rendered glyph will replace the placeholder with the corresponding glyph for nesting level 0 followed by a period as the suffix. So a list with a glyph type of UPPER_ALPHA and glyph format `%0.` at nesting level 0 will result in a list with rendered glyphs `A.` `B.` `C.` The glyph format can contain placeholders for the current nesting level as well as placeholders for parent nesting levels. For example, a list can have a glyph format of `%0.` at nesting level 0 and a glyph format of `%0.%1.` at nesting level 1. Assuming both nesting levels have DECIMAL glyph types, this would result in a list with rendered glyphs `1.` `2.` ` 2.1.` ` 2.2.` `3.` For nesting levels that are ordered, the string that replaces a placeholder in the glyph format for a particular paragraph depends on the paragraph's order within the list.
            "glyphSymbol": "A String", # A custom glyph symbol used by bullets when paragraphs at this level of nesting are unordered. The glyph symbol replaces placeholders within the glyph_format. For example, if the glyph_symbol is the solid circle corresponding to Unicode U+25cf code point and the glyph_format is `%0`, the rendered glyph would be the solid circle.
            "glyphType": "A String", # The type of glyph used by bullets when paragraphs at this level of nesting are ordered. The glyph type determines the type of glyph used to replace placeholders within the glyph_format when paragraphs at this level of nesting are ordered. For example, if the nesting level is 0, the glyph_format is `%0.` and the glyph type is DECIMAL, then the rendered glyph would replace the placeholder `%0` in the glyph format with a number corresponding to list item's order within the list.
            "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of paragraphs at this level of nesting.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for paragraphs at this level of nesting. Applied to the side that corresponds to the start of the text, based on the paragraph's content direction.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "startNumber": 42, # The number of the first list item at this nesting level. A value of 0 is treated as a value of 1 for lettered lists and Roman numeral lists. For values of both 0 and 1, lettered and Roman numeral lists will begin at `a` and `i` respectively. This value is ignored for nesting levels with unordered glyphs.
            "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of bullets at this level of nesting.
              "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
              "bold": True or False, # Whether or not the text is rendered as bold.
              "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "italic": True or False, # Whether or not the text is italicized.
              "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                "bookmarkId": "A String", # The ID of a bookmark in this document.
                "headingId": "A String", # The ID of a heading in this document.
                "url": "A String", # An external URL.
              },
              "smallCaps": True or False, # Whether or not the text is in small capital letters.
              "strikethrough": True or False, # Whether or not the text is struck through.
              "underline": True or False, # Whether or not the text is underlined.
              "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
              },
            },
          },
        ],
      },
      "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this list.
        "A String",
      ],
      "suggestedInsertionId": "A String", # The suggested insertion ID. If empty, then this is not a suggested insertion.
      "suggestedListPropertiesChanges": { # The suggested changes to the list properties, keyed by suggestion ID.
        "a_key": { # A suggested change to ListProperties.
          "listProperties": { # The properties of a list that describe the look and feel of bullets belonging to paragraphs associated with a list. # A ListProperties that only includes the changes made in this suggestion. This can be used along with the list_properties_suggestion_state to see which fields have changed and their new values.
            "nestingLevels": [ # Describes the properties of the bullets at the associated level. A list has at most 9 levels of nesting with nesting level 0 corresponding to the top-most level and nesting level 8 corresponding to the most nested level. The nesting levels are returned in ascending order with the least nested returned first.
              { # Contains properties describing the look and feel of a list bullet at a given level of nesting.
                "bulletAlignment": "A String", # The alignment of the bullet within the space allotted for rendering the bullet.
                "glyphFormat": "A String", # The format string used by bullets at this level of nesting. The glyph format contains one or more placeholders, and these placeholders are replaced with the appropriate values depending on the glyph_type or glyph_symbol. The placeholders follow the pattern `%[nesting_level]`. Furthermore, placeholders can have prefixes and suffixes. Thus, the glyph format follows the pattern `%[nesting_level]`. Note that the prefix and suffix are optional and can be arbitrary strings. For example, the glyph format `%0.` indicates that the rendered glyph will replace the placeholder with the corresponding glyph for nesting level 0 followed by a period as the suffix. So a list with a glyph type of UPPER_ALPHA and glyph format `%0.` at nesting level 0 will result in a list with rendered glyphs `A.` `B.` `C.` The glyph format can contain placeholders for the current nesting level as well as placeholders for parent nesting levels. For example, a list can have a glyph format of `%0.` at nesting level 0 and a glyph format of `%0.%1.` at nesting level 1. Assuming both nesting levels have DECIMAL glyph types, this would result in a list with rendered glyphs `1.` `2.` ` 2.1.` ` 2.2.` `3.` For nesting levels that are ordered, the string that replaces a placeholder in the glyph format for a particular paragraph depends on the paragraph's order within the list.
                "glyphSymbol": "A String", # A custom glyph symbol used by bullets when paragraphs at this level of nesting are unordered. The glyph symbol replaces placeholders within the glyph_format. For example, if the glyph_symbol is the solid circle corresponding to Unicode U+25cf code point and the glyph_format is `%0`, the rendered glyph would be the solid circle.
                "glyphType": "A String", # The type of glyph used by bullets when paragraphs at this level of nesting are ordered. The glyph type determines the type of glyph used to replace placeholders within the glyph_format when paragraphs at this level of nesting are ordered. For example, if the nesting level is 0, the glyph_format is `%0.` and the glyph type is DECIMAL, then the rendered glyph would replace the placeholder `%0` in the glyph format with a number corresponding to list item's order within the list.
                "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of paragraphs at this level of nesting.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for paragraphs at this level of nesting. Applied to the side that corresponds to the start of the text, based on the paragraph's content direction.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "startNumber": 42, # The number of the first list item at this nesting level. A value of 0 is treated as a value of 1 for lettered lists and Roman numeral lists. For values of both 0 and 1, lettered and Roman numeral lists will begin at `a` and `i` respectively. This value is ignored for nesting levels with unordered glyphs.
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of bullets at this level of nesting.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
              },
            ],
          },
          "listPropertiesSuggestionState": { # A mask that indicates which of the fields on the base ListProperties have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base ListProperties have been changed in this suggestion.
            "nestingLevelsSuggestionStates": [ # A mask that indicates which of the fields on the corresponding NestingLevel in nesting_levels have been changed in this suggestion. The nesting level suggestion states are returned in ascending order of the nesting level with the least nested returned first.
              { # A mask that indicates which of the fields on the base NestingLevel have been changed in this suggestion. For any field set to true, there's a new suggested value.
                "bulletAlignmentSuggested": True or False, # Indicates if there was a suggested change to bullet_alignment.
                "glyphFormatSuggested": True or False, # Indicates if there was a suggested change to glyph_format.
                "glyphSymbolSuggested": True or False, # Indicates if there was a suggested change to glyph_symbol.
                "glyphTypeSuggested": True or False, # Indicates if there was a suggested change to glyph_type.
                "indentFirstLineSuggested": True or False, # Indicates if there was a suggested change to indent_first_line.
                "indentStartSuggested": True or False, # Indicates if there was a suggested change to indent_start.
                "startNumberSuggested": True or False, # Indicates if there was a suggested change to start_number.
                "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in text style have been changed in this suggestion.
                  "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                  "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                  "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                  "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                  "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                  "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                  "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                  "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                  "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                  "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                  "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                },
              },
            ],
          },
        },
      },
    },
  },
  "namedRanges": { # Output only. The named ranges in the document, keyed by name.
    "a_key": { # A collection of all the NamedRanges in the document that share a given name.
      "name": "A String", # The name that all the named ranges share.
      "namedRanges": [ # The NamedRanges that share the same name.
        { # A collection of Ranges with the same named range ID. Named ranges allow developers to associate parts of a document with an arbitrary user-defined label so their contents can be programmatically read or edited later. A document can contain multiple named ranges with the same name, but every named range has a unique ID. A named range is created with a single Range, and content inserted inside a named range generally expands that range. However, certain document changes can cause the range to be split into multiple ranges. Named ranges are not private. All applications and collaborators that have access to the document can see its named ranges.
          "name": "A String", # The name of the named range.
          "namedRangeId": "A String", # The ID of the named range.
          "ranges": [ # The ranges that belong to this named range.
            { # Specifies a contiguous range of text.
              "endIndex": 42, # The zero-based end index of this range, exclusive, in UTF-16 code units. In all current uses, an end index must be provided. This field is an Int32Value in order to accommodate future use cases with open-ended ranges.
              "segmentId": "A String", # The ID of the header, footer, or footnote that this range is contained in. An empty segment ID signifies the document's body.
              "startIndex": 42, # The zero-based start index of this range, in UTF-16 code units. In all current uses, a start index must be provided. This field is an Int32Value in order to accommodate future use cases with open-ended ranges.
            },
          ],
        },
      ],
    },
  },
  "namedStyles": { # The named styles. Paragraphs in the document can inherit their TextStyle and ParagraphStyle from these named styles. # Output only. The named styles of the document.
    "styles": [ # The named styles. There's an entry for each of the possible named style types.
      { # A named style. Paragraphs in the document can inherit their TextStyle and ParagraphStyle from this named style when they have the same named style type.
        "namedStyleType": "A String", # The type of this named style.
        "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The paragraph style of this named style.
          "alignment": "A String", # The text alignment for this paragraph.
          "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
          "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
            "dashStyle": "A String", # The dash style of the border.
            "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
            "dashStyle": "A String", # The dash style of the border.
            "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
            "dashStyle": "A String", # The dash style of the border.
            "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
            "dashStyle": "A String", # The dash style of the border.
            "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
            "dashStyle": "A String", # The dash style of the border.
            "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
          "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
          "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
          "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
          "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
          "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
          "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
          "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
            "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
          },
          "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "spacingMode": "A String", # The spacing mode for the paragraph.
          "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
            { # A tab stop within a paragraph.
              "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
              "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
            },
          ],
        },
        "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this named style.
          "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
              "rgbColor": { # An RGB color. # The RGB color value.
                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
              },
            },
          },
          "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
          "bold": True or False, # Whether or not the text is rendered as bold.
          "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
              "rgbColor": { # An RGB color. # The RGB color value.
                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
              },
            },
          },
          "italic": True or False, # Whether or not the text is italicized.
          "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
            "bookmarkId": "A String", # The ID of a bookmark in this document.
            "headingId": "A String", # The ID of a heading in this document.
            "url": "A String", # An external URL.
          },
          "smallCaps": True or False, # Whether or not the text is in small capital letters.
          "strikethrough": True or False, # Whether or not the text is struck through.
          "underline": True or False, # Whether or not the text is underlined.
          "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
            "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
            "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
          },
        },
      },
    ],
  },
  "positionedObjects": { # Output only. The positioned objects in the document, keyed by object ID.
    "a_key": { # An object that's tethered to a Paragraph and positioned relative to the beginning of the paragraph. A PositionedObject contains an EmbeddedObject such as an image.
      "objectId": "A String", # The ID of this positioned object.
      "positionedObjectProperties": { # Properties of a PositionedObject. # The properties of this positioned object.
        "embeddedObject": { # An embedded object in the document. # The embedded object of this positioned object.
          "description": "A String", # The description of the embedded object. The `title` and `description` are both combined to display alt text.
          "embeddedDrawingProperties": { # The properties of an embedded drawing and used to differentiate the object type. An embedded drawing is one that's created and edited within a document. Note that extensive details are not supported. # The properties of an embedded drawing.
          },
          "embeddedObjectBorder": { # A border around an EmbeddedObject. # The border of the embedded object.
            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
            "dashStyle": "A String", # The dash style of the border.
            "propertyState": "A String", # The property state of the border property.
            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "imageProperties": { # The properties of an image. # The properties of an image.
            "angle": 3.14, # The clockwise rotation angle of the image, in radians.
            "brightness": 3.14, # The brightness effect of the image. The value should be in the interval [-1.0, 1.0], where 0 means no effect.
            "contentUri": "A String", # A URI to the image with a default lifetime of 30 minutes. This URI is tagged with the account of the requester. Anyone with the URI effectively accesses the image as the original requester. Access to the image may be lost if the document's sharing settings change.
            "contrast": 3.14, # The contrast effect of the image. The value should be in the interval [-1.0, 1.0], where 0 means no effect.
            "cropProperties": { # The crop properties of an image. The crop rectangle is represented using fractional offsets from the original content's 4 edges. - If the offset is in the interval (0, 1), the corresponding edge of crop rectangle is positioned inside of the image's original bounding rectangle. - If the offset is negative or greater than 1, the corresponding edge of crop rectangle is positioned outside of the image's original bounding rectangle. - If all offsets and rotation angle are 0, the image is not cropped. # The crop properties of the image.
              "angle": 3.14, # The clockwise rotation angle of the crop rectangle around its center, in radians. Rotation is applied after the offsets.
              "offsetBottom": 3.14, # The offset specifies how far inwards the bottom edge of the crop rectangle is from the bottom edge of the original content as a fraction of the original content's height.
              "offsetLeft": 3.14, # The offset specifies how far inwards the left edge of the crop rectangle is from the left edge of the original content as a fraction of the original content's width.
              "offsetRight": 3.14, # The offset specifies how far inwards the right edge of the crop rectangle is from the right edge of the original content as a fraction of the original content's width.
              "offsetTop": 3.14, # The offset specifies how far inwards the top edge of the crop rectangle is from the top edge of the original content as a fraction of the original content's height.
            },
            "sourceUri": "A String", # The source URI is the URI used to insert the image. The source URI can be empty.
            "transparency": 3.14, # The transparency effect of the image. The value should be in the interval [0.0, 1.0], where 0 means no effect and 1 means transparent.
          },
          "linkedContentReference": { # A reference to the external linked source content. # A reference to the external linked source content. For example, it contains a reference to the source Google Sheets chart when the embedded object is a linked chart. If unset, then the embedded object is not linked.
            "sheetsChartReference": { # A reference to a linked chart embedded from Google Sheets. # A reference to the linked chart.
              "chartId": 42, # The ID of the specific chart in the Google Sheets spreadsheet that's embedded.
              "spreadsheetId": "A String", # The ID of the Google Sheets spreadsheet that contains the source chart.
            },
          },
          "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom margin of the embedded object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "marginLeft": { # A magnitude in a single direction in the specified units. # The left margin of the embedded object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "marginRight": { # A magnitude in a single direction in the specified units. # The right margin of the embedded object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "marginTop": { # A magnitude in a single direction in the specified units. # The top margin of the embedded object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "size": { # A width and height. # The visible size of the image after cropping.
            "height": { # A magnitude in a single direction in the specified units. # The height of the object.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "width": { # A magnitude in a single direction in the specified units. # The width of the object.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "title": "A String", # The title of the embedded object. The `title` and `description` are both combined to display alt text.
        },
        "positioning": { # The positioning of a PositionedObject. The positioned object is positioned relative to the beginning of the Paragraph it's tethered to. # The positioning of this positioned object relative to the newline of the Paragraph that references this positioned object.
          "layout": "A String", # The layout of this positioned object.
          "leftOffset": { # A magnitude in a single direction in the specified units. # The offset of the left edge of the positioned object relative to the beginning of the Paragraph it's tethered to. The exact positioning of the object can depend on other content in the document and the document's styling.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "topOffset": { # A magnitude in a single direction in the specified units. # The offset of the top edge of the positioned object relative to the beginning of the Paragraph it's tethered to. The exact positioning of the object can depend on other content in the document and the document's styling.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
        },
      },
      "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
        "A String",
      ],
      "suggestedInsertionId": "A String", # The suggested insertion ID. If empty, then this is not a suggested insertion.
      "suggestedPositionedObjectPropertiesChanges": { # The suggested changes to the positioned object properties, keyed by suggestion ID.
        "a_key": { # A suggested change to PositionedObjectProperties.
          "positionedObjectProperties": { # Properties of a PositionedObject. # A PositionedObjectProperties that only includes the changes made in this suggestion. This can be used along with the positioned_object_properties_suggestion_state to see which fields have changed and their new values.
            "embeddedObject": { # An embedded object in the document. # The embedded object of this positioned object.
              "description": "A String", # The description of the embedded object. The `title` and `description` are both combined to display alt text.
              "embeddedDrawingProperties": { # The properties of an embedded drawing and used to differentiate the object type. An embedded drawing is one that's created and edited within a document. Note that extensive details are not supported. # The properties of an embedded drawing.
              },
              "embeddedObjectBorder": { # A border around an EmbeddedObject. # The border of the embedded object.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "propertyState": "A String", # The property state of the border property.
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "imageProperties": { # The properties of an image. # The properties of an image.
                "angle": 3.14, # The clockwise rotation angle of the image, in radians.
                "brightness": 3.14, # The brightness effect of the image. The value should be in the interval [-1.0, 1.0], where 0 means no effect.
                "contentUri": "A String", # A URI to the image with a default lifetime of 30 minutes. This URI is tagged with the account of the requester. Anyone with the URI effectively accesses the image as the original requester. Access to the image may be lost if the document's sharing settings change.
                "contrast": 3.14, # The contrast effect of the image. The value should be in the interval [-1.0, 1.0], where 0 means no effect.
                "cropProperties": { # The crop properties of an image. The crop rectangle is represented using fractional offsets from the original content's 4 edges. - If the offset is in the interval (0, 1), the corresponding edge of crop rectangle is positioned inside of the image's original bounding rectangle. - If the offset is negative or greater than 1, the corresponding edge of crop rectangle is positioned outside of the image's original bounding rectangle. - If all offsets and rotation angle are 0, the image is not cropped. # The crop properties of the image.
                  "angle": 3.14, # The clockwise rotation angle of the crop rectangle around its center, in radians. Rotation is applied after the offsets.
                  "offsetBottom": 3.14, # The offset specifies how far inwards the bottom edge of the crop rectangle is from the bottom edge of the original content as a fraction of the original content's height.
                  "offsetLeft": 3.14, # The offset specifies how far inwards the left edge of the crop rectangle is from the left edge of the original content as a fraction of the original content's width.
                  "offsetRight": 3.14, # The offset specifies how far inwards the right edge of the crop rectangle is from the right edge of the original content as a fraction of the original content's width.
                  "offsetTop": 3.14, # The offset specifies how far inwards the top edge of the crop rectangle is from the top edge of the original content as a fraction of the original content's height.
                },
                "sourceUri": "A String", # The source URI is the URI used to insert the image. The source URI can be empty.
                "transparency": 3.14, # The transparency effect of the image. The value should be in the interval [0.0, 1.0], where 0 means no effect and 1 means transparent.
              },
              "linkedContentReference": { # A reference to the external linked source content. # A reference to the external linked source content. For example, it contains a reference to the source Google Sheets chart when the embedded object is a linked chart. If unset, then the embedded object is not linked.
                "sheetsChartReference": { # A reference to a linked chart embedded from Google Sheets. # A reference to the linked chart.
                  "chartId": 42, # The ID of the specific chart in the Google Sheets spreadsheet that's embedded.
                  "spreadsheetId": "A String", # The ID of the Google Sheets spreadsheet that contains the source chart.
                },
              },
              "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom margin of the embedded object.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginLeft": { # A magnitude in a single direction in the specified units. # The left margin of the embedded object.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginRight": { # A magnitude in a single direction in the specified units. # The right margin of the embedded object.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginTop": { # A magnitude in a single direction in the specified units. # The top margin of the embedded object.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "size": { # A width and height. # The visible size of the image after cropping.
                "height": { # A magnitude in a single direction in the specified units. # The height of the object.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the object.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "title": "A String", # The title of the embedded object. The `title` and `description` are both combined to display alt text.
            },
            "positioning": { # The positioning of a PositionedObject. The positioned object is positioned relative to the beginning of the Paragraph it's tethered to. # The positioning of this positioned object relative to the newline of the Paragraph that references this positioned object.
              "layout": "A String", # The layout of this positioned object.
              "leftOffset": { # A magnitude in a single direction in the specified units. # The offset of the left edge of the positioned object relative to the beginning of the Paragraph it's tethered to. The exact positioning of the object can depend on other content in the document and the document's styling.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "topOffset": { # A magnitude in a single direction in the specified units. # The offset of the top edge of the positioned object relative to the beginning of the Paragraph it's tethered to. The exact positioning of the object can depend on other content in the document and the document's styling.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
            },
          },
          "positionedObjectPropertiesSuggestionState": { # A mask that indicates which of the fields on the base PositionedObjectProperties have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base PositionedObjectProperties have been changed in this suggestion.
            "embeddedObjectSuggestionState": { # A mask that indicates which of the fields on the base EmbeddedObject have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in embedded_object have been changed in this suggestion.
              "descriptionSuggested": True or False, # Indicates if there was a suggested change to description.
              "embeddedDrawingPropertiesSuggestionState": { # A mask that indicates which of the fields on the base EmbeddedDrawingProperties have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in embedded_drawing_properties have been changed in this suggestion.
              },
              "embeddedObjectBorderSuggestionState": { # A mask that indicates which of the fields on the base EmbeddedObjectBorder have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in embedded_object_border have been changed in this suggestion.
                "colorSuggested": True or False, # Indicates if there was a suggested change to color.
                "dashStyleSuggested": True or False, # Indicates if there was a suggested change to dash_style.
                "propertyStateSuggested": True or False, # Indicates if there was a suggested change to property_state.
                "widthSuggested": True or False, # Indicates if there was a suggested change to width.
              },
              "imagePropertiesSuggestionState": { # A mask that indicates which of the fields on the base ImageProperties have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in image_properties have been changed in this suggestion.
                "angleSuggested": True or False, # Indicates if there was a suggested change to angle.
                "brightnessSuggested": True or False, # Indicates if there was a suggested change to brightness.
                "contentUriSuggested": True or False, # Indicates if there was a suggested change to content_uri.
                "contrastSuggested": True or False, # Indicates if there was a suggested change to contrast.
                "cropPropertiesSuggestionState": { # A mask that indicates which of the fields on the base CropProperties have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in crop_properties have been changed in this suggestion.
                  "angleSuggested": True or False, # Indicates if there was a suggested change to angle.
                  "offsetBottomSuggested": True or False, # Indicates if there was a suggested change to offset_bottom.
                  "offsetLeftSuggested": True or False, # Indicates if there was a suggested change to offset_left.
                  "offsetRightSuggested": True or False, # Indicates if there was a suggested change to offset_right.
                  "offsetTopSuggested": True or False, # Indicates if there was a suggested change to offset_top.
                },
                "sourceUriSuggested": True or False, # Indicates if there was a suggested change to source_uri.
                "transparencySuggested": True or False, # Indicates if there was a suggested change to transparency.
              },
              "linkedContentReferenceSuggestionState": { # A mask that indicates which of the fields on the base LinkedContentReference have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in linked_content_reference have been changed in this suggestion.
                "sheetsChartReferenceSuggestionState": { # A mask that indicates which of the fields on the base SheetsChartReference have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in sheets_chart_reference have been changed in this suggestion.
                  "chartIdSuggested": True or False, # Indicates if there was a suggested change to chart_id.
                  "spreadsheetIdSuggested": True or False, # Indicates if there was a suggested change to spreadsheet_id.
                },
              },
              "marginBottomSuggested": True or False, # Indicates if there was a suggested change to margin_bottom.
              "marginLeftSuggested": True or False, # Indicates if there was a suggested change to margin_left.
              "marginRightSuggested": True or False, # Indicates if there was a suggested change to margin_right.
              "marginTopSuggested": True or False, # Indicates if there was a suggested change to margin_top.
              "sizeSuggestionState": { # A mask that indicates which of the fields on the base Size have been changed in this suggestion. For any field set to true, the Size has a new suggested value. # A mask that indicates which of the fields in size have been changed in this suggestion.
                "heightSuggested": True or False, # Indicates if there was a suggested change to height.
                "widthSuggested": True or False, # Indicates if there was a suggested change to width.
              },
              "titleSuggested": True or False, # Indicates if there was a suggested change to title.
            },
            "positioningSuggestionState": { # A mask that indicates which of the fields on the base PositionedObjectPositioning have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in positioning have been changed in this suggestion.
              "layoutSuggested": True or False, # Indicates if there was a suggested change to layout.
              "leftOffsetSuggested": True or False, # Indicates if there was a suggested change to left_offset.
              "topOffsetSuggested": True or False, # Indicates if there was a suggested change to top_offset.
            },
          },
        },
      },
    },
  },
  "revisionId": "A String", # Output only. The revision ID of the document. Can be used in update requests to specify which revision of a document to apply updates to and how the request should behave if the document has been edited since that revision. Only populated if the user has edit access to the document. The revision ID is not a sequential number but an opaque string. The format of the revision ID might change over time. A returned revision ID is only guaranteed to be valid for 24 hours after it has been returned and cannot be shared across users. If the revision ID is unchanged between calls, then the document has not changed. Conversely, a changed ID (for the same document and user) usually means the document has been updated. However, a changed ID can also be due to internal factors such as ID format changes.
  "suggestedDocumentStyleChanges": { # Output only. The suggested changes to the style of the document, keyed by suggestion ID.
    "a_key": { # A suggested change to the DocumentStyle.
      "documentStyle": { # The style of the document. # A DocumentStyle that only includes the changes made in this suggestion. This can be used along with the document_style_suggestion_state to see which fields have changed and their new values.
        "background": { # Represents the background of a document. # The background of the document. Documents cannot have a transparent background color.
          "color": { # A color that can either be fully opaque or fully transparent. # The background color.
            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
              "rgbColor": { # An RGB color. # The RGB color value.
                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
              },
            },
          },
        },
        "defaultFooterId": "A String", # The ID of the default footer. If not set, there's no default footer. This property is read-only.
        "defaultHeaderId": "A String", # The ID of the default header. If not set, there's no default header. This property is read-only.
        "evenPageFooterId": "A String", # The ID of the footer used only for even pages. The value of use_even_page_header_footer determines whether to use the default_footer_id or this value for the footer on even pages. If not set, there's no even page footer. This property is read-only.
        "evenPageHeaderId": "A String", # The ID of the header used only for even pages. The value of use_even_page_header_footer determines whether to use the default_header_id or this value for the header on even pages. If not set, there's no even page header. This property is read-only.
        "firstPageFooterId": "A String", # The ID of the footer used only for the first page. If not set then a unique footer for the first page does not exist. The value of use_first_page_header_footer determines whether to use the default_footer_id or this value for the footer on the first page. If not set, there's no first page footer. This property is read-only.
        "firstPageHeaderId": "A String", # The ID of the header used only for the first page. If not set then a unique header for the first page does not exist. The value of use_first_page_header_footer determines whether to use the default_header_id or this value for the header on the first page. If not set, there's no first page header. This property is read-only.
        "flipPageOrientation": True or False, # Optional. Indicates whether to flip the dimensions of the page_size, which allows changing the page orientation between portrait and landscape.
        "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom page margin. Updating the bottom page margin on the document style clears the bottom page margin on all section styles.
          "magnitude": 3.14, # The magnitude.
          "unit": "A String", # The units for magnitude.
        },
        "marginFooter": { # A magnitude in a single direction in the specified units. # The amount of space between the bottom of the page and the contents of the footer.
          "magnitude": 3.14, # The magnitude.
          "unit": "A String", # The units for magnitude.
        },
        "marginHeader": { # A magnitude in a single direction in the specified units. # The amount of space between the top of the page and the contents of the header.
          "magnitude": 3.14, # The magnitude.
          "unit": "A String", # The units for magnitude.
        },
        "marginLeft": { # A magnitude in a single direction in the specified units. # The left page margin. Updating the left page margin on the document style clears the left page margin on all section styles. It may also cause columns to resize in all sections.
          "magnitude": 3.14, # The magnitude.
          "unit": "A String", # The units for magnitude.
        },
        "marginRight": { # A magnitude in a single direction in the specified units. # The right page margin. Updating the right page margin on the document style clears the right page margin on all section styles. It may also cause columns to resize in all sections.
          "magnitude": 3.14, # The magnitude.
          "unit": "A String", # The units for magnitude.
        },
        "marginTop": { # A magnitude in a single direction in the specified units. # The top page margin. Updating the top page margin on the document style clears the top page margin on all section styles.
          "magnitude": 3.14, # The magnitude.
          "unit": "A String", # The units for magnitude.
        },
        "pageNumberStart": 42, # The page number from which to start counting the number of pages.
        "pageSize": { # A width and height. # The size of a page in the document.
          "height": { # A magnitude in a single direction in the specified units. # The height of the object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "width": { # A magnitude in a single direction in the specified units. # The width of the object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
        },
        "useCustomHeaderFooterMargins": True or False, # Indicates whether DocumentStyle margin_header, SectionStyle margin_header and DocumentStyle margin_footer, SectionStyle margin_footer are respected. When false, the default values in the Docs editor for header and footer margin are used. This property is read-only.
        "useEvenPageHeaderFooter": True or False, # Indicates whether to use the even page header / footer IDs for the even pages.
        "useFirstPageHeaderFooter": True or False, # Indicates whether to use the first page header / footer IDs for the first page.
      },
      "documentStyleSuggestionState": { # A mask that indicates which of the fields on the base DocumentStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base DocumentStyle have been changed in this suggestion.
        "backgroundSuggestionState": { # A mask that indicates which of the fields on the base Background have been changed in this suggestion. For any field set to true, the Backgound has a new suggested value. # A mask that indicates which of the fields in background have been changed in this suggestion.
          "backgroundColorSuggested": True or False, # Indicates whether the current background color has been modified in this suggestion.
        },
        "defaultFooterIdSuggested": True or False, # Indicates if there was a suggested change to default_footer_id.
        "defaultHeaderIdSuggested": True or False, # Indicates if there was a suggested change to default_header_id.
        "evenPageFooterIdSuggested": True or False, # Indicates if there was a suggested change to even_page_footer_id.
        "evenPageHeaderIdSuggested": True or False, # Indicates if there was a suggested change to even_page_header_id.
        "firstPageFooterIdSuggested": True or False, # Indicates if there was a suggested change to first_page_footer_id.
        "firstPageHeaderIdSuggested": True or False, # Indicates if there was a suggested change to first_page_header_id.
        "flipPageOrientationSuggested": True or False, # Optional. Indicates if there was a suggested change to flip_page_orientation.
        "marginBottomSuggested": True or False, # Indicates if there was a suggested change to margin_bottom.
        "marginFooterSuggested": True or False, # Indicates if there was a suggested change to margin_footer.
        "marginHeaderSuggested": True or False, # Indicates if there was a suggested change to margin_header.
        "marginLeftSuggested": True or False, # Indicates if there was a suggested change to margin_left.
        "marginRightSuggested": True or False, # Indicates if there was a suggested change to margin_right.
        "marginTopSuggested": True or False, # Indicates if there was a suggested change to margin_top.
        "pageNumberStartSuggested": True or False, # Indicates if there was a suggested change to page_number_start.
        "pageSizeSuggestionState": { # A mask that indicates which of the fields on the base Size have been changed in this suggestion. For any field set to true, the Size has a new suggested value. # A mask that indicates which of the fields in size have been changed in this suggestion.
          "heightSuggested": True or False, # Indicates if there was a suggested change to height.
          "widthSuggested": True or False, # Indicates if there was a suggested change to width.
        },
        "useCustomHeaderFooterMarginsSuggested": True or False, # Indicates if there was a suggested change to use_custom_header_footer_margins.
        "useEvenPageHeaderFooterSuggested": True or False, # Indicates if there was a suggested change to use_even_page_header_footer.
        "useFirstPageHeaderFooterSuggested": True or False, # Indicates if there was a suggested change to use_first_page_header_footer.
      },
    },
  },
  "suggestedNamedStylesChanges": { # Output only. The suggested changes to the named styles of the document, keyed by suggestion ID.
    "a_key": { # A suggested change to the NamedStyles.
      "namedStyles": { # The named styles. Paragraphs in the document can inherit their TextStyle and ParagraphStyle from these named styles. # A NamedStyles that only includes the changes made in this suggestion. This can be used along with the named_styles_suggestion_state to see which fields have changed and their new values.
        "styles": [ # The named styles. There's an entry for each of the possible named style types.
          { # A named style. Paragraphs in the document can inherit their TextStyle and ParagraphStyle from this named style when they have the same named style type.
            "namedStyleType": "A String", # The type of this named style.
            "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The paragraph style of this named style.
              "alignment": "A String", # The text alignment for this paragraph.
              "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
              "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
              "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
              "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
              "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
              "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
              "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
              "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
              "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
                "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
              },
              "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "spacingMode": "A String", # The spacing mode for the paragraph.
              "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
                { # A tab stop within a paragraph.
                  "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
                  "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
              ],
            },
            "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this named style.
              "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
              "bold": True or False, # Whether or not the text is rendered as bold.
              "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "italic": True or False, # Whether or not the text is italicized.
              "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                "bookmarkId": "A String", # The ID of a bookmark in this document.
                "headingId": "A String", # The ID of a heading in this document.
                "url": "A String", # An external URL.
              },
              "smallCaps": True or False, # Whether or not the text is in small capital letters.
              "strikethrough": True or False, # Whether or not the text is struck through.
              "underline": True or False, # Whether or not the text is underlined.
              "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
              },
            },
          },
        ],
      },
      "namedStylesSuggestionState": { # The suggestion state of a NamedStyles message. # A mask that indicates which of the fields on the base NamedStyles have been changed in this suggestion.
        "stylesSuggestionStates": [ # A mask that indicates which of the fields on the corresponding NamedStyle in styles have been changed in this suggestion. The order of these named style suggestion states matches the order of the corresponding named style within the named styles suggestion.
          { # A suggestion state of a NamedStyle message.
            "namedStyleType": "A String", # The named style type that this suggestion state corresponds to. This field is provided as a convenience for matching the NamedStyleSuggestionState with its corresponding NamedStyle.
            "paragraphStyleSuggestionState": { # A mask that indicates which of the fields on the base ParagraphStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in paragraph style have been changed in this suggestion.
              "alignmentSuggested": True or False, # Indicates if there was a suggested change to alignment.
              "avoidWidowAndOrphanSuggested": True or False, # Indicates if there was a suggested change to avoid_widow_and_orphan.
              "borderBetweenSuggested": True or False, # Indicates if there was a suggested change to border_between.
              "borderBottomSuggested": True or False, # Indicates if there was a suggested change to border_bottom.
              "borderLeftSuggested": True or False, # Indicates if there was a suggested change to border_left.
              "borderRightSuggested": True or False, # Indicates if there was a suggested change to border_right.
              "borderTopSuggested": True or False, # Indicates if there was a suggested change to border_top.
              "directionSuggested": True or False, # Indicates if there was a suggested change to direction.
              "headingIdSuggested": True or False, # Indicates if there was a suggested change to heading_id.
              "indentEndSuggested": True or False, # Indicates if there was a suggested change to indent_end.
              "indentFirstLineSuggested": True or False, # Indicates if there was a suggested change to indent_first_line.
              "indentStartSuggested": True or False, # Indicates if there was a suggested change to indent_start.
              "keepLinesTogetherSuggested": True or False, # Indicates if there was a suggested change to keep_lines_together.
              "keepWithNextSuggested": True or False, # Indicates if there was a suggested change to keep_with_next.
              "lineSpacingSuggested": True or False, # Indicates if there was a suggested change to line_spacing.
              "namedStyleTypeSuggested": True or False, # Indicates if there was a suggested change to named_style_type.
              "pageBreakBeforeSuggested": True or False, # Indicates if there was a suggested change to page_break_before.
              "shadingSuggestionState": { # A mask that indicates which of the fields on the base Shading have been changed in this suggested change. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in shading have been changed in this suggestion.
                "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to the Shading.
              },
              "spaceAboveSuggested": True or False, # Indicates if there was a suggested change to space_above.
              "spaceBelowSuggested": True or False, # Indicates if there was a suggested change to space_below.
              "spacingModeSuggested": True or False, # Indicates if there was a suggested change to spacing_mode.
            },
            "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in text style have been changed in this suggestion.
              "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
              "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
              "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
              "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
              "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
              "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
              "linkSuggested": True or False, # Indicates if there was a suggested change to link.
              "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
              "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
              "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
              "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
            },
          },
        ],
      },
    },
  },
  "suggestionsViewMode": "A String", # Output only. The suggestions view mode applied to the document. Note: When editing a document, changes must be based on a document with SUGGESTIONS_INLINE.
  "title": "A String", # The title of the document.
}

  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # A Google Docs document.
  "body": { # The document body. The body typically contains the full document contents except for headers, footers, and footnotes. # Output only. The main body of the document.
    "content": [ # The contents of the body. The indexes for the body's content begin at zero.
      { # A StructuralElement describes content that provides structure to the document.
        "endIndex": 42, # The zero-based end index of this structural element, exclusive, in UTF-16 code units.
        "paragraph": { # A StructuralElement representing a paragraph. A paragraph is a range of content that's terminated with a newline character. # A paragraph type of structural element.
          "bullet": { # Describes the bullet of a paragraph. # The bullet for this paragraph. If not present, the paragraph does not belong to a list.
            "listId": "A String", # The ID of the list this paragraph belongs to.
            "nestingLevel": 42, # The nesting level of this paragraph in the list.
            "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The paragraph-specific text style applied to this bullet.
              "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
              "bold": True or False, # Whether or not the text is rendered as bold.
              "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "italic": True or False, # Whether or not the text is italicized.
              "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                "bookmarkId": "A String", # The ID of a bookmark in this document.
                "headingId": "A String", # The ID of a heading in this document.
                "url": "A String", # An external URL.
              },
              "smallCaps": True or False, # Whether or not the text is in small capital letters.
              "strikethrough": True or False, # Whether or not the text is struck through.
              "underline": True or False, # Whether or not the text is underlined.
              "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
              },
            },
          },
          "elements": [ # The content of the paragraph, broken down into its component parts.
            { # A ParagraphElement describes content within a Paragraph.
              "autoText": { # A ParagraphElement representing a spot in the text that's dynamically replaced with content that can change over time, like a page number. # An auto text paragraph element.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. An AutoText may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
                "suggestedTextStyleChanges": { # The suggested text style changes to this AutoText, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TextStyle.
                    "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                      "bold": True or False, # Whether or not the text is rendered as bold.
                      "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "italic": True or False, # Whether or not the text is italicized.
                      "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                        "bookmarkId": "A String", # The ID of a bookmark in this document.
                        "headingId": "A String", # The ID of a heading in this document.
                        "url": "A String", # An external URL.
                      },
                      "smallCaps": True or False, # Whether or not the text is in small capital letters.
                      "strikethrough": True or False, # Whether or not the text is struck through.
                      "underline": True or False, # Whether or not the text is underlined.
                      "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                        "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                        "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                      },
                    },
                    "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                      "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                      "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                      "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                      "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                      "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                      "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                      "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                      "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                      "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                      "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                      "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                    },
                  },
                },
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this AutoText.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
                "type": "A String", # The type of this auto text.
              },
              "columnBreak": { # A ParagraphElement representing a column break. A column break makes the subsequent text start at the top of the next column. # A column break paragraph element.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. A ColumnBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
                "suggestedTextStyleChanges": { # The suggested text style changes to this ColumnBreak, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TextStyle.
                    "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                      "bold": True or False, # Whether or not the text is rendered as bold.
                      "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "italic": True or False, # Whether or not the text is italicized.
                      "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                        "bookmarkId": "A String", # The ID of a bookmark in this document.
                        "headingId": "A String", # The ID of a heading in this document.
                        "url": "A String", # An external URL.
                      },
                      "smallCaps": True or False, # Whether or not the text is in small capital letters.
                      "strikethrough": True or False, # Whether or not the text is struck through.
                      "underline": True or False, # Whether or not the text is underlined.
                      "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                        "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                        "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                      },
                    },
                    "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                      "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                      "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                      "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                      "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                      "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                      "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                      "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                      "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                      "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                      "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                      "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                    },
                  },
                },
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this ColumnBreak. Similar to text content, like text runs and footnote references, the text style of a column break can affect content layout as well as the styling of text inserted next to it.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
              },
              "endIndex": 42, # The zero-base end index of this paragraph element, exclusive, in UTF-16 code units.
              "equation": { # A ParagraphElement representing an equation. # An equation paragraph element.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. An Equation may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
              },
              "footnoteReference": { # A ParagraphElement representing a footnote reference. A footnote reference is the inline content rendered with a number and is used to identify the footnote. # A footnote reference paragraph element.
                "footnoteId": "A String", # The ID of the footnote that contains the content of this footnote reference.
                "footnoteNumber": "A String", # The rendered number of this footnote.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. A FootnoteReference may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
                "suggestedTextStyleChanges": { # The suggested text style changes to this FootnoteReference, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TextStyle.
                    "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                      "bold": True or False, # Whether or not the text is rendered as bold.
                      "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "italic": True or False, # Whether or not the text is italicized.
                      "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                        "bookmarkId": "A String", # The ID of a bookmark in this document.
                        "headingId": "A String", # The ID of a heading in this document.
                        "url": "A String", # An external URL.
                      },
                      "smallCaps": True or False, # Whether or not the text is in small capital letters.
                      "strikethrough": True or False, # Whether or not the text is struck through.
                      "underline": True or False, # Whether or not the text is underlined.
                      "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                        "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                        "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                      },
                    },
                    "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                      "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                      "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                      "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                      "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                      "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                      "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                      "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                      "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                      "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                      "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                      "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                    },
                  },
                },
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this FootnoteReference.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
              },
              "horizontalRule": { # A ParagraphElement representing a horizontal line. # A horizontal rule paragraph element.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. A HorizontalRule may have multiple insertion IDs if it is a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
                "suggestedTextStyleChanges": { # The suggested text style changes to this HorizontalRule, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TextStyle.
                    "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                      "bold": True or False, # Whether or not the text is rendered as bold.
                      "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "italic": True or False, # Whether or not the text is italicized.
                      "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                        "bookmarkId": "A String", # The ID of a bookmark in this document.
                        "headingId": "A String", # The ID of a heading in this document.
                        "url": "A String", # An external URL.
                      },
                      "smallCaps": True or False, # Whether or not the text is in small capital letters.
                      "strikethrough": True or False, # Whether or not the text is struck through.
                      "underline": True or False, # Whether or not the text is underlined.
                      "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                        "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                        "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                      },
                    },
                    "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                      "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                      "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                      "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                      "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                      "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                      "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                      "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                      "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                      "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                      "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                      "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                    },
                  },
                },
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this HorizontalRule. Similar to text content, like text runs and footnote references, the text style of a horizontal rule can affect content layout as well as the styling of text inserted next to it.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
              },
              "inlineObjectElement": { # A ParagraphElement that contains an InlineObject. # An inline object paragraph element.
                "inlineObjectId": "A String", # The ID of the InlineObject this element contains.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. An InlineObjectElement may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
                "suggestedTextStyleChanges": { # The suggested text style changes to this InlineObject, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TextStyle.
                    "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                      "bold": True or False, # Whether or not the text is rendered as bold.
                      "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "italic": True or False, # Whether or not the text is italicized.
                      "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                        "bookmarkId": "A String", # The ID of a bookmark in this document.
                        "headingId": "A String", # The ID of a heading in this document.
                        "url": "A String", # An external URL.
                      },
                      "smallCaps": True or False, # Whether or not the text is in small capital letters.
                      "strikethrough": True or False, # Whether or not the text is struck through.
                      "underline": True or False, # Whether or not the text is underlined.
                      "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                        "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                        "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                      },
                    },
                    "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                      "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                      "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                      "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                      "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                      "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                      "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                      "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                      "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                      "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                      "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                      "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                    },
                  },
                },
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this InlineObjectElement. Similar to text content, like text runs and footnote references, the text style of an inline object element can affect content layout as well as the styling of text inserted next to it.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
              },
              "pageBreak": { # A ParagraphElement representing a page break. A page break makes the subsequent text start at the top of the next page. # A page break paragraph element.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. A PageBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
                "suggestedTextStyleChanges": { # The suggested text style changes to this PageBreak, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TextStyle.
                    "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                      "bold": True or False, # Whether or not the text is rendered as bold.
                      "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "italic": True or False, # Whether or not the text is italicized.
                      "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                        "bookmarkId": "A String", # The ID of a bookmark in this document.
                        "headingId": "A String", # The ID of a heading in this document.
                        "url": "A String", # An external URL.
                      },
                      "smallCaps": True or False, # Whether or not the text is in small capital letters.
                      "strikethrough": True or False, # Whether or not the text is struck through.
                      "underline": True or False, # Whether or not the text is underlined.
                      "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                        "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                        "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                      },
                    },
                    "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                      "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                      "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                      "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                      "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                      "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                      "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                      "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                      "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                      "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                      "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                      "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                    },
                  },
                },
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this PageBreak. Similar to text content, like text runs and footnote references, the text style of a page break can affect content layout as well as the styling of text inserted next to it.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
              },
              "person": { # A person or email address mentioned in a document. These mentions behave as a single, immutable element containing the person's name or email address. # A paragraph element that links to a person or email address.
                "personId": "A String", # Output only. The unique ID of this link.
                "personProperties": { # Properties specific to a linked Person. # Output only. The properties of this Person. This field is always present.
                  "email": "A String", # Output only. The email address linked to this Person. This field is always present.
                  "name": "A String", # Output only. The name of the person if it's displayed in the link text instead of the person's email address.
                },
                "suggestedDeletionIds": [ # IDs for suggestions that remove this person link from the document. A Person might have multiple deletion IDs if, for example, multiple users suggest deleting it. If empty, then this person link isn't suggested for deletion.
                  "A String",
                ],
                "suggestedInsertionIds": [ # IDs for suggestions that insert this person link into the document. A Person might have multiple insertion IDs if it's a nested suggested change (a suggestion within a suggestion made by a different user, for example). If empty, then this person link isn't a suggested insertion.
                  "A String",
                ],
                "suggestedTextStyleChanges": { # The suggested text style changes to this Person, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TextStyle.
                    "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                      "bold": True or False, # Whether or not the text is rendered as bold.
                      "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "italic": True or False, # Whether or not the text is italicized.
                      "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                        "bookmarkId": "A String", # The ID of a bookmark in this document.
                        "headingId": "A String", # The ID of a heading in this document.
                        "url": "A String", # An external URL.
                      },
                      "smallCaps": True or False, # Whether or not the text is in small capital letters.
                      "strikethrough": True or False, # Whether or not the text is struck through.
                      "underline": True or False, # Whether or not the text is underlined.
                      "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                        "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                        "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                      },
                    },
                    "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                      "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                      "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                      "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                      "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                      "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                      "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                      "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                      "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                      "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                      "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                      "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                    },
                  },
                },
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this Person.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
              },
              "richLink": { # A link to a Google resource (such as a file in Drive, a YouTube video, or a Calendar event). # A paragraph element that links to a Google resource (such as a file in Google Drive, a YouTube video, or a Calendar event.)
                "richLinkId": "A String", # Output only. The ID of this link.
                "richLinkProperties": { # Properties specific to a RichLink. # Output only. The properties of this RichLink. This field is always present.
                  "mimeType": "A String", # Output only. The [MIME type](https://developers.google.com/drive/api/v3/mime-types) of the RichLink, if there's one (for example, when it's a file in Drive).
                  "title": "A String", # Output only. The title of the RichLink as displayed in the link. This title matches the title of the linked resource at the time of the insertion or last update of the link. This field is always present.
                  "uri": "A String", # Output only. The URI to the RichLink. This is always present.
                },
                "suggestedDeletionIds": [ # IDs for suggestions that remove this link from the document. A RichLink might have multiple deletion IDs if, for example, multiple users suggest deleting it. If empty, then this person link isn't suggested for deletion.
                  "A String",
                ],
                "suggestedInsertionIds": [ # IDs for suggestions that insert this link into the document. A RichLink might have multiple insertion IDs if it's a nested suggested change (a suggestion within a suggestion made by a different user, for example). If empty, then this person link isn't a suggested insertion.
                  "A String",
                ],
                "suggestedTextStyleChanges": { # The suggested text style changes to this RichLink, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TextStyle.
                    "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                      "bold": True or False, # Whether or not the text is rendered as bold.
                      "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "italic": True or False, # Whether or not the text is italicized.
                      "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                        "bookmarkId": "A String", # The ID of a bookmark in this document.
                        "headingId": "A String", # The ID of a heading in this document.
                        "url": "A String", # An external URL.
                      },
                      "smallCaps": True or False, # Whether or not the text is in small capital letters.
                      "strikethrough": True or False, # Whether or not the text is struck through.
                      "underline": True or False, # Whether or not the text is underlined.
                      "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                        "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                        "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                      },
                    },
                    "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                      "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                      "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                      "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                      "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                      "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                      "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                      "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                      "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                      "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                      "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                      "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                    },
                  },
                },
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this RichLink.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
              },
              "startIndex": 42, # The zero-based start index of this paragraph element, in UTF-16 code units.
              "textRun": { # A ParagraphElement that represents a run of text that all has the same styling. # A text run paragraph element.
                "content": "A String", # The text of this run. Any non-text elements in the run are replaced with the Unicode character U+E907.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. A TextRun may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
                "suggestedTextStyleChanges": { # The suggested text style changes to this run, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TextStyle.
                    "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                      "bold": True or False, # Whether or not the text is rendered as bold.
                      "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "italic": True or False, # Whether or not the text is italicized.
                      "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                        "bookmarkId": "A String", # The ID of a bookmark in this document.
                        "headingId": "A String", # The ID of a heading in this document.
                        "url": "A String", # An external URL.
                      },
                      "smallCaps": True or False, # Whether or not the text is in small capital letters.
                      "strikethrough": True or False, # Whether or not the text is struck through.
                      "underline": True or False, # Whether or not the text is underlined.
                      "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                        "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                        "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                      },
                    },
                    "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                      "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                      "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                      "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                      "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                      "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                      "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                      "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                      "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                      "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                      "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                      "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                    },
                  },
                },
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this run.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
              },
            },
          ],
          "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The style of this paragraph.
            "alignment": "A String", # The text alignment for this paragraph.
            "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
            "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
              "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "dashStyle": "A String", # The dash style of the border.
              "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
            },
            "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
              "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "dashStyle": "A String", # The dash style of the border.
              "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
            },
            "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
              "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "dashStyle": "A String", # The dash style of the border.
              "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
            },
            "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
              "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "dashStyle": "A String", # The dash style of the border.
              "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
            },
            "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
              "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "dashStyle": "A String", # The dash style of the border.
              "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
            },
            "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
            "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
            "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
            "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
            "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
            "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
            "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
            "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
              "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
            },
            "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "spacingMode": "A String", # The spacing mode for the paragraph.
            "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
              { # A tab stop within a paragraph.
                "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
                "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
            ],
          },
          "positionedObjectIds": [ # The IDs of the positioned objects tethered to this paragraph.
            "A String",
          ],
          "suggestedBulletChanges": { # The suggested changes to this paragraph's bullet.
            "a_key": { # A suggested change to a Bullet.
              "bullet": { # Describes the bullet of a paragraph. # A Bullet that only includes the changes made in this suggestion. This can be used along with the bullet_suggestion_state to see which fields have changed and their new values.
                "listId": "A String", # The ID of the list this paragraph belongs to.
                "nestingLevel": 42, # The nesting level of this paragraph in the list.
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The paragraph-specific text style applied to this bullet.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
              },
              "bulletSuggestionState": { # A mask that indicates which of the fields on the base Bullet have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base Bullet have been changed in this suggestion.
                "listIdSuggested": True or False, # Indicates if there was a suggested change to the list_id.
                "nestingLevelSuggested": True or False, # Indicates if there was a suggested change to the nesting_level.
                "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in text style have been changed in this suggestion.
                  "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                  "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                  "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                  "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                  "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                  "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                  "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                  "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                  "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                  "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                  "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                },
              },
            },
          },
          "suggestedParagraphStyleChanges": { # The suggested paragraph style changes to this paragraph, keyed by suggestion ID.
            "a_key": { # A suggested change to a ParagraphStyle.
              "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A ParagraphStyle that only includes the changes made in this suggestion. This can be used along with the paragraph_style_suggestion_state to see which fields have changed and their new values.
                "alignment": "A String", # The text alignment for this paragraph.
                "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
                "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                  "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "dashStyle": "A String", # The dash style of the border.
                  "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
                "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                  "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "dashStyle": "A String", # The dash style of the border.
                  "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
                "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                  "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "dashStyle": "A String", # The dash style of the border.
                  "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
                "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                  "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "dashStyle": "A String", # The dash style of the border.
                  "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
                "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                  "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "dashStyle": "A String", # The dash style of the border.
                  "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
                "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
                "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
                "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
                "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
                "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
                "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
                "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
                "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                },
                "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "spacingMode": "A String", # The spacing mode for the paragraph.
                "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
                  { # A tab stop within a paragraph.
                    "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
                    "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                ],
              },
              "paragraphStyleSuggestionState": { # A mask that indicates which of the fields on the base ParagraphStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base ParagraphStyle have been changed in this suggestion.
                "alignmentSuggested": True or False, # Indicates if there was a suggested change to alignment.
                "avoidWidowAndOrphanSuggested": True or False, # Indicates if there was a suggested change to avoid_widow_and_orphan.
                "borderBetweenSuggested": True or False, # Indicates if there was a suggested change to border_between.
                "borderBottomSuggested": True or False, # Indicates if there was a suggested change to border_bottom.
                "borderLeftSuggested": True or False, # Indicates if there was a suggested change to border_left.
                "borderRightSuggested": True or False, # Indicates if there was a suggested change to border_right.
                "borderTopSuggested": True or False, # Indicates if there was a suggested change to border_top.
                "directionSuggested": True or False, # Indicates if there was a suggested change to direction.
                "headingIdSuggested": True or False, # Indicates if there was a suggested change to heading_id.
                "indentEndSuggested": True or False, # Indicates if there was a suggested change to indent_end.
                "indentFirstLineSuggested": True or False, # Indicates if there was a suggested change to indent_first_line.
                "indentStartSuggested": True or False, # Indicates if there was a suggested change to indent_start.
                "keepLinesTogetherSuggested": True or False, # Indicates if there was a suggested change to keep_lines_together.
                "keepWithNextSuggested": True or False, # Indicates if there was a suggested change to keep_with_next.
                "lineSpacingSuggested": True or False, # Indicates if there was a suggested change to line_spacing.
                "namedStyleTypeSuggested": True or False, # Indicates if there was a suggested change to named_style_type.
                "pageBreakBeforeSuggested": True or False, # Indicates if there was a suggested change to page_break_before.
                "shadingSuggestionState": { # A mask that indicates which of the fields on the base Shading have been changed in this suggested change. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in shading have been changed in this suggestion.
                  "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to the Shading.
                },
                "spaceAboveSuggested": True or False, # Indicates if there was a suggested change to space_above.
                "spaceBelowSuggested": True or False, # Indicates if there was a suggested change to space_below.
                "spacingModeSuggested": True or False, # Indicates if there was a suggested change to spacing_mode.
              },
            },
          },
          "suggestedPositionedObjectIds": { # The IDs of the positioned objects suggested to be attached to this paragraph, keyed by suggestion ID.
            "a_key": { # A collection of object IDs.
              "objectIds": [ # The object IDs.
                "A String",
              ],
            },
          },
        },
        "sectionBreak": { # A StructuralElement representing a section break. A section is a range of content that has the same SectionStyle. A section break represents the start of a new section, and the section style applies to the section after the section break. The document body always begins with a section break. # A section break type of structural element.
          "sectionStyle": { # The styling that applies to a section. # The style of the section after this section break.
            "columnProperties": [ # The section's columns properties. If empty, the section contains one column with the default properties in the Docs editor. A section can be updated to have no more than 3 columns. When updating this property, setting a concrete value is required. Unsetting this property will result in a 400 bad request error.
              { # Properties that apply to a section's column.
                "paddingEnd": { # A magnitude in a single direction in the specified units. # The padding at the end of the column.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # Output only. The width of the column.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
            ],
            "columnSeparatorStyle": "A String", # The style of column separators. This style can be set even when there's one column in the section. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
            "contentDirection": "A String", # The content direction of this section. If unset, the value defaults to LEFT_TO_RIGHT. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
            "defaultFooterId": "A String", # The ID of the default footer. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's default_footer_id. This property is read-only.
            "defaultHeaderId": "A String", # The ID of the default header. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's default_header_id. This property is read-only.
            "evenPageFooterId": "A String", # The ID of the footer used only for even pages. If the value of DocumentStyle's use_even_page_header_footer is true, this value is used for the footers on even pages in the section. If it is false, the footers on even pages use the default_footer_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's even_page_footer_id. This property is read-only.
            "evenPageHeaderId": "A String", # The ID of the header used only for even pages. If the value of DocumentStyle's use_even_page_header_footer is true, this value is used for the headers on even pages in the section. If it is false, the headers on even pages use the default_header_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's even_page_header_id. This property is read-only.
            "firstPageFooterId": "A String", # The ID of the footer used only for the first page of the section. If use_first_page_header_footer is true, this value is used for the footer on the first page of the section. If it's false, the footer on the first page of the section uses the default_footer_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's first_page_footer_id. This property is read-only.
            "firstPageHeaderId": "A String", # The ID of the header used only for the first page of the section. If use_first_page_header_footer is true, this value is used for the header on the first page of the section. If it's false, the header on the first page of the section uses the default_header_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's first_page_header_id. This property is read-only.
            "flipPageOrientation": True or False, # Optional. Indicates whether to flip the dimensions of DocumentStyle's page_size for this section, which allows changing the page orientation between portrait and landscape. If unset, the value inherits from DocumentStyle's flip_page_orientation. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
            "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom page margin of the section. If unset, the value defaults to margin_bottom from DocumentStyle. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "marginFooter": { # A magnitude in a single direction in the specified units. # The footer margin of the section. If unset, the value defaults to margin_footer from DocumentStyle. If updated, use_custom_header_footer_margins is set to true on DocumentStyle. The value of use_custom_header_footer_margins on DocumentStyle indicates if a footer margin is being respected for this section When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "marginHeader": { # A magnitude in a single direction in the specified units. # The header margin of the section. If unset, the value defaults to margin_header from DocumentStyle. If updated, use_custom_header_footer_margins is set to true on DocumentStyle. The value of use_custom_header_footer_margins on DocumentStyle indicates if a header margin is being respected for this section. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "marginLeft": { # A magnitude in a single direction in the specified units. # The left page margin of the section. If unset, the value defaults to margin_left from DocumentStyle. Updating the left margin causes columns in this section to resize. Since the margin affects column width, it's applied before column properties. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "marginRight": { # A magnitude in a single direction in the specified units. # The right page margin of the section. If unset, the value defaults to margin_right from DocumentStyle. Updating the right margin causes columns in this section to resize. Since the margin affects column width, it's applied before column properties. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "marginTop": { # A magnitude in a single direction in the specified units. # The top page margin of the section. If unset, the value defaults to margin_top from DocumentStyle. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "pageNumberStart": 42, # The page number from which to start counting the number of pages for this section. If unset, page numbering continues from the previous section. If the value is unset in the first SectionBreak, refer to DocumentStyle's page_number_start. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
            "sectionType": "A String", # Output only. The type of section.
            "useFirstPageHeaderFooter": True or False, # Indicates whether to use the first page header / footer IDs for the first page of the section. If unset, it inherits from DocumentStyle's use_first_page_header_footer for the first section. If the value is unset for subsequent sectors, it should be interpreted as false. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
          },
          "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
            "A String",
          ],
          "suggestedInsertionIds": [ # The suggested insertion IDs. A SectionBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
            "A String",
          ],
        },
        "startIndex": 42, # The zero-based start index of this structural element, in UTF-16 code units.
        "table": { # A StructuralElement representing a table. # A table type of structural element.
          "columns": 42, # Number of columns in the table. It's possible for a table to be non-rectangular, so some rows may have a different number of cells.
          "rows": 42, # Number of rows in the table.
          "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
            "A String",
          ],
          "suggestedInsertionIds": [ # The suggested insertion IDs. A Table may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
            "A String",
          ],
          "tableRows": [ # The contents and style of each row.
            { # The contents and style of a row in a Table.
              "endIndex": 42, # The zero-based end index of this row, exclusive, in UTF-16 code units.
              "startIndex": 42, # The zero-based start index of this row, in UTF-16 code units.
              "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                "A String",
              ],
              "suggestedInsertionIds": [ # The suggested insertion IDs. A TableRow may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                "A String",
              ],
              "suggestedTableRowStyleChanges": { # The suggested style changes to this row, keyed by suggestion ID.
                "a_key": { # A suggested change to a TableRowStyle.
                  "tableRowStyle": { # Styles that apply to a table row. # A TableRowStyle that only includes the changes made in this suggestion. This can be used along with the table_row_style_suggestion_state to see which fields have changed and their new values.
                    "minRowHeight": { # A magnitude in a single direction in the specified units. # The minimum height of the row. The row will be rendered in the Docs editor at a height equal to or greater than this value in order to show all the content in the row's cells.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "preventOverflow": True or False, # Whether the row cannot overflow across page or column boundaries.
                    "tableHeader": True or False, # Whether the row is a table header.
                  },
                  "tableRowStyleSuggestionState": { # A mask that indicates which of the fields on the base TableRowStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TableRowStyle have been changed in this suggestion.
                    "minRowHeightSuggested": True or False, # Indicates if there was a suggested change to min_row_height.
                  },
                },
              },
              "tableCells": [ # The contents and style of each cell in this row. It's possible for a table to be non-rectangular, so some rows may have a different number of cells than other rows in the same table.
                { # The contents and style of a cell in a Table.
                  "content": [ # The content of the cell.
                    # Object with schema name: StructuralElement
                  ],
                  "endIndex": 42, # The zero-based end index of this cell, exclusive, in UTF-16 code units.
                  "startIndex": 42, # The zero-based start index of this cell, in UTF-16 code units.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A TableCell may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTableCellStyleChanges": { # The suggested changes to the table cell style, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TableCellStyle.
                      "tableCellStyle": { # The style of a TableCell. Inherited table cell styles are represented as unset fields in this message. A table cell style can inherit from the table's style. # A TableCellStyle that only includes the changes made in this suggestion. This can be used along with the table_cell_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the cell.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "borderBottom": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The bottom border of the cell.
                          "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                              "rgbColor": { # An RGB color. # The RGB color value.
                                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                              },
                            },
                          },
                          "dashStyle": "A String", # The dash style of the border.
                          "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                        },
                        "borderLeft": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The left border of the cell.
                          "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                              "rgbColor": { # An RGB color. # The RGB color value.
                                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                              },
                            },
                          },
                          "dashStyle": "A String", # The dash style of the border.
                          "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                        },
                        "borderRight": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The right border of the cell.
                          "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                              "rgbColor": { # An RGB color. # The RGB color value.
                                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                              },
                            },
                          },
                          "dashStyle": "A String", # The dash style of the border.
                          "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                        },
                        "borderTop": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The top border of the cell.
                          "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                              "rgbColor": { # An RGB color. # The RGB color value.
                                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                              },
                            },
                          },
                          "dashStyle": "A String", # The dash style of the border.
                          "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                        },
                        "columnSpan": 42, # The column span of the cell. This property is read-only.
                        "contentAlignment": "A String", # The alignment of the content in the table cell. The default alignment matches the alignment for newly created table cells in the Docs editor.
                        "paddingBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of the cell.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "paddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of the cell.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "paddingRight": { # A magnitude in a single direction in the specified units. # The right padding of the cell.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of the cell.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "rowSpan": 42, # The row span of the cell. This property is read-only.
                      },
                      "tableCellStyleSuggestionState": { # A mask that indicates which of the fields on the base TableCellStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TableCellStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "borderBottomSuggested": True or False, # Indicates if there was a suggested change to border_bottom.
                        "borderLeftSuggested": True or False, # Indicates if there was a suggested change to border_left.
                        "borderRightSuggested": True or False, # Indicates if there was a suggested change to border_right.
                        "borderTopSuggested": True or False, # Indicates if there was a suggested change to border_top.
                        "columnSpanSuggested": True or False, # Indicates if there was a suggested change to column_span.
                        "contentAlignmentSuggested": True or False, # Indicates if there was a suggested change to content_alignment.
                        "paddingBottomSuggested": True or False, # Indicates if there was a suggested change to padding_bottom.
                        "paddingLeftSuggested": True or False, # Indicates if there was a suggested change to padding_left.
                        "paddingRightSuggested": True or False, # Indicates if there was a suggested change to padding_right.
                        "paddingTopSuggested": True or False, # Indicates if there was a suggested change to padding_top.
                        "rowSpanSuggested": True or False, # Indicates if there was a suggested change to row_span.
                      },
                    },
                  },
                  "tableCellStyle": { # The style of a TableCell. Inherited table cell styles are represented as unset fields in this message. A table cell style can inherit from the table's style. # The style of the cell.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the cell.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "borderBottom": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The bottom border of the cell.
                      "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "dashStyle": "A String", # The dash style of the border.
                      "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                    },
                    "borderLeft": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The left border of the cell.
                      "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "dashStyle": "A String", # The dash style of the border.
                      "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                    },
                    "borderRight": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The right border of the cell.
                      "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "dashStyle": "A String", # The dash style of the border.
                      "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                    },
                    "borderTop": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The top border of the cell.
                      "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "dashStyle": "A String", # The dash style of the border.
                      "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                    },
                    "columnSpan": 42, # The column span of the cell. This property is read-only.
                    "contentAlignment": "A String", # The alignment of the content in the table cell. The default alignment matches the alignment for newly created table cells in the Docs editor.
                    "paddingBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of the cell.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "paddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of the cell.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "paddingRight": { # A magnitude in a single direction in the specified units. # The right padding of the cell.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of the cell.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "rowSpan": 42, # The row span of the cell. This property is read-only.
                  },
                },
              ],
              "tableRowStyle": { # Styles that apply to a table row. # The style of the table row.
                "minRowHeight": { # A magnitude in a single direction in the specified units. # The minimum height of the row. The row will be rendered in the Docs editor at a height equal to or greater than this value in order to show all the content in the row's cells.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "preventOverflow": True or False, # Whether the row cannot overflow across page or column boundaries.
                "tableHeader": True or False, # Whether the row is a table header.
              },
            },
          ],
          "tableStyle": { # Styles that apply to a table. # The style of the table.
            "tableColumnProperties": [ # The properties of each column. Note that in Docs, tables contain rows and rows contain cells, similar to HTML. So the properties for a row can be found on the row's table_row_style.
              { # The properties of a column in a table.
                "width": { # A magnitude in a single direction in the specified units. # The width of the column. Set when the column's `width_type` is FIXED_WIDTH.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "widthType": "A String", # The width type of the column.
              },
            ],
          },
        },
        "tableOfContents": { # A StructuralElement representing a table of contents. # A table of contents type of structural element.
          "content": [ # The content of the table of contents.
            # Object with schema name: StructuralElement
          ],
          "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
            "A String",
          ],
          "suggestedInsertionIds": [ # The suggested insertion IDs. A TableOfContents may have multiple insertion IDs if it is a nested suggested change. If empty, then this is not a suggested insertion.
            "A String",
          ],
        },
      },
    ],
  },
  "documentId": "A String", # Output only. The ID of the document.
  "documentStyle": { # The style of the document. # Output only. The style of the document.
    "background": { # Represents the background of a document. # The background of the document. Documents cannot have a transparent background color.
      "color": { # A color that can either be fully opaque or fully transparent. # The background color.
        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
          "rgbColor": { # An RGB color. # The RGB color value.
            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
          },
        },
      },
    },
    "defaultFooterId": "A String", # The ID of the default footer. If not set, there's no default footer. This property is read-only.
    "defaultHeaderId": "A String", # The ID of the default header. If not set, there's no default header. This property is read-only.
    "evenPageFooterId": "A String", # The ID of the footer used only for even pages. The value of use_even_page_header_footer determines whether to use the default_footer_id or this value for the footer on even pages. If not set, there's no even page footer. This property is read-only.
    "evenPageHeaderId": "A String", # The ID of the header used only for even pages. The value of use_even_page_header_footer determines whether to use the default_header_id or this value for the header on even pages. If not set, there's no even page header. This property is read-only.
    "firstPageFooterId": "A String", # The ID of the footer used only for the first page. If not set then a unique footer for the first page does not exist. The value of use_first_page_header_footer determines whether to use the default_footer_id or this value for the footer on the first page. If not set, there's no first page footer. This property is read-only.
    "firstPageHeaderId": "A String", # The ID of the header used only for the first page. If not set then a unique header for the first page does not exist. The value of use_first_page_header_footer determines whether to use the default_header_id or this value for the header on the first page. If not set, there's no first page header. This property is read-only.
    "flipPageOrientation": True or False, # Optional. Indicates whether to flip the dimensions of the page_size, which allows changing the page orientation between portrait and landscape.
    "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom page margin. Updating the bottom page margin on the document style clears the bottom page margin on all section styles.
      "magnitude": 3.14, # The magnitude.
      "unit": "A String", # The units for magnitude.
    },
    "marginFooter": { # A magnitude in a single direction in the specified units. # The amount of space between the bottom of the page and the contents of the footer.
      "magnitude": 3.14, # The magnitude.
      "unit": "A String", # The units for magnitude.
    },
    "marginHeader": { # A magnitude in a single direction in the specified units. # The amount of space between the top of the page and the contents of the header.
      "magnitude": 3.14, # The magnitude.
      "unit": "A String", # The units for magnitude.
    },
    "marginLeft": { # A magnitude in a single direction in the specified units. # The left page margin. Updating the left page margin on the document style clears the left page margin on all section styles. It may also cause columns to resize in all sections.
      "magnitude": 3.14, # The magnitude.
      "unit": "A String", # The units for magnitude.
    },
    "marginRight": { # A magnitude in a single direction in the specified units. # The right page margin. Updating the right page margin on the document style clears the right page margin on all section styles. It may also cause columns to resize in all sections.
      "magnitude": 3.14, # The magnitude.
      "unit": "A String", # The units for magnitude.
    },
    "marginTop": { # A magnitude in a single direction in the specified units. # The top page margin. Updating the top page margin on the document style clears the top page margin on all section styles.
      "magnitude": 3.14, # The magnitude.
      "unit": "A String", # The units for magnitude.
    },
    "pageNumberStart": 42, # The page number from which to start counting the number of pages.
    "pageSize": { # A width and height. # The size of a page in the document.
      "height": { # A magnitude in a single direction in the specified units. # The height of the object.
        "magnitude": 3.14, # The magnitude.
        "unit": "A String", # The units for magnitude.
      },
      "width": { # A magnitude in a single direction in the specified units. # The width of the object.
        "magnitude": 3.14, # The magnitude.
        "unit": "A String", # The units for magnitude.
      },
    },
    "useCustomHeaderFooterMargins": True or False, # Indicates whether DocumentStyle margin_header, SectionStyle margin_header and DocumentStyle margin_footer, SectionStyle margin_footer are respected. When false, the default values in the Docs editor for header and footer margin are used. This property is read-only.
    "useEvenPageHeaderFooter": True or False, # Indicates whether to use the even page header / footer IDs for the even pages.
    "useFirstPageHeaderFooter": True or False, # Indicates whether to use the first page header / footer IDs for the first page.
  },
  "footers": { # Output only. The footers in the document, keyed by footer ID.
    "a_key": { # A document footer.
      "content": [ # The contents of the footer. The indexes for a footer's content begin at zero.
        { # A StructuralElement describes content that provides structure to the document.
          "endIndex": 42, # The zero-based end index of this structural element, exclusive, in UTF-16 code units.
          "paragraph": { # A StructuralElement representing a paragraph. A paragraph is a range of content that's terminated with a newline character. # A paragraph type of structural element.
            "bullet": { # Describes the bullet of a paragraph. # The bullet for this paragraph. If not present, the paragraph does not belong to a list.
              "listId": "A String", # The ID of the list this paragraph belongs to.
              "nestingLevel": 42, # The nesting level of this paragraph in the list.
              "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The paragraph-specific text style applied to this bullet.
                "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                "bold": True or False, # Whether or not the text is rendered as bold.
                "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "italic": True or False, # Whether or not the text is italicized.
                "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                  "bookmarkId": "A String", # The ID of a bookmark in this document.
                  "headingId": "A String", # The ID of a heading in this document.
                  "url": "A String", # An external URL.
                },
                "smallCaps": True or False, # Whether or not the text is in small capital letters.
                "strikethrough": True or False, # Whether or not the text is struck through.
                "underline": True or False, # Whether or not the text is underlined.
                "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                  "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                  "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                },
              },
            },
            "elements": [ # The content of the paragraph, broken down into its component parts.
              { # A ParagraphElement describes content within a Paragraph.
                "autoText": { # A ParagraphElement representing a spot in the text that's dynamically replaced with content that can change over time, like a page number. # An auto text paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. An AutoText may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this AutoText, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this AutoText.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                  "type": "A String", # The type of this auto text.
                },
                "columnBreak": { # A ParagraphElement representing a column break. A column break makes the subsequent text start at the top of the next column. # A column break paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A ColumnBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this ColumnBreak, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this ColumnBreak. Similar to text content, like text runs and footnote references, the text style of a column break can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "endIndex": 42, # The zero-base end index of this paragraph element, exclusive, in UTF-16 code units.
                "equation": { # A ParagraphElement representing an equation. # An equation paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. An Equation may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                },
                "footnoteReference": { # A ParagraphElement representing a footnote reference. A footnote reference is the inline content rendered with a number and is used to identify the footnote. # A footnote reference paragraph element.
                  "footnoteId": "A String", # The ID of the footnote that contains the content of this footnote reference.
                  "footnoteNumber": "A String", # The rendered number of this footnote.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A FootnoteReference may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this FootnoteReference, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this FootnoteReference.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "horizontalRule": { # A ParagraphElement representing a horizontal line. # A horizontal rule paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A HorizontalRule may have multiple insertion IDs if it is a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this HorizontalRule, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this HorizontalRule. Similar to text content, like text runs and footnote references, the text style of a horizontal rule can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "inlineObjectElement": { # A ParagraphElement that contains an InlineObject. # An inline object paragraph element.
                  "inlineObjectId": "A String", # The ID of the InlineObject this element contains.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. An InlineObjectElement may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this InlineObject, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this InlineObjectElement. Similar to text content, like text runs and footnote references, the text style of an inline object element can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "pageBreak": { # A ParagraphElement representing a page break. A page break makes the subsequent text start at the top of the next page. # A page break paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A PageBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this PageBreak, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this PageBreak. Similar to text content, like text runs and footnote references, the text style of a page break can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "person": { # A person or email address mentioned in a document. These mentions behave as a single, immutable element containing the person's name or email address. # A paragraph element that links to a person or email address.
                  "personId": "A String", # Output only. The unique ID of this link.
                  "personProperties": { # Properties specific to a linked Person. # Output only. The properties of this Person. This field is always present.
                    "email": "A String", # Output only. The email address linked to this Person. This field is always present.
                    "name": "A String", # Output only. The name of the person if it's displayed in the link text instead of the person's email address.
                  },
                  "suggestedDeletionIds": [ # IDs for suggestions that remove this person link from the document. A Person might have multiple deletion IDs if, for example, multiple users suggest deleting it. If empty, then this person link isn't suggested for deletion.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # IDs for suggestions that insert this person link into the document. A Person might have multiple insertion IDs if it's a nested suggested change (a suggestion within a suggestion made by a different user, for example). If empty, then this person link isn't a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this Person, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this Person.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "richLink": { # A link to a Google resource (such as a file in Drive, a YouTube video, or a Calendar event). # A paragraph element that links to a Google resource (such as a file in Google Drive, a YouTube video, or a Calendar event.)
                  "richLinkId": "A String", # Output only. The ID of this link.
                  "richLinkProperties": { # Properties specific to a RichLink. # Output only. The properties of this RichLink. This field is always present.
                    "mimeType": "A String", # Output only. The [MIME type](https://developers.google.com/drive/api/v3/mime-types) of the RichLink, if there's one (for example, when it's a file in Drive).
                    "title": "A String", # Output only. The title of the RichLink as displayed in the link. This title matches the title of the linked resource at the time of the insertion or last update of the link. This field is always present.
                    "uri": "A String", # Output only. The URI to the RichLink. This is always present.
                  },
                  "suggestedDeletionIds": [ # IDs for suggestions that remove this link from the document. A RichLink might have multiple deletion IDs if, for example, multiple users suggest deleting it. If empty, then this person link isn't suggested for deletion.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # IDs for suggestions that insert this link into the document. A RichLink might have multiple insertion IDs if it's a nested suggested change (a suggestion within a suggestion made by a different user, for example). If empty, then this person link isn't a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this RichLink, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this RichLink.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "startIndex": 42, # The zero-based start index of this paragraph element, in UTF-16 code units.
                "textRun": { # A ParagraphElement that represents a run of text that all has the same styling. # A text run paragraph element.
                  "content": "A String", # The text of this run. Any non-text elements in the run are replaced with the Unicode character U+E907.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A TextRun may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this run, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this run.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
              },
            ],
            "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The style of this paragraph.
              "alignment": "A String", # The text alignment for this paragraph.
              "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
              "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
              "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
              "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
              "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
              "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
              "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
              "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
              "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
                "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
              },
              "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "spacingMode": "A String", # The spacing mode for the paragraph.
              "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
                { # A tab stop within a paragraph.
                  "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
                  "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
              ],
            },
            "positionedObjectIds": [ # The IDs of the positioned objects tethered to this paragraph.
              "A String",
            ],
            "suggestedBulletChanges": { # The suggested changes to this paragraph's bullet.
              "a_key": { # A suggested change to a Bullet.
                "bullet": { # Describes the bullet of a paragraph. # A Bullet that only includes the changes made in this suggestion. This can be used along with the bullet_suggestion_state to see which fields have changed and their new values.
                  "listId": "A String", # The ID of the list this paragraph belongs to.
                  "nestingLevel": 42, # The nesting level of this paragraph in the list.
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The paragraph-specific text style applied to this bullet.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "bulletSuggestionState": { # A mask that indicates which of the fields on the base Bullet have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base Bullet have been changed in this suggestion.
                  "listIdSuggested": True or False, # Indicates if there was a suggested change to the list_id.
                  "nestingLevelSuggested": True or False, # Indicates if there was a suggested change to the nesting_level.
                  "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in text style have been changed in this suggestion.
                    "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                    "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                    "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                    "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                    "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                    "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                    "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                    "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                    "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                    "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                    "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                  },
                },
              },
            },
            "suggestedParagraphStyleChanges": { # The suggested paragraph style changes to this paragraph, keyed by suggestion ID.
              "a_key": { # A suggested change to a ParagraphStyle.
                "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A ParagraphStyle that only includes the changes made in this suggestion. This can be used along with the paragraph_style_suggestion_state to see which fields have changed and their new values.
                  "alignment": "A String", # The text alignment for this paragraph.
                  "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
                  "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
                  "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
                  "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
                  "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
                  "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
                  "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
                  "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
                  "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                  },
                  "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "spacingMode": "A String", # The spacing mode for the paragraph.
                  "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
                    { # A tab stop within a paragraph.
                      "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
                      "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                    },
                  ],
                },
                "paragraphStyleSuggestionState": { # A mask that indicates which of the fields on the base ParagraphStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base ParagraphStyle have been changed in this suggestion.
                  "alignmentSuggested": True or False, # Indicates if there was a suggested change to alignment.
                  "avoidWidowAndOrphanSuggested": True or False, # Indicates if there was a suggested change to avoid_widow_and_orphan.
                  "borderBetweenSuggested": True or False, # Indicates if there was a suggested change to border_between.
                  "borderBottomSuggested": True or False, # Indicates if there was a suggested change to border_bottom.
                  "borderLeftSuggested": True or False, # Indicates if there was a suggested change to border_left.
                  "borderRightSuggested": True or False, # Indicates if there was a suggested change to border_right.
                  "borderTopSuggested": True or False, # Indicates if there was a suggested change to border_top.
                  "directionSuggested": True or False, # Indicates if there was a suggested change to direction.
                  "headingIdSuggested": True or False, # Indicates if there was a suggested change to heading_id.
                  "indentEndSuggested": True or False, # Indicates if there was a suggested change to indent_end.
                  "indentFirstLineSuggested": True or False, # Indicates if there was a suggested change to indent_first_line.
                  "indentStartSuggested": True or False, # Indicates if there was a suggested change to indent_start.
                  "keepLinesTogetherSuggested": True or False, # Indicates if there was a suggested change to keep_lines_together.
                  "keepWithNextSuggested": True or False, # Indicates if there was a suggested change to keep_with_next.
                  "lineSpacingSuggested": True or False, # Indicates if there was a suggested change to line_spacing.
                  "namedStyleTypeSuggested": True or False, # Indicates if there was a suggested change to named_style_type.
                  "pageBreakBeforeSuggested": True or False, # Indicates if there was a suggested change to page_break_before.
                  "shadingSuggestionState": { # A mask that indicates which of the fields on the base Shading have been changed in this suggested change. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in shading have been changed in this suggestion.
                    "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to the Shading.
                  },
                  "spaceAboveSuggested": True or False, # Indicates if there was a suggested change to space_above.
                  "spaceBelowSuggested": True or False, # Indicates if there was a suggested change to space_below.
                  "spacingModeSuggested": True or False, # Indicates if there was a suggested change to spacing_mode.
                },
              },
            },
            "suggestedPositionedObjectIds": { # The IDs of the positioned objects suggested to be attached to this paragraph, keyed by suggestion ID.
              "a_key": { # A collection of object IDs.
                "objectIds": [ # The object IDs.
                  "A String",
                ],
              },
            },
          },
          "sectionBreak": { # A StructuralElement representing a section break. A section is a range of content that has the same SectionStyle. A section break represents the start of a new section, and the section style applies to the section after the section break. The document body always begins with a section break. # A section break type of structural element.
            "sectionStyle": { # The styling that applies to a section. # The style of the section after this section break.
              "columnProperties": [ # The section's columns properties. If empty, the section contains one column with the default properties in the Docs editor. A section can be updated to have no more than 3 columns. When updating this property, setting a concrete value is required. Unsetting this property will result in a 400 bad request error.
                { # Properties that apply to a section's column.
                  "paddingEnd": { # A magnitude in a single direction in the specified units. # The padding at the end of the column.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "width": { # A magnitude in a single direction in the specified units. # Output only. The width of the column.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
              ],
              "columnSeparatorStyle": "A String", # The style of column separators. This style can be set even when there's one column in the section. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "contentDirection": "A String", # The content direction of this section. If unset, the value defaults to LEFT_TO_RIGHT. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "defaultFooterId": "A String", # The ID of the default footer. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's default_footer_id. This property is read-only.
              "defaultHeaderId": "A String", # The ID of the default header. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's default_header_id. This property is read-only.
              "evenPageFooterId": "A String", # The ID of the footer used only for even pages. If the value of DocumentStyle's use_even_page_header_footer is true, this value is used for the footers on even pages in the section. If it is false, the footers on even pages use the default_footer_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's even_page_footer_id. This property is read-only.
              "evenPageHeaderId": "A String", # The ID of the header used only for even pages. If the value of DocumentStyle's use_even_page_header_footer is true, this value is used for the headers on even pages in the section. If it is false, the headers on even pages use the default_header_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's even_page_header_id. This property is read-only.
              "firstPageFooterId": "A String", # The ID of the footer used only for the first page of the section. If use_first_page_header_footer is true, this value is used for the footer on the first page of the section. If it's false, the footer on the first page of the section uses the default_footer_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's first_page_footer_id. This property is read-only.
              "firstPageHeaderId": "A String", # The ID of the header used only for the first page of the section. If use_first_page_header_footer is true, this value is used for the header on the first page of the section. If it's false, the header on the first page of the section uses the default_header_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's first_page_header_id. This property is read-only.
              "flipPageOrientation": True or False, # Optional. Indicates whether to flip the dimensions of DocumentStyle's page_size for this section, which allows changing the page orientation between portrait and landscape. If unset, the value inherits from DocumentStyle's flip_page_orientation. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom page margin of the section. If unset, the value defaults to margin_bottom from DocumentStyle. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginFooter": { # A magnitude in a single direction in the specified units. # The footer margin of the section. If unset, the value defaults to margin_footer from DocumentStyle. If updated, use_custom_header_footer_margins is set to true on DocumentStyle. The value of use_custom_header_footer_margins on DocumentStyle indicates if a footer margin is being respected for this section When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginHeader": { # A magnitude in a single direction in the specified units. # The header margin of the section. If unset, the value defaults to margin_header from DocumentStyle. If updated, use_custom_header_footer_margins is set to true on DocumentStyle. The value of use_custom_header_footer_margins on DocumentStyle indicates if a header margin is being respected for this section. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginLeft": { # A magnitude in a single direction in the specified units. # The left page margin of the section. If unset, the value defaults to margin_left from DocumentStyle. Updating the left margin causes columns in this section to resize. Since the margin affects column width, it's applied before column properties. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginRight": { # A magnitude in a single direction in the specified units. # The right page margin of the section. If unset, the value defaults to margin_right from DocumentStyle. Updating the right margin causes columns in this section to resize. Since the margin affects column width, it's applied before column properties. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginTop": { # A magnitude in a single direction in the specified units. # The top page margin of the section. If unset, the value defaults to margin_top from DocumentStyle. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "pageNumberStart": 42, # The page number from which to start counting the number of pages for this section. If unset, page numbering continues from the previous section. If the value is unset in the first SectionBreak, refer to DocumentStyle's page_number_start. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "sectionType": "A String", # Output only. The type of section.
              "useFirstPageHeaderFooter": True or False, # Indicates whether to use the first page header / footer IDs for the first page of the section. If unset, it inherits from DocumentStyle's use_first_page_header_footer for the first section. If the value is unset for subsequent sectors, it should be interpreted as false. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
            },
            "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
              "A String",
            ],
            "suggestedInsertionIds": [ # The suggested insertion IDs. A SectionBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
              "A String",
            ],
          },
          "startIndex": 42, # The zero-based start index of this structural element, in UTF-16 code units.
          "table": { # A StructuralElement representing a table. # A table type of structural element.
            "columns": 42, # Number of columns in the table. It's possible for a table to be non-rectangular, so some rows may have a different number of cells.
            "rows": 42, # Number of rows in the table.
            "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
              "A String",
            ],
            "suggestedInsertionIds": [ # The suggested insertion IDs. A Table may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
              "A String",
            ],
            "tableRows": [ # The contents and style of each row.
              { # The contents and style of a row in a Table.
                "endIndex": 42, # The zero-based end index of this row, exclusive, in UTF-16 code units.
                "startIndex": 42, # The zero-based start index of this row, in UTF-16 code units.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. A TableRow may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
                "suggestedTableRowStyleChanges": { # The suggested style changes to this row, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TableRowStyle.
                    "tableRowStyle": { # Styles that apply to a table row. # A TableRowStyle that only includes the changes made in this suggestion. This can be used along with the table_row_style_suggestion_state to see which fields have changed and their new values.
                      "minRowHeight": { # A magnitude in a single direction in the specified units. # The minimum height of the row. The row will be rendered in the Docs editor at a height equal to or greater than this value in order to show all the content in the row's cells.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "preventOverflow": True or False, # Whether the row cannot overflow across page or column boundaries.
                      "tableHeader": True or False, # Whether the row is a table header.
                    },
                    "tableRowStyleSuggestionState": { # A mask that indicates which of the fields on the base TableRowStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TableRowStyle have been changed in this suggestion.
                      "minRowHeightSuggested": True or False, # Indicates if there was a suggested change to min_row_height.
                    },
                  },
                },
                "tableCells": [ # The contents and style of each cell in this row. It's possible for a table to be non-rectangular, so some rows may have a different number of cells than other rows in the same table.
                  { # The contents and style of a cell in a Table.
                    "content": [ # The content of the cell.
                      # Object with schema name: StructuralElement
                    ],
                    "endIndex": 42, # The zero-based end index of this cell, exclusive, in UTF-16 code units.
                    "startIndex": 42, # The zero-based start index of this cell, in UTF-16 code units.
                    "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                      "A String",
                    ],
                    "suggestedInsertionIds": [ # The suggested insertion IDs. A TableCell may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                      "A String",
                    ],
                    "suggestedTableCellStyleChanges": { # The suggested changes to the table cell style, keyed by suggestion ID.
                      "a_key": { # A suggested change to a TableCellStyle.
                        "tableCellStyle": { # The style of a TableCell. Inherited table cell styles are represented as unset fields in this message. A table cell style can inherit from the table's style. # A TableCellStyle that only includes the changes made in this suggestion. This can be used along with the table_cell_style_suggestion_state to see which fields have changed and their new values.
                          "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the cell.
                            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                              "rgbColor": { # An RGB color. # The RGB color value.
                                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                              },
                            },
                          },
                          "borderBottom": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The bottom border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "borderLeft": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The left border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "borderRight": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The right border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "borderTop": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The top border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "columnSpan": 42, # The column span of the cell. This property is read-only.
                          "contentAlignment": "A String", # The alignment of the content in the table cell. The default alignment matches the alignment for newly created table cells in the Docs editor.
                          "paddingBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "paddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "paddingRight": { # A magnitude in a single direction in the specified units. # The right padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "rowSpan": 42, # The row span of the cell. This property is read-only.
                        },
                        "tableCellStyleSuggestionState": { # A mask that indicates which of the fields on the base TableCellStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TableCellStyle have been changed in this suggestion.
                          "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                          "borderBottomSuggested": True or False, # Indicates if there was a suggested change to border_bottom.
                          "borderLeftSuggested": True or False, # Indicates if there was a suggested change to border_left.
                          "borderRightSuggested": True or False, # Indicates if there was a suggested change to border_right.
                          "borderTopSuggested": True or False, # Indicates if there was a suggested change to border_top.
                          "columnSpanSuggested": True or False, # Indicates if there was a suggested change to column_span.
                          "contentAlignmentSuggested": True or False, # Indicates if there was a suggested change to content_alignment.
                          "paddingBottomSuggested": True or False, # Indicates if there was a suggested change to padding_bottom.
                          "paddingLeftSuggested": True or False, # Indicates if there was a suggested change to padding_left.
                          "paddingRightSuggested": True or False, # Indicates if there was a suggested change to padding_right.
                          "paddingTopSuggested": True or False, # Indicates if there was a suggested change to padding_top.
                          "rowSpanSuggested": True or False, # Indicates if there was a suggested change to row_span.
                        },
                      },
                    },
                    "tableCellStyle": { # The style of a TableCell. Inherited table cell styles are represented as unset fields in this message. A table cell style can inherit from the table's style. # The style of the cell.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the cell.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "borderBottom": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The bottom border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "borderLeft": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The left border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "borderRight": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The right border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "borderTop": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The top border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "columnSpan": 42, # The column span of the cell. This property is read-only.
                      "contentAlignment": "A String", # The alignment of the content in the table cell. The default alignment matches the alignment for newly created table cells in the Docs editor.
                      "paddingBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "paddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "paddingRight": { # A magnitude in a single direction in the specified units. # The right padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "rowSpan": 42, # The row span of the cell. This property is read-only.
                    },
                  },
                ],
                "tableRowStyle": { # Styles that apply to a table row. # The style of the table row.
                  "minRowHeight": { # A magnitude in a single direction in the specified units. # The minimum height of the row. The row will be rendered in the Docs editor at a height equal to or greater than this value in order to show all the content in the row's cells.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "preventOverflow": True or False, # Whether the row cannot overflow across page or column boundaries.
                  "tableHeader": True or False, # Whether the row is a table header.
                },
              },
            ],
            "tableStyle": { # Styles that apply to a table. # The style of the table.
              "tableColumnProperties": [ # The properties of each column. Note that in Docs, tables contain rows and rows contain cells, similar to HTML. So the properties for a row can be found on the row's table_row_style.
                { # The properties of a column in a table.
                  "width": { # A magnitude in a single direction in the specified units. # The width of the column. Set when the column's `width_type` is FIXED_WIDTH.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "widthType": "A String", # The width type of the column.
                },
              ],
            },
          },
          "tableOfContents": { # A StructuralElement representing a table of contents. # A table of contents type of structural element.
            "content": [ # The content of the table of contents.
              # Object with schema name: StructuralElement
            ],
            "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
              "A String",
            ],
            "suggestedInsertionIds": [ # The suggested insertion IDs. A TableOfContents may have multiple insertion IDs if it is a nested suggested change. If empty, then this is not a suggested insertion.
              "A String",
            ],
          },
        },
      ],
      "footerId": "A String", # The ID of the footer.
    },
  },
  "footnotes": { # Output only. The footnotes in the document, keyed by footnote ID.
    "a_key": { # A document footnote.
      "content": [ # The contents of the footnote. The indexes for a footnote's content begin at zero.
        { # A StructuralElement describes content that provides structure to the document.
          "endIndex": 42, # The zero-based end index of this structural element, exclusive, in UTF-16 code units.
          "paragraph": { # A StructuralElement representing a paragraph. A paragraph is a range of content that's terminated with a newline character. # A paragraph type of structural element.
            "bullet": { # Describes the bullet of a paragraph. # The bullet for this paragraph. If not present, the paragraph does not belong to a list.
              "listId": "A String", # The ID of the list this paragraph belongs to.
              "nestingLevel": 42, # The nesting level of this paragraph in the list.
              "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The paragraph-specific text style applied to this bullet.
                "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                "bold": True or False, # Whether or not the text is rendered as bold.
                "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "italic": True or False, # Whether or not the text is italicized.
                "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                  "bookmarkId": "A String", # The ID of a bookmark in this document.
                  "headingId": "A String", # The ID of a heading in this document.
                  "url": "A String", # An external URL.
                },
                "smallCaps": True or False, # Whether or not the text is in small capital letters.
                "strikethrough": True or False, # Whether or not the text is struck through.
                "underline": True or False, # Whether or not the text is underlined.
                "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                  "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                  "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                },
              },
            },
            "elements": [ # The content of the paragraph, broken down into its component parts.
              { # A ParagraphElement describes content within a Paragraph.
                "autoText": { # A ParagraphElement representing a spot in the text that's dynamically replaced with content that can change over time, like a page number. # An auto text paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. An AutoText may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this AutoText, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this AutoText.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                  "type": "A String", # The type of this auto text.
                },
                "columnBreak": { # A ParagraphElement representing a column break. A column break makes the subsequent text start at the top of the next column. # A column break paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A ColumnBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this ColumnBreak, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this ColumnBreak. Similar to text content, like text runs and footnote references, the text style of a column break can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "endIndex": 42, # The zero-base end index of this paragraph element, exclusive, in UTF-16 code units.
                "equation": { # A ParagraphElement representing an equation. # An equation paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. An Equation may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                },
                "footnoteReference": { # A ParagraphElement representing a footnote reference. A footnote reference is the inline content rendered with a number and is used to identify the footnote. # A footnote reference paragraph element.
                  "footnoteId": "A String", # The ID of the footnote that contains the content of this footnote reference.
                  "footnoteNumber": "A String", # The rendered number of this footnote.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A FootnoteReference may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this FootnoteReference, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this FootnoteReference.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "horizontalRule": { # A ParagraphElement representing a horizontal line. # A horizontal rule paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A HorizontalRule may have multiple insertion IDs if it is a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this HorizontalRule, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this HorizontalRule. Similar to text content, like text runs and footnote references, the text style of a horizontal rule can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "inlineObjectElement": { # A ParagraphElement that contains an InlineObject. # An inline object paragraph element.
                  "inlineObjectId": "A String", # The ID of the InlineObject this element contains.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. An InlineObjectElement may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this InlineObject, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this InlineObjectElement. Similar to text content, like text runs and footnote references, the text style of an inline object element can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "pageBreak": { # A ParagraphElement representing a page break. A page break makes the subsequent text start at the top of the next page. # A page break paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A PageBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this PageBreak, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this PageBreak. Similar to text content, like text runs and footnote references, the text style of a page break can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "person": { # A person or email address mentioned in a document. These mentions behave as a single, immutable element containing the person's name or email address. # A paragraph element that links to a person or email address.
                  "personId": "A String", # Output only. The unique ID of this link.
                  "personProperties": { # Properties specific to a linked Person. # Output only. The properties of this Person. This field is always present.
                    "email": "A String", # Output only. The email address linked to this Person. This field is always present.
                    "name": "A String", # Output only. The name of the person if it's displayed in the link text instead of the person's email address.
                  },
                  "suggestedDeletionIds": [ # IDs for suggestions that remove this person link from the document. A Person might have multiple deletion IDs if, for example, multiple users suggest deleting it. If empty, then this person link isn't suggested for deletion.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # IDs for suggestions that insert this person link into the document. A Person might have multiple insertion IDs if it's a nested suggested change (a suggestion within a suggestion made by a different user, for example). If empty, then this person link isn't a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this Person, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this Person.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "richLink": { # A link to a Google resource (such as a file in Drive, a YouTube video, or a Calendar event). # A paragraph element that links to a Google resource (such as a file in Google Drive, a YouTube video, or a Calendar event.)
                  "richLinkId": "A String", # Output only. The ID of this link.
                  "richLinkProperties": { # Properties specific to a RichLink. # Output only. The properties of this RichLink. This field is always present.
                    "mimeType": "A String", # Output only. The [MIME type](https://developers.google.com/drive/api/v3/mime-types) of the RichLink, if there's one (for example, when it's a file in Drive).
                    "title": "A String", # Output only. The title of the RichLink as displayed in the link. This title matches the title of the linked resource at the time of the insertion or last update of the link. This field is always present.
                    "uri": "A String", # Output only. The URI to the RichLink. This is always present.
                  },
                  "suggestedDeletionIds": [ # IDs for suggestions that remove this link from the document. A RichLink might have multiple deletion IDs if, for example, multiple users suggest deleting it. If empty, then this person link isn't suggested for deletion.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # IDs for suggestions that insert this link into the document. A RichLink might have multiple insertion IDs if it's a nested suggested change (a suggestion within a suggestion made by a different user, for example). If empty, then this person link isn't a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this RichLink, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this RichLink.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "startIndex": 42, # The zero-based start index of this paragraph element, in UTF-16 code units.
                "textRun": { # A ParagraphElement that represents a run of text that all has the same styling. # A text run paragraph element.
                  "content": "A String", # The text of this run. Any non-text elements in the run are replaced with the Unicode character U+E907.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A TextRun may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this run, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this run.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
              },
            ],
            "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The style of this paragraph.
              "alignment": "A String", # The text alignment for this paragraph.
              "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
              "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
              "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
              "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
              "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
              "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
              "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
              "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
              "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
                "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
              },
              "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "spacingMode": "A String", # The spacing mode for the paragraph.
              "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
                { # A tab stop within a paragraph.
                  "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
                  "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
              ],
            },
            "positionedObjectIds": [ # The IDs of the positioned objects tethered to this paragraph.
              "A String",
            ],
            "suggestedBulletChanges": { # The suggested changes to this paragraph's bullet.
              "a_key": { # A suggested change to a Bullet.
                "bullet": { # Describes the bullet of a paragraph. # A Bullet that only includes the changes made in this suggestion. This can be used along with the bullet_suggestion_state to see which fields have changed and their new values.
                  "listId": "A String", # The ID of the list this paragraph belongs to.
                  "nestingLevel": 42, # The nesting level of this paragraph in the list.
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The paragraph-specific text style applied to this bullet.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "bulletSuggestionState": { # A mask that indicates which of the fields on the base Bullet have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base Bullet have been changed in this suggestion.
                  "listIdSuggested": True or False, # Indicates if there was a suggested change to the list_id.
                  "nestingLevelSuggested": True or False, # Indicates if there was a suggested change to the nesting_level.
                  "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in text style have been changed in this suggestion.
                    "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                    "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                    "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                    "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                    "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                    "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                    "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                    "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                    "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                    "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                    "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                  },
                },
              },
            },
            "suggestedParagraphStyleChanges": { # The suggested paragraph style changes to this paragraph, keyed by suggestion ID.
              "a_key": { # A suggested change to a ParagraphStyle.
                "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A ParagraphStyle that only includes the changes made in this suggestion. This can be used along with the paragraph_style_suggestion_state to see which fields have changed and their new values.
                  "alignment": "A String", # The text alignment for this paragraph.
                  "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
                  "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
                  "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
                  "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
                  "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
                  "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
                  "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
                  "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
                  "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                  },
                  "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "spacingMode": "A String", # The spacing mode for the paragraph.
                  "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
                    { # A tab stop within a paragraph.
                      "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
                      "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                    },
                  ],
                },
                "paragraphStyleSuggestionState": { # A mask that indicates which of the fields on the base ParagraphStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base ParagraphStyle have been changed in this suggestion.
                  "alignmentSuggested": True or False, # Indicates if there was a suggested change to alignment.
                  "avoidWidowAndOrphanSuggested": True or False, # Indicates if there was a suggested change to avoid_widow_and_orphan.
                  "borderBetweenSuggested": True or False, # Indicates if there was a suggested change to border_between.
                  "borderBottomSuggested": True or False, # Indicates if there was a suggested change to border_bottom.
                  "borderLeftSuggested": True or False, # Indicates if there was a suggested change to border_left.
                  "borderRightSuggested": True or False, # Indicates if there was a suggested change to border_right.
                  "borderTopSuggested": True or False, # Indicates if there was a suggested change to border_top.
                  "directionSuggested": True or False, # Indicates if there was a suggested change to direction.
                  "headingIdSuggested": True or False, # Indicates if there was a suggested change to heading_id.
                  "indentEndSuggested": True or False, # Indicates if there was a suggested change to indent_end.
                  "indentFirstLineSuggested": True or False, # Indicates if there was a suggested change to indent_first_line.
                  "indentStartSuggested": True or False, # Indicates if there was a suggested change to indent_start.
                  "keepLinesTogetherSuggested": True or False, # Indicates if there was a suggested change to keep_lines_together.
                  "keepWithNextSuggested": True or False, # Indicates if there was a suggested change to keep_with_next.
                  "lineSpacingSuggested": True or False, # Indicates if there was a suggested change to line_spacing.
                  "namedStyleTypeSuggested": True or False, # Indicates if there was a suggested change to named_style_type.
                  "pageBreakBeforeSuggested": True or False, # Indicates if there was a suggested change to page_break_before.
                  "shadingSuggestionState": { # A mask that indicates which of the fields on the base Shading have been changed in this suggested change. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in shading have been changed in this suggestion.
                    "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to the Shading.
                  },
                  "spaceAboveSuggested": True or False, # Indicates if there was a suggested change to space_above.
                  "spaceBelowSuggested": True or False, # Indicates if there was a suggested change to space_below.
                  "spacingModeSuggested": True or False, # Indicates if there was a suggested change to spacing_mode.
                },
              },
            },
            "suggestedPositionedObjectIds": { # The IDs of the positioned objects suggested to be attached to this paragraph, keyed by suggestion ID.
              "a_key": { # A collection of object IDs.
                "objectIds": [ # The object IDs.
                  "A String",
                ],
              },
            },
          },
          "sectionBreak": { # A StructuralElement representing a section break. A section is a range of content that has the same SectionStyle. A section break represents the start of a new section, and the section style applies to the section after the section break. The document body always begins with a section break. # A section break type of structural element.
            "sectionStyle": { # The styling that applies to a section. # The style of the section after this section break.
              "columnProperties": [ # The section's columns properties. If empty, the section contains one column with the default properties in the Docs editor. A section can be updated to have no more than 3 columns. When updating this property, setting a concrete value is required. Unsetting this property will result in a 400 bad request error.
                { # Properties that apply to a section's column.
                  "paddingEnd": { # A magnitude in a single direction in the specified units. # The padding at the end of the column.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "width": { # A magnitude in a single direction in the specified units. # Output only. The width of the column.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
              ],
              "columnSeparatorStyle": "A String", # The style of column separators. This style can be set even when there's one column in the section. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "contentDirection": "A String", # The content direction of this section. If unset, the value defaults to LEFT_TO_RIGHT. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "defaultFooterId": "A String", # The ID of the default footer. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's default_footer_id. This property is read-only.
              "defaultHeaderId": "A String", # The ID of the default header. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's default_header_id. This property is read-only.
              "evenPageFooterId": "A String", # The ID of the footer used only for even pages. If the value of DocumentStyle's use_even_page_header_footer is true, this value is used for the footers on even pages in the section. If it is false, the footers on even pages use the default_footer_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's even_page_footer_id. This property is read-only.
              "evenPageHeaderId": "A String", # The ID of the header used only for even pages. If the value of DocumentStyle's use_even_page_header_footer is true, this value is used for the headers on even pages in the section. If it is false, the headers on even pages use the default_header_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's even_page_header_id. This property is read-only.
              "firstPageFooterId": "A String", # The ID of the footer used only for the first page of the section. If use_first_page_header_footer is true, this value is used for the footer on the first page of the section. If it's false, the footer on the first page of the section uses the default_footer_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's first_page_footer_id. This property is read-only.
              "firstPageHeaderId": "A String", # The ID of the header used only for the first page of the section. If use_first_page_header_footer is true, this value is used for the header on the first page of the section. If it's false, the header on the first page of the section uses the default_header_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's first_page_header_id. This property is read-only.
              "flipPageOrientation": True or False, # Optional. Indicates whether to flip the dimensions of DocumentStyle's page_size for this section, which allows changing the page orientation between portrait and landscape. If unset, the value inherits from DocumentStyle's flip_page_orientation. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom page margin of the section. If unset, the value defaults to margin_bottom from DocumentStyle. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginFooter": { # A magnitude in a single direction in the specified units. # The footer margin of the section. If unset, the value defaults to margin_footer from DocumentStyle. If updated, use_custom_header_footer_margins is set to true on DocumentStyle. The value of use_custom_header_footer_margins on DocumentStyle indicates if a footer margin is being respected for this section When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginHeader": { # A magnitude in a single direction in the specified units. # The header margin of the section. If unset, the value defaults to margin_header from DocumentStyle. If updated, use_custom_header_footer_margins is set to true on DocumentStyle. The value of use_custom_header_footer_margins on DocumentStyle indicates if a header margin is being respected for this section. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginLeft": { # A magnitude in a single direction in the specified units. # The left page margin of the section. If unset, the value defaults to margin_left from DocumentStyle. Updating the left margin causes columns in this section to resize. Since the margin affects column width, it's applied before column properties. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginRight": { # A magnitude in a single direction in the specified units. # The right page margin of the section. If unset, the value defaults to margin_right from DocumentStyle. Updating the right margin causes columns in this section to resize. Since the margin affects column width, it's applied before column properties. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginTop": { # A magnitude in a single direction in the specified units. # The top page margin of the section. If unset, the value defaults to margin_top from DocumentStyle. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "pageNumberStart": 42, # The page number from which to start counting the number of pages for this section. If unset, page numbering continues from the previous section. If the value is unset in the first SectionBreak, refer to DocumentStyle's page_number_start. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "sectionType": "A String", # Output only. The type of section.
              "useFirstPageHeaderFooter": True or False, # Indicates whether to use the first page header / footer IDs for the first page of the section. If unset, it inherits from DocumentStyle's use_first_page_header_footer for the first section. If the value is unset for subsequent sectors, it should be interpreted as false. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
            },
            "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
              "A String",
            ],
            "suggestedInsertionIds": [ # The suggested insertion IDs. A SectionBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
              "A String",
            ],
          },
          "startIndex": 42, # The zero-based start index of this structural element, in UTF-16 code units.
          "table": { # A StructuralElement representing a table. # A table type of structural element.
            "columns": 42, # Number of columns in the table. It's possible for a table to be non-rectangular, so some rows may have a different number of cells.
            "rows": 42, # Number of rows in the table.
            "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
              "A String",
            ],
            "suggestedInsertionIds": [ # The suggested insertion IDs. A Table may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
              "A String",
            ],
            "tableRows": [ # The contents and style of each row.
              { # The contents and style of a row in a Table.
                "endIndex": 42, # The zero-based end index of this row, exclusive, in UTF-16 code units.
                "startIndex": 42, # The zero-based start index of this row, in UTF-16 code units.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. A TableRow may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
                "suggestedTableRowStyleChanges": { # The suggested style changes to this row, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TableRowStyle.
                    "tableRowStyle": { # Styles that apply to a table row. # A TableRowStyle that only includes the changes made in this suggestion. This can be used along with the table_row_style_suggestion_state to see which fields have changed and their new values.
                      "minRowHeight": { # A magnitude in a single direction in the specified units. # The minimum height of the row. The row will be rendered in the Docs editor at a height equal to or greater than this value in order to show all the content in the row's cells.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "preventOverflow": True or False, # Whether the row cannot overflow across page or column boundaries.
                      "tableHeader": True or False, # Whether the row is a table header.
                    },
                    "tableRowStyleSuggestionState": { # A mask that indicates which of the fields on the base TableRowStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TableRowStyle have been changed in this suggestion.
                      "minRowHeightSuggested": True or False, # Indicates if there was a suggested change to min_row_height.
                    },
                  },
                },
                "tableCells": [ # The contents and style of each cell in this row. It's possible for a table to be non-rectangular, so some rows may have a different number of cells than other rows in the same table.
                  { # The contents and style of a cell in a Table.
                    "content": [ # The content of the cell.
                      # Object with schema name: StructuralElement
                    ],
                    "endIndex": 42, # The zero-based end index of this cell, exclusive, in UTF-16 code units.
                    "startIndex": 42, # The zero-based start index of this cell, in UTF-16 code units.
                    "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                      "A String",
                    ],
                    "suggestedInsertionIds": [ # The suggested insertion IDs. A TableCell may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                      "A String",
                    ],
                    "suggestedTableCellStyleChanges": { # The suggested changes to the table cell style, keyed by suggestion ID.
                      "a_key": { # A suggested change to a TableCellStyle.
                        "tableCellStyle": { # The style of a TableCell. Inherited table cell styles are represented as unset fields in this message. A table cell style can inherit from the table's style. # A TableCellStyle that only includes the changes made in this suggestion. This can be used along with the table_cell_style_suggestion_state to see which fields have changed and their new values.
                          "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the cell.
                            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                              "rgbColor": { # An RGB color. # The RGB color value.
                                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                              },
                            },
                          },
                          "borderBottom": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The bottom border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "borderLeft": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The left border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "borderRight": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The right border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "borderTop": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The top border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "columnSpan": 42, # The column span of the cell. This property is read-only.
                          "contentAlignment": "A String", # The alignment of the content in the table cell. The default alignment matches the alignment for newly created table cells in the Docs editor.
                          "paddingBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "paddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "paddingRight": { # A magnitude in a single direction in the specified units. # The right padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "rowSpan": 42, # The row span of the cell. This property is read-only.
                        },
                        "tableCellStyleSuggestionState": { # A mask that indicates which of the fields on the base TableCellStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TableCellStyle have been changed in this suggestion.
                          "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                          "borderBottomSuggested": True or False, # Indicates if there was a suggested change to border_bottom.
                          "borderLeftSuggested": True or False, # Indicates if there was a suggested change to border_left.
                          "borderRightSuggested": True or False, # Indicates if there was a suggested change to border_right.
                          "borderTopSuggested": True or False, # Indicates if there was a suggested change to border_top.
                          "columnSpanSuggested": True or False, # Indicates if there was a suggested change to column_span.
                          "contentAlignmentSuggested": True or False, # Indicates if there was a suggested change to content_alignment.
                          "paddingBottomSuggested": True or False, # Indicates if there was a suggested change to padding_bottom.
                          "paddingLeftSuggested": True or False, # Indicates if there was a suggested change to padding_left.
                          "paddingRightSuggested": True or False, # Indicates if there was a suggested change to padding_right.
                          "paddingTopSuggested": True or False, # Indicates if there was a suggested change to padding_top.
                          "rowSpanSuggested": True or False, # Indicates if there was a suggested change to row_span.
                        },
                      },
                    },
                    "tableCellStyle": { # The style of a TableCell. Inherited table cell styles are represented as unset fields in this message. A table cell style can inherit from the table's style. # The style of the cell.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the cell.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "borderBottom": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The bottom border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "borderLeft": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The left border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "borderRight": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The right border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "borderTop": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The top border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "columnSpan": 42, # The column span of the cell. This property is read-only.
                      "contentAlignment": "A String", # The alignment of the content in the table cell. The default alignment matches the alignment for newly created table cells in the Docs editor.
                      "paddingBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "paddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "paddingRight": { # A magnitude in a single direction in the specified units. # The right padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "rowSpan": 42, # The row span of the cell. This property is read-only.
                    },
                  },
                ],
                "tableRowStyle": { # Styles that apply to a table row. # The style of the table row.
                  "minRowHeight": { # A magnitude in a single direction in the specified units. # The minimum height of the row. The row will be rendered in the Docs editor at a height equal to or greater than this value in order to show all the content in the row's cells.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "preventOverflow": True or False, # Whether the row cannot overflow across page or column boundaries.
                  "tableHeader": True or False, # Whether the row is a table header.
                },
              },
            ],
            "tableStyle": { # Styles that apply to a table. # The style of the table.
              "tableColumnProperties": [ # The properties of each column. Note that in Docs, tables contain rows and rows contain cells, similar to HTML. So the properties for a row can be found on the row's table_row_style.
                { # The properties of a column in a table.
                  "width": { # A magnitude in a single direction in the specified units. # The width of the column. Set when the column's `width_type` is FIXED_WIDTH.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "widthType": "A String", # The width type of the column.
                },
              ],
            },
          },
          "tableOfContents": { # A StructuralElement representing a table of contents. # A table of contents type of structural element.
            "content": [ # The content of the table of contents.
              # Object with schema name: StructuralElement
            ],
            "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
              "A String",
            ],
            "suggestedInsertionIds": [ # The suggested insertion IDs. A TableOfContents may have multiple insertion IDs if it is a nested suggested change. If empty, then this is not a suggested insertion.
              "A String",
            ],
          },
        },
      ],
      "footnoteId": "A String", # The ID of the footnote.
    },
  },
  "headers": { # Output only. The headers in the document, keyed by header ID.
    "a_key": { # A document header.
      "content": [ # The contents of the header. The indexes for a header's content begin at zero.
        { # A StructuralElement describes content that provides structure to the document.
          "endIndex": 42, # The zero-based end index of this structural element, exclusive, in UTF-16 code units.
          "paragraph": { # A StructuralElement representing a paragraph. A paragraph is a range of content that's terminated with a newline character. # A paragraph type of structural element.
            "bullet": { # Describes the bullet of a paragraph. # The bullet for this paragraph. If not present, the paragraph does not belong to a list.
              "listId": "A String", # The ID of the list this paragraph belongs to.
              "nestingLevel": 42, # The nesting level of this paragraph in the list.
              "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The paragraph-specific text style applied to this bullet.
                "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                "bold": True or False, # Whether or not the text is rendered as bold.
                "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "italic": True or False, # Whether or not the text is italicized.
                "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                  "bookmarkId": "A String", # The ID of a bookmark in this document.
                  "headingId": "A String", # The ID of a heading in this document.
                  "url": "A String", # An external URL.
                },
                "smallCaps": True or False, # Whether or not the text is in small capital letters.
                "strikethrough": True or False, # Whether or not the text is struck through.
                "underline": True or False, # Whether or not the text is underlined.
                "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                  "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                  "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                },
              },
            },
            "elements": [ # The content of the paragraph, broken down into its component parts.
              { # A ParagraphElement describes content within a Paragraph.
                "autoText": { # A ParagraphElement representing a spot in the text that's dynamically replaced with content that can change over time, like a page number. # An auto text paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. An AutoText may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this AutoText, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this AutoText.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                  "type": "A String", # The type of this auto text.
                },
                "columnBreak": { # A ParagraphElement representing a column break. A column break makes the subsequent text start at the top of the next column. # A column break paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A ColumnBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this ColumnBreak, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this ColumnBreak. Similar to text content, like text runs and footnote references, the text style of a column break can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "endIndex": 42, # The zero-base end index of this paragraph element, exclusive, in UTF-16 code units.
                "equation": { # A ParagraphElement representing an equation. # An equation paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. An Equation may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                },
                "footnoteReference": { # A ParagraphElement representing a footnote reference. A footnote reference is the inline content rendered with a number and is used to identify the footnote. # A footnote reference paragraph element.
                  "footnoteId": "A String", # The ID of the footnote that contains the content of this footnote reference.
                  "footnoteNumber": "A String", # The rendered number of this footnote.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A FootnoteReference may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this FootnoteReference, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this FootnoteReference.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "horizontalRule": { # A ParagraphElement representing a horizontal line. # A horizontal rule paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A HorizontalRule may have multiple insertion IDs if it is a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this HorizontalRule, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this HorizontalRule. Similar to text content, like text runs and footnote references, the text style of a horizontal rule can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "inlineObjectElement": { # A ParagraphElement that contains an InlineObject. # An inline object paragraph element.
                  "inlineObjectId": "A String", # The ID of the InlineObject this element contains.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. An InlineObjectElement may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this InlineObject, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this InlineObjectElement. Similar to text content, like text runs and footnote references, the text style of an inline object element can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "pageBreak": { # A ParagraphElement representing a page break. A page break makes the subsequent text start at the top of the next page. # A page break paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A PageBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this PageBreak, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this PageBreak. Similar to text content, like text runs and footnote references, the text style of a page break can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "person": { # A person or email address mentioned in a document. These mentions behave as a single, immutable element containing the person's name or email address. # A paragraph element that links to a person or email address.
                  "personId": "A String", # Output only. The unique ID of this link.
                  "personProperties": { # Properties specific to a linked Person. # Output only. The properties of this Person. This field is always present.
                    "email": "A String", # Output only. The email address linked to this Person. This field is always present.
                    "name": "A String", # Output only. The name of the person if it's displayed in the link text instead of the person's email address.
                  },
                  "suggestedDeletionIds": [ # IDs for suggestions that remove this person link from the document. A Person might have multiple deletion IDs if, for example, multiple users suggest deleting it. If empty, then this person link isn't suggested for deletion.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # IDs for suggestions that insert this person link into the document. A Person might have multiple insertion IDs if it's a nested suggested change (a suggestion within a suggestion made by a different user, for example). If empty, then this person link isn't a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this Person, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this Person.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "richLink": { # A link to a Google resource (such as a file in Drive, a YouTube video, or a Calendar event). # A paragraph element that links to a Google resource (such as a file in Google Drive, a YouTube video, or a Calendar event.)
                  "richLinkId": "A String", # Output only. The ID of this link.
                  "richLinkProperties": { # Properties specific to a RichLink. # Output only. The properties of this RichLink. This field is always present.
                    "mimeType": "A String", # Output only. The [MIME type](https://developers.google.com/drive/api/v3/mime-types) of the RichLink, if there's one (for example, when it's a file in Drive).
                    "title": "A String", # Output only. The title of the RichLink as displayed in the link. This title matches the title of the linked resource at the time of the insertion or last update of the link. This field is always present.
                    "uri": "A String", # Output only. The URI to the RichLink. This is always present.
                  },
                  "suggestedDeletionIds": [ # IDs for suggestions that remove this link from the document. A RichLink might have multiple deletion IDs if, for example, multiple users suggest deleting it. If empty, then this person link isn't suggested for deletion.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # IDs for suggestions that insert this link into the document. A RichLink might have multiple insertion IDs if it's a nested suggested change (a suggestion within a suggestion made by a different user, for example). If empty, then this person link isn't a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this RichLink, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this RichLink.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "startIndex": 42, # The zero-based start index of this paragraph element, in UTF-16 code units.
                "textRun": { # A ParagraphElement that represents a run of text that all has the same styling. # A text run paragraph element.
                  "content": "A String", # The text of this run. Any non-text elements in the run are replaced with the Unicode character U+E907.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A TextRun may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this run, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this run.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
              },
            ],
            "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The style of this paragraph.
              "alignment": "A String", # The text alignment for this paragraph.
              "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
              "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
              "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
              "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
              "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
              "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
              "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
              "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
              "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
                "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
              },
              "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "spacingMode": "A String", # The spacing mode for the paragraph.
              "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
                { # A tab stop within a paragraph.
                  "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
                  "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
              ],
            },
            "positionedObjectIds": [ # The IDs of the positioned objects tethered to this paragraph.
              "A String",
            ],
            "suggestedBulletChanges": { # The suggested changes to this paragraph's bullet.
              "a_key": { # A suggested change to a Bullet.
                "bullet": { # Describes the bullet of a paragraph. # A Bullet that only includes the changes made in this suggestion. This can be used along with the bullet_suggestion_state to see which fields have changed and their new values.
                  "listId": "A String", # The ID of the list this paragraph belongs to.
                  "nestingLevel": 42, # The nesting level of this paragraph in the list.
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The paragraph-specific text style applied to this bullet.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "bulletSuggestionState": { # A mask that indicates which of the fields on the base Bullet have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base Bullet have been changed in this suggestion.
                  "listIdSuggested": True or False, # Indicates if there was a suggested change to the list_id.
                  "nestingLevelSuggested": True or False, # Indicates if there was a suggested change to the nesting_level.
                  "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in text style have been changed in this suggestion.
                    "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                    "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                    "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                    "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                    "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                    "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                    "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                    "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                    "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                    "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                    "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                  },
                },
              },
            },
            "suggestedParagraphStyleChanges": { # The suggested paragraph style changes to this paragraph, keyed by suggestion ID.
              "a_key": { # A suggested change to a ParagraphStyle.
                "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A ParagraphStyle that only includes the changes made in this suggestion. This can be used along with the paragraph_style_suggestion_state to see which fields have changed and their new values.
                  "alignment": "A String", # The text alignment for this paragraph.
                  "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
                  "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
                  "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
                  "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
                  "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
                  "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
                  "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
                  "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
                  "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                  },
                  "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "spacingMode": "A String", # The spacing mode for the paragraph.
                  "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
                    { # A tab stop within a paragraph.
                      "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
                      "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                    },
                  ],
                },
                "paragraphStyleSuggestionState": { # A mask that indicates which of the fields on the base ParagraphStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base ParagraphStyle have been changed in this suggestion.
                  "alignmentSuggested": True or False, # Indicates if there was a suggested change to alignment.
                  "avoidWidowAndOrphanSuggested": True or False, # Indicates if there was a suggested change to avoid_widow_and_orphan.
                  "borderBetweenSuggested": True or False, # Indicates if there was a suggested change to border_between.
                  "borderBottomSuggested": True or False, # Indicates if there was a suggested change to border_bottom.
                  "borderLeftSuggested": True or False, # Indicates if there was a suggested change to border_left.
                  "borderRightSuggested": True or False, # Indicates if there was a suggested change to border_right.
                  "borderTopSuggested": True or False, # Indicates if there was a suggested change to border_top.
                  "directionSuggested": True or False, # Indicates if there was a suggested change to direction.
                  "headingIdSuggested": True or False, # Indicates if there was a suggested change to heading_id.
                  "indentEndSuggested": True or False, # Indicates if there was a suggested change to indent_end.
                  "indentFirstLineSuggested": True or False, # Indicates if there was a suggested change to indent_first_line.
                  "indentStartSuggested": True or False, # Indicates if there was a suggested change to indent_start.
                  "keepLinesTogetherSuggested": True or False, # Indicates if there was a suggested change to keep_lines_together.
                  "keepWithNextSuggested": True or False, # Indicates if there was a suggested change to keep_with_next.
                  "lineSpacingSuggested": True or False, # Indicates if there was a suggested change to line_spacing.
                  "namedStyleTypeSuggested": True or False, # Indicates if there was a suggested change to named_style_type.
                  "pageBreakBeforeSuggested": True or False, # Indicates if there was a suggested change to page_break_before.
                  "shadingSuggestionState": { # A mask that indicates which of the fields on the base Shading have been changed in this suggested change. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in shading have been changed in this suggestion.
                    "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to the Shading.
                  },
                  "spaceAboveSuggested": True or False, # Indicates if there was a suggested change to space_above.
                  "spaceBelowSuggested": True or False, # Indicates if there was a suggested change to space_below.
                  "spacingModeSuggested": True or False, # Indicates if there was a suggested change to spacing_mode.
                },
              },
            },
            "suggestedPositionedObjectIds": { # The IDs of the positioned objects suggested to be attached to this paragraph, keyed by suggestion ID.
              "a_key": { # A collection of object IDs.
                "objectIds": [ # The object IDs.
                  "A String",
                ],
              },
            },
          },
          "sectionBreak": { # A StructuralElement representing a section break. A section is a range of content that has the same SectionStyle. A section break represents the start of a new section, and the section style applies to the section after the section break. The document body always begins with a section break. # A section break type of structural element.
            "sectionStyle": { # The styling that applies to a section. # The style of the section after this section break.
              "columnProperties": [ # The section's columns properties. If empty, the section contains one column with the default properties in the Docs editor. A section can be updated to have no more than 3 columns. When updating this property, setting a concrete value is required. Unsetting this property will result in a 400 bad request error.
                { # Properties that apply to a section's column.
                  "paddingEnd": { # A magnitude in a single direction in the specified units. # The padding at the end of the column.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "width": { # A magnitude in a single direction in the specified units. # Output only. The width of the column.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
              ],
              "columnSeparatorStyle": "A String", # The style of column separators. This style can be set even when there's one column in the section. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "contentDirection": "A String", # The content direction of this section. If unset, the value defaults to LEFT_TO_RIGHT. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "defaultFooterId": "A String", # The ID of the default footer. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's default_footer_id. This property is read-only.
              "defaultHeaderId": "A String", # The ID of the default header. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's default_header_id. This property is read-only.
              "evenPageFooterId": "A String", # The ID of the footer used only for even pages. If the value of DocumentStyle's use_even_page_header_footer is true, this value is used for the footers on even pages in the section. If it is false, the footers on even pages use the default_footer_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's even_page_footer_id. This property is read-only.
              "evenPageHeaderId": "A String", # The ID of the header used only for even pages. If the value of DocumentStyle's use_even_page_header_footer is true, this value is used for the headers on even pages in the section. If it is false, the headers on even pages use the default_header_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's even_page_header_id. This property is read-only.
              "firstPageFooterId": "A String", # The ID of the footer used only for the first page of the section. If use_first_page_header_footer is true, this value is used for the footer on the first page of the section. If it's false, the footer on the first page of the section uses the default_footer_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's first_page_footer_id. This property is read-only.
              "firstPageHeaderId": "A String", # The ID of the header used only for the first page of the section. If use_first_page_header_footer is true, this value is used for the header on the first page of the section. If it's false, the header on the first page of the section uses the default_header_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's first_page_header_id. This property is read-only.
              "flipPageOrientation": True or False, # Optional. Indicates whether to flip the dimensions of DocumentStyle's page_size for this section, which allows changing the page orientation between portrait and landscape. If unset, the value inherits from DocumentStyle's flip_page_orientation. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom page margin of the section. If unset, the value defaults to margin_bottom from DocumentStyle. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginFooter": { # A magnitude in a single direction in the specified units. # The footer margin of the section. If unset, the value defaults to margin_footer from DocumentStyle. If updated, use_custom_header_footer_margins is set to true on DocumentStyle. The value of use_custom_header_footer_margins on DocumentStyle indicates if a footer margin is being respected for this section When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginHeader": { # A magnitude in a single direction in the specified units. # The header margin of the section. If unset, the value defaults to margin_header from DocumentStyle. If updated, use_custom_header_footer_margins is set to true on DocumentStyle. The value of use_custom_header_footer_margins on DocumentStyle indicates if a header margin is being respected for this section. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginLeft": { # A magnitude in a single direction in the specified units. # The left page margin of the section. If unset, the value defaults to margin_left from DocumentStyle. Updating the left margin causes columns in this section to resize. Since the margin affects column width, it's applied before column properties. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginRight": { # A magnitude in a single direction in the specified units. # The right page margin of the section. If unset, the value defaults to margin_right from DocumentStyle. Updating the right margin causes columns in this section to resize. Since the margin affects column width, it's applied before column properties. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginTop": { # A magnitude in a single direction in the specified units. # The top page margin of the section. If unset, the value defaults to margin_top from DocumentStyle. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "pageNumberStart": 42, # The page number from which to start counting the number of pages for this section. If unset, page numbering continues from the previous section. If the value is unset in the first SectionBreak, refer to DocumentStyle's page_number_start. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "sectionType": "A String", # Output only. The type of section.
              "useFirstPageHeaderFooter": True or False, # Indicates whether to use the first page header / footer IDs for the first page of the section. If unset, it inherits from DocumentStyle's use_first_page_header_footer for the first section. If the value is unset for subsequent sectors, it should be interpreted as false. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
            },
            "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
              "A String",
            ],
            "suggestedInsertionIds": [ # The suggested insertion IDs. A SectionBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
              "A String",
            ],
          },
          "startIndex": 42, # The zero-based start index of this structural element, in UTF-16 code units.
          "table": { # A StructuralElement representing a table. # A table type of structural element.
            "columns": 42, # Number of columns in the table. It's possible for a table to be non-rectangular, so some rows may have a different number of cells.
            "rows": 42, # Number of rows in the table.
            "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
              "A String",
            ],
            "suggestedInsertionIds": [ # The suggested insertion IDs. A Table may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
              "A String",
            ],
            "tableRows": [ # The contents and style of each row.
              { # The contents and style of a row in a Table.
                "endIndex": 42, # The zero-based end index of this row, exclusive, in UTF-16 code units.
                "startIndex": 42, # The zero-based start index of this row, in UTF-16 code units.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. A TableRow may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
                "suggestedTableRowStyleChanges": { # The suggested style changes to this row, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TableRowStyle.
                    "tableRowStyle": { # Styles that apply to a table row. # A TableRowStyle that only includes the changes made in this suggestion. This can be used along with the table_row_style_suggestion_state to see which fields have changed and their new values.
                      "minRowHeight": { # A magnitude in a single direction in the specified units. # The minimum height of the row. The row will be rendered in the Docs editor at a height equal to or greater than this value in order to show all the content in the row's cells.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "preventOverflow": True or False, # Whether the row cannot overflow across page or column boundaries.
                      "tableHeader": True or False, # Whether the row is a table header.
                    },
                    "tableRowStyleSuggestionState": { # A mask that indicates which of the fields on the base TableRowStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TableRowStyle have been changed in this suggestion.
                      "minRowHeightSuggested": True or False, # Indicates if there was a suggested change to min_row_height.
                    },
                  },
                },
                "tableCells": [ # The contents and style of each cell in this row. It's possible for a table to be non-rectangular, so some rows may have a different number of cells than other rows in the same table.
                  { # The contents and style of a cell in a Table.
                    "content": [ # The content of the cell.
                      # Object with schema name: StructuralElement
                    ],
                    "endIndex": 42, # The zero-based end index of this cell, exclusive, in UTF-16 code units.
                    "startIndex": 42, # The zero-based start index of this cell, in UTF-16 code units.
                    "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                      "A String",
                    ],
                    "suggestedInsertionIds": [ # The suggested insertion IDs. A TableCell may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                      "A String",
                    ],
                    "suggestedTableCellStyleChanges": { # The suggested changes to the table cell style, keyed by suggestion ID.
                      "a_key": { # A suggested change to a TableCellStyle.
                        "tableCellStyle": { # The style of a TableCell. Inherited table cell styles are represented as unset fields in this message. A table cell style can inherit from the table's style. # A TableCellStyle that only includes the changes made in this suggestion. This can be used along with the table_cell_style_suggestion_state to see which fields have changed and their new values.
                          "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the cell.
                            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                              "rgbColor": { # An RGB color. # The RGB color value.
                                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                              },
                            },
                          },
                          "borderBottom": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The bottom border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "borderLeft": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The left border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "borderRight": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The right border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "borderTop": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The top border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "columnSpan": 42, # The column span of the cell. This property is read-only.
                          "contentAlignment": "A String", # The alignment of the content in the table cell. The default alignment matches the alignment for newly created table cells in the Docs editor.
                          "paddingBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "paddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "paddingRight": { # A magnitude in a single direction in the specified units. # The right padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "rowSpan": 42, # The row span of the cell. This property is read-only.
                        },
                        "tableCellStyleSuggestionState": { # A mask that indicates which of the fields on the base TableCellStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TableCellStyle have been changed in this suggestion.
                          "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                          "borderBottomSuggested": True or False, # Indicates if there was a suggested change to border_bottom.
                          "borderLeftSuggested": True or False, # Indicates if there was a suggested change to border_left.
                          "borderRightSuggested": True or False, # Indicates if there was a suggested change to border_right.
                          "borderTopSuggested": True or False, # Indicates if there was a suggested change to border_top.
                          "columnSpanSuggested": True or False, # Indicates if there was a suggested change to column_span.
                          "contentAlignmentSuggested": True or False, # Indicates if there was a suggested change to content_alignment.
                          "paddingBottomSuggested": True or False, # Indicates if there was a suggested change to padding_bottom.
                          "paddingLeftSuggested": True or False, # Indicates if there was a suggested change to padding_left.
                          "paddingRightSuggested": True or False, # Indicates if there was a suggested change to padding_right.
                          "paddingTopSuggested": True or False, # Indicates if there was a suggested change to padding_top.
                          "rowSpanSuggested": True or False, # Indicates if there was a suggested change to row_span.
                        },
                      },
                    },
                    "tableCellStyle": { # The style of a TableCell. Inherited table cell styles are represented as unset fields in this message. A table cell style can inherit from the table's style. # The style of the cell.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the cell.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "borderBottom": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The bottom border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "borderLeft": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The left border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "borderRight": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The right border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "borderTop": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The top border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "columnSpan": 42, # The column span of the cell. This property is read-only.
                      "contentAlignment": "A String", # The alignment of the content in the table cell. The default alignment matches the alignment for newly created table cells in the Docs editor.
                      "paddingBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "paddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "paddingRight": { # A magnitude in a single direction in the specified units. # The right padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "rowSpan": 42, # The row span of the cell. This property is read-only.
                    },
                  },
                ],
                "tableRowStyle": { # Styles that apply to a table row. # The style of the table row.
                  "minRowHeight": { # A magnitude in a single direction in the specified units. # The minimum height of the row. The row will be rendered in the Docs editor at a height equal to or greater than this value in order to show all the content in the row's cells.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "preventOverflow": True or False, # Whether the row cannot overflow across page or column boundaries.
                  "tableHeader": True or False, # Whether the row is a table header.
                },
              },
            ],
            "tableStyle": { # Styles that apply to a table. # The style of the table.
              "tableColumnProperties": [ # The properties of each column. Note that in Docs, tables contain rows and rows contain cells, similar to HTML. So the properties for a row can be found on the row's table_row_style.
                { # The properties of a column in a table.
                  "width": { # A magnitude in a single direction in the specified units. # The width of the column. Set when the column's `width_type` is FIXED_WIDTH.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "widthType": "A String", # The width type of the column.
                },
              ],
            },
          },
          "tableOfContents": { # A StructuralElement representing a table of contents. # A table of contents type of structural element.
            "content": [ # The content of the table of contents.
              # Object with schema name: StructuralElement
            ],
            "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
              "A String",
            ],
            "suggestedInsertionIds": [ # The suggested insertion IDs. A TableOfContents may have multiple insertion IDs if it is a nested suggested change. If empty, then this is not a suggested insertion.
              "A String",
            ],
          },
        },
      ],
      "headerId": "A String", # The ID of the header.
    },
  },
  "inlineObjects": { # Output only. The inline objects in the document, keyed by object ID.
    "a_key": { # An object that appears inline with text. An InlineObject contains an EmbeddedObject such as an image.
      "inlineObjectProperties": { # Properties of an InlineObject. # The properties of this inline object.
        "embeddedObject": { # An embedded object in the document. # The embedded object of this inline object.
          "description": "A String", # The description of the embedded object. The `title` and `description` are both combined to display alt text.
          "embeddedDrawingProperties": { # The properties of an embedded drawing and used to differentiate the object type. An embedded drawing is one that's created and edited within a document. Note that extensive details are not supported. # The properties of an embedded drawing.
          },
          "embeddedObjectBorder": { # A border around an EmbeddedObject. # The border of the embedded object.
            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
            "dashStyle": "A String", # The dash style of the border.
            "propertyState": "A String", # The property state of the border property.
            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "imageProperties": { # The properties of an image. # The properties of an image.
            "angle": 3.14, # The clockwise rotation angle of the image, in radians.
            "brightness": 3.14, # The brightness effect of the image. The value should be in the interval [-1.0, 1.0], where 0 means no effect.
            "contentUri": "A String", # A URI to the image with a default lifetime of 30 minutes. This URI is tagged with the account of the requester. Anyone with the URI effectively accesses the image as the original requester. Access to the image may be lost if the document's sharing settings change.
            "contrast": 3.14, # The contrast effect of the image. The value should be in the interval [-1.0, 1.0], where 0 means no effect.
            "cropProperties": { # The crop properties of an image. The crop rectangle is represented using fractional offsets from the original content's 4 edges. - If the offset is in the interval (0, 1), the corresponding edge of crop rectangle is positioned inside of the image's original bounding rectangle. - If the offset is negative or greater than 1, the corresponding edge of crop rectangle is positioned outside of the image's original bounding rectangle. - If all offsets and rotation angle are 0, the image is not cropped. # The crop properties of the image.
              "angle": 3.14, # The clockwise rotation angle of the crop rectangle around its center, in radians. Rotation is applied after the offsets.
              "offsetBottom": 3.14, # The offset specifies how far inwards the bottom edge of the crop rectangle is from the bottom edge of the original content as a fraction of the original content's height.
              "offsetLeft": 3.14, # The offset specifies how far inwards the left edge of the crop rectangle is from the left edge of the original content as a fraction of the original content's width.
              "offsetRight": 3.14, # The offset specifies how far inwards the right edge of the crop rectangle is from the right edge of the original content as a fraction of the original content's width.
              "offsetTop": 3.14, # The offset specifies how far inwards the top edge of the crop rectangle is from the top edge of the original content as a fraction of the original content's height.
            },
            "sourceUri": "A String", # The source URI is the URI used to insert the image. The source URI can be empty.
            "transparency": 3.14, # The transparency effect of the image. The value should be in the interval [0.0, 1.0], where 0 means no effect and 1 means transparent.
          },
          "linkedContentReference": { # A reference to the external linked source content. # A reference to the external linked source content. For example, it contains a reference to the source Google Sheets chart when the embedded object is a linked chart. If unset, then the embedded object is not linked.
            "sheetsChartReference": { # A reference to a linked chart embedded from Google Sheets. # A reference to the linked chart.
              "chartId": 42, # The ID of the specific chart in the Google Sheets spreadsheet that's embedded.
              "spreadsheetId": "A String", # The ID of the Google Sheets spreadsheet that contains the source chart.
            },
          },
          "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom margin of the embedded object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "marginLeft": { # A magnitude in a single direction in the specified units. # The left margin of the embedded object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "marginRight": { # A magnitude in a single direction in the specified units. # The right margin of the embedded object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "marginTop": { # A magnitude in a single direction in the specified units. # The top margin of the embedded object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "size": { # A width and height. # The visible size of the image after cropping.
            "height": { # A magnitude in a single direction in the specified units. # The height of the object.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "width": { # A magnitude in a single direction in the specified units. # The width of the object.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "title": "A String", # The title of the embedded object. The `title` and `description` are both combined to display alt text.
        },
      },
      "objectId": "A String", # The ID of this inline object. Can be used to update an object’s properties.
      "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
        "A String",
      ],
      "suggestedInlineObjectPropertiesChanges": { # The suggested changes to the inline object properties, keyed by suggestion ID.
        "a_key": { # A suggested change to InlineObjectProperties.
          "inlineObjectProperties": { # Properties of an InlineObject. # An InlineObjectProperties that only includes the changes made in this suggestion. This can be used along with the inline_object_properties_suggestion_state to see which fields have changed and their new values.
            "embeddedObject": { # An embedded object in the document. # The embedded object of this inline object.
              "description": "A String", # The description of the embedded object. The `title` and `description` are both combined to display alt text.
              "embeddedDrawingProperties": { # The properties of an embedded drawing and used to differentiate the object type. An embedded drawing is one that's created and edited within a document. Note that extensive details are not supported. # The properties of an embedded drawing.
              },
              "embeddedObjectBorder": { # A border around an EmbeddedObject. # The border of the embedded object.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "propertyState": "A String", # The property state of the border property.
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "imageProperties": { # The properties of an image. # The properties of an image.
                "angle": 3.14, # The clockwise rotation angle of the image, in radians.
                "brightness": 3.14, # The brightness effect of the image. The value should be in the interval [-1.0, 1.0], where 0 means no effect.
                "contentUri": "A String", # A URI to the image with a default lifetime of 30 minutes. This URI is tagged with the account of the requester. Anyone with the URI effectively accesses the image as the original requester. Access to the image may be lost if the document's sharing settings change.
                "contrast": 3.14, # The contrast effect of the image. The value should be in the interval [-1.0, 1.0], where 0 means no effect.
                "cropProperties": { # The crop properties of an image. The crop rectangle is represented using fractional offsets from the original content's 4 edges. - If the offset is in the interval (0, 1), the corresponding edge of crop rectangle is positioned inside of the image's original bounding rectangle. - If the offset is negative or greater than 1, the corresponding edge of crop rectangle is positioned outside of the image's original bounding rectangle. - If all offsets and rotation angle are 0, the image is not cropped. # The crop properties of the image.
                  "angle": 3.14, # The clockwise rotation angle of the crop rectangle around its center, in radians. Rotation is applied after the offsets.
                  "offsetBottom": 3.14, # The offset specifies how far inwards the bottom edge of the crop rectangle is from the bottom edge of the original content as a fraction of the original content's height.
                  "offsetLeft": 3.14, # The offset specifies how far inwards the left edge of the crop rectangle is from the left edge of the original content as a fraction of the original content's width.
                  "offsetRight": 3.14, # The offset specifies how far inwards the right edge of the crop rectangle is from the right edge of the original content as a fraction of the original content's width.
                  "offsetTop": 3.14, # The offset specifies how far inwards the top edge of the crop rectangle is from the top edge of the original content as a fraction of the original content's height.
                },
                "sourceUri": "A String", # The source URI is the URI used to insert the image. The source URI can be empty.
                "transparency": 3.14, # The transparency effect of the image. The value should be in the interval [0.0, 1.0], where 0 means no effect and 1 means transparent.
              },
              "linkedContentReference": { # A reference to the external linked source content. # A reference to the external linked source content. For example, it contains a reference to the source Google Sheets chart when the embedded object is a linked chart. If unset, then the embedded object is not linked.
                "sheetsChartReference": { # A reference to a linked chart embedded from Google Sheets. # A reference to the linked chart.
                  "chartId": 42, # The ID of the specific chart in the Google Sheets spreadsheet that's embedded.
                  "spreadsheetId": "A String", # The ID of the Google Sheets spreadsheet that contains the source chart.
                },
              },
              "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom margin of the embedded object.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginLeft": { # A magnitude in a single direction in the specified units. # The left margin of the embedded object.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginRight": { # A magnitude in a single direction in the specified units. # The right margin of the embedded object.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginTop": { # A magnitude in a single direction in the specified units. # The top margin of the embedded object.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "size": { # A width and height. # The visible size of the image after cropping.
                "height": { # A magnitude in a single direction in the specified units. # The height of the object.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the object.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "title": "A String", # The title of the embedded object. The `title` and `description` are both combined to display alt text.
            },
          },
          "inlineObjectPropertiesSuggestionState": { # A mask that indicates which of the fields on the base InlineObjectProperties have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base InlineObjectProperties have been changed in this suggestion.
            "embeddedObjectSuggestionState": { # A mask that indicates which of the fields on the base EmbeddedObject have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in embedded_object have been changed in this suggestion.
              "descriptionSuggested": True or False, # Indicates if there was a suggested change to description.
              "embeddedDrawingPropertiesSuggestionState": { # A mask that indicates which of the fields on the base EmbeddedDrawingProperties have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in embedded_drawing_properties have been changed in this suggestion.
              },
              "embeddedObjectBorderSuggestionState": { # A mask that indicates which of the fields on the base EmbeddedObjectBorder have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in embedded_object_border have been changed in this suggestion.
                "colorSuggested": True or False, # Indicates if there was a suggested change to color.
                "dashStyleSuggested": True or False, # Indicates if there was a suggested change to dash_style.
                "propertyStateSuggested": True or False, # Indicates if there was a suggested change to property_state.
                "widthSuggested": True or False, # Indicates if there was a suggested change to width.
              },
              "imagePropertiesSuggestionState": { # A mask that indicates which of the fields on the base ImageProperties have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in image_properties have been changed in this suggestion.
                "angleSuggested": True or False, # Indicates if there was a suggested change to angle.
                "brightnessSuggested": True or False, # Indicates if there was a suggested change to brightness.
                "contentUriSuggested": True or False, # Indicates if there was a suggested change to content_uri.
                "contrastSuggested": True or False, # Indicates if there was a suggested change to contrast.
                "cropPropertiesSuggestionState": { # A mask that indicates which of the fields on the base CropProperties have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in crop_properties have been changed in this suggestion.
                  "angleSuggested": True or False, # Indicates if there was a suggested change to angle.
                  "offsetBottomSuggested": True or False, # Indicates if there was a suggested change to offset_bottom.
                  "offsetLeftSuggested": True or False, # Indicates if there was a suggested change to offset_left.
                  "offsetRightSuggested": True or False, # Indicates if there was a suggested change to offset_right.
                  "offsetTopSuggested": True or False, # Indicates if there was a suggested change to offset_top.
                },
                "sourceUriSuggested": True or False, # Indicates if there was a suggested change to source_uri.
                "transparencySuggested": True or False, # Indicates if there was a suggested change to transparency.
              },
              "linkedContentReferenceSuggestionState": { # A mask that indicates which of the fields on the base LinkedContentReference have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in linked_content_reference have been changed in this suggestion.
                "sheetsChartReferenceSuggestionState": { # A mask that indicates which of the fields on the base SheetsChartReference have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in sheets_chart_reference have been changed in this suggestion.
                  "chartIdSuggested": True or False, # Indicates if there was a suggested change to chart_id.
                  "spreadsheetIdSuggested": True or False, # Indicates if there was a suggested change to spreadsheet_id.
                },
              },
              "marginBottomSuggested": True or False, # Indicates if there was a suggested change to margin_bottom.
              "marginLeftSuggested": True or False, # Indicates if there was a suggested change to margin_left.
              "marginRightSuggested": True or False, # Indicates if there was a suggested change to margin_right.
              "marginTopSuggested": True or False, # Indicates if there was a suggested change to margin_top.
              "sizeSuggestionState": { # A mask that indicates which of the fields on the base Size have been changed in this suggestion. For any field set to true, the Size has a new suggested value. # A mask that indicates which of the fields in size have been changed in this suggestion.
                "heightSuggested": True or False, # Indicates if there was a suggested change to height.
                "widthSuggested": True or False, # Indicates if there was a suggested change to width.
              },
              "titleSuggested": True or False, # Indicates if there was a suggested change to title.
            },
          },
        },
      },
      "suggestedInsertionId": "A String", # The suggested insertion ID. If empty, then this is not a suggested insertion.
    },
  },
  "lists": { # Output only. The lists in the document, keyed by list ID.
    "a_key": { # A List represents the list attributes for a group of paragraphs that all belong to the same list. A paragraph that's part of a list has a reference to the list's ID in its bullet.
      "listProperties": { # The properties of a list that describe the look and feel of bullets belonging to paragraphs associated with a list. # The properties of the list.
        "nestingLevels": [ # Describes the properties of the bullets at the associated level. A list has at most 9 levels of nesting with nesting level 0 corresponding to the top-most level and nesting level 8 corresponding to the most nested level. The nesting levels are returned in ascending order with the least nested returned first.
          { # Contains properties describing the look and feel of a list bullet at a given level of nesting.
            "bulletAlignment": "A String", # The alignment of the bullet within the space allotted for rendering the bullet.
            "glyphFormat": "A String", # The format string used by bullets at this level of nesting. The glyph format contains one or more placeholders, and these placeholders are replaced with the appropriate values depending on the glyph_type or glyph_symbol. The placeholders follow the pattern `%[nesting_level]`. Furthermore, placeholders can have prefixes and suffixes. Thus, the glyph format follows the pattern `%[nesting_level]`. Note that the prefix and suffix are optional and can be arbitrary strings. For example, the glyph format `%0.` indicates that the rendered glyph will replace the placeholder with the corresponding glyph for nesting level 0 followed by a period as the suffix. So a list with a glyph type of UPPER_ALPHA and glyph format `%0.` at nesting level 0 will result in a list with rendered glyphs `A.` `B.` `C.` The glyph format can contain placeholders for the current nesting level as well as placeholders for parent nesting levels. For example, a list can have a glyph format of `%0.` at nesting level 0 and a glyph format of `%0.%1.` at nesting level 1. Assuming both nesting levels have DECIMAL glyph types, this would result in a list with rendered glyphs `1.` `2.` ` 2.1.` ` 2.2.` `3.` For nesting levels that are ordered, the string that replaces a placeholder in the glyph format for a particular paragraph depends on the paragraph's order within the list.
            "glyphSymbol": "A String", # A custom glyph symbol used by bullets when paragraphs at this level of nesting are unordered. The glyph symbol replaces placeholders within the glyph_format. For example, if the glyph_symbol is the solid circle corresponding to Unicode U+25cf code point and the glyph_format is `%0`, the rendered glyph would be the solid circle.
            "glyphType": "A String", # The type of glyph used by bullets when paragraphs at this level of nesting are ordered. The glyph type determines the type of glyph used to replace placeholders within the glyph_format when paragraphs at this level of nesting are ordered. For example, if the nesting level is 0, the glyph_format is `%0.` and the glyph type is DECIMAL, then the rendered glyph would replace the placeholder `%0` in the glyph format with a number corresponding to list item's order within the list.
            "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of paragraphs at this level of nesting.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for paragraphs at this level of nesting. Applied to the side that corresponds to the start of the text, based on the paragraph's content direction.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "startNumber": 42, # The number of the first list item at this nesting level. A value of 0 is treated as a value of 1 for lettered lists and Roman numeral lists. For values of both 0 and 1, lettered and Roman numeral lists will begin at `a` and `i` respectively. This value is ignored for nesting levels with unordered glyphs.
            "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of bullets at this level of nesting.
              "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
              "bold": True or False, # Whether or not the text is rendered as bold.
              "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "italic": True or False, # Whether or not the text is italicized.
              "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                "bookmarkId": "A String", # The ID of a bookmark in this document.
                "headingId": "A String", # The ID of a heading in this document.
                "url": "A String", # An external URL.
              },
              "smallCaps": True or False, # Whether or not the text is in small capital letters.
              "strikethrough": True or False, # Whether or not the text is struck through.
              "underline": True or False, # Whether or not the text is underlined.
              "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
              },
            },
          },
        ],
      },
      "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this list.
        "A String",
      ],
      "suggestedInsertionId": "A String", # The suggested insertion ID. If empty, then this is not a suggested insertion.
      "suggestedListPropertiesChanges": { # The suggested changes to the list properties, keyed by suggestion ID.
        "a_key": { # A suggested change to ListProperties.
          "listProperties": { # The properties of a list that describe the look and feel of bullets belonging to paragraphs associated with a list. # A ListProperties that only includes the changes made in this suggestion. This can be used along with the list_properties_suggestion_state to see which fields have changed and their new values.
            "nestingLevels": [ # Describes the properties of the bullets at the associated level. A list has at most 9 levels of nesting with nesting level 0 corresponding to the top-most level and nesting level 8 corresponding to the most nested level. The nesting levels are returned in ascending order with the least nested returned first.
              { # Contains properties describing the look and feel of a list bullet at a given level of nesting.
                "bulletAlignment": "A String", # The alignment of the bullet within the space allotted for rendering the bullet.
                "glyphFormat": "A String", # The format string used by bullets at this level of nesting. The glyph format contains one or more placeholders, and these placeholders are replaced with the appropriate values depending on the glyph_type or glyph_symbol. The placeholders follow the pattern `%[nesting_level]`. Furthermore, placeholders can have prefixes and suffixes. Thus, the glyph format follows the pattern `%[nesting_level]`. Note that the prefix and suffix are optional and can be arbitrary strings. For example, the glyph format `%0.` indicates that the rendered glyph will replace the placeholder with the corresponding glyph for nesting level 0 followed by a period as the suffix. So a list with a glyph type of UPPER_ALPHA and glyph format `%0.` at nesting level 0 will result in a list with rendered glyphs `A.` `B.` `C.` The glyph format can contain placeholders for the current nesting level as well as placeholders for parent nesting levels. For example, a list can have a glyph format of `%0.` at nesting level 0 and a glyph format of `%0.%1.` at nesting level 1. Assuming both nesting levels have DECIMAL glyph types, this would result in a list with rendered glyphs `1.` `2.` ` 2.1.` ` 2.2.` `3.` For nesting levels that are ordered, the string that replaces a placeholder in the glyph format for a particular paragraph depends on the paragraph's order within the list.
                "glyphSymbol": "A String", # A custom glyph symbol used by bullets when paragraphs at this level of nesting are unordered. The glyph symbol replaces placeholders within the glyph_format. For example, if the glyph_symbol is the solid circle corresponding to Unicode U+25cf code point and the glyph_format is `%0`, the rendered glyph would be the solid circle.
                "glyphType": "A String", # The type of glyph used by bullets when paragraphs at this level of nesting are ordered. The glyph type determines the type of glyph used to replace placeholders within the glyph_format when paragraphs at this level of nesting are ordered. For example, if the nesting level is 0, the glyph_format is `%0.` and the glyph type is DECIMAL, then the rendered glyph would replace the placeholder `%0` in the glyph format with a number corresponding to list item's order within the list.
                "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of paragraphs at this level of nesting.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for paragraphs at this level of nesting. Applied to the side that corresponds to the start of the text, based on the paragraph's content direction.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "startNumber": 42, # The number of the first list item at this nesting level. A value of 0 is treated as a value of 1 for lettered lists and Roman numeral lists. For values of both 0 and 1, lettered and Roman numeral lists will begin at `a` and `i` respectively. This value is ignored for nesting levels with unordered glyphs.
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of bullets at this level of nesting.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
              },
            ],
          },
          "listPropertiesSuggestionState": { # A mask that indicates which of the fields on the base ListProperties have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base ListProperties have been changed in this suggestion.
            "nestingLevelsSuggestionStates": [ # A mask that indicates which of the fields on the corresponding NestingLevel in nesting_levels have been changed in this suggestion. The nesting level suggestion states are returned in ascending order of the nesting level with the least nested returned first.
              { # A mask that indicates which of the fields on the base NestingLevel have been changed in this suggestion. For any field set to true, there's a new suggested value.
                "bulletAlignmentSuggested": True or False, # Indicates if there was a suggested change to bullet_alignment.
                "glyphFormatSuggested": True or False, # Indicates if there was a suggested change to glyph_format.
                "glyphSymbolSuggested": True or False, # Indicates if there was a suggested change to glyph_symbol.
                "glyphTypeSuggested": True or False, # Indicates if there was a suggested change to glyph_type.
                "indentFirstLineSuggested": True or False, # Indicates if there was a suggested change to indent_first_line.
                "indentStartSuggested": True or False, # Indicates if there was a suggested change to indent_start.
                "startNumberSuggested": True or False, # Indicates if there was a suggested change to start_number.
                "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in text style have been changed in this suggestion.
                  "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                  "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                  "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                  "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                  "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                  "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                  "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                  "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                  "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                  "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                  "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                },
              },
            ],
          },
        },
      },
    },
  },
  "namedRanges": { # Output only. The named ranges in the document, keyed by name.
    "a_key": { # A collection of all the NamedRanges in the document that share a given name.
      "name": "A String", # The name that all the named ranges share.
      "namedRanges": [ # The NamedRanges that share the same name.
        { # A collection of Ranges with the same named range ID. Named ranges allow developers to associate parts of a document with an arbitrary user-defined label so their contents can be programmatically read or edited later. A document can contain multiple named ranges with the same name, but every named range has a unique ID. A named range is created with a single Range, and content inserted inside a named range generally expands that range. However, certain document changes can cause the range to be split into multiple ranges. Named ranges are not private. All applications and collaborators that have access to the document can see its named ranges.
          "name": "A String", # The name of the named range.
          "namedRangeId": "A String", # The ID of the named range.
          "ranges": [ # The ranges that belong to this named range.
            { # Specifies a contiguous range of text.
              "endIndex": 42, # The zero-based end index of this range, exclusive, in UTF-16 code units. In all current uses, an end index must be provided. This field is an Int32Value in order to accommodate future use cases with open-ended ranges.
              "segmentId": "A String", # The ID of the header, footer, or footnote that this range is contained in. An empty segment ID signifies the document's body.
              "startIndex": 42, # The zero-based start index of this range, in UTF-16 code units. In all current uses, a start index must be provided. This field is an Int32Value in order to accommodate future use cases with open-ended ranges.
            },
          ],
        },
      ],
    },
  },
  "namedStyles": { # The named styles. Paragraphs in the document can inherit their TextStyle and ParagraphStyle from these named styles. # Output only. The named styles of the document.
    "styles": [ # The named styles. There's an entry for each of the possible named style types.
      { # A named style. Paragraphs in the document can inherit their TextStyle and ParagraphStyle from this named style when they have the same named style type.
        "namedStyleType": "A String", # The type of this named style.
        "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The paragraph style of this named style.
          "alignment": "A String", # The text alignment for this paragraph.
          "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
          "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
            "dashStyle": "A String", # The dash style of the border.
            "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
            "dashStyle": "A String", # The dash style of the border.
            "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
            "dashStyle": "A String", # The dash style of the border.
            "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
            "dashStyle": "A String", # The dash style of the border.
            "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
            "dashStyle": "A String", # The dash style of the border.
            "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
          "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
          "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
          "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
          "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
          "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
          "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
          "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
            "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
          },
          "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "spacingMode": "A String", # The spacing mode for the paragraph.
          "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
            { # A tab stop within a paragraph.
              "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
              "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
            },
          ],
        },
        "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this named style.
          "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
              "rgbColor": { # An RGB color. # The RGB color value.
                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
              },
            },
          },
          "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
          "bold": True or False, # Whether or not the text is rendered as bold.
          "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
              "rgbColor": { # An RGB color. # The RGB color value.
                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
              },
            },
          },
          "italic": True or False, # Whether or not the text is italicized.
          "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
            "bookmarkId": "A String", # The ID of a bookmark in this document.
            "headingId": "A String", # The ID of a heading in this document.
            "url": "A String", # An external URL.
          },
          "smallCaps": True or False, # Whether or not the text is in small capital letters.
          "strikethrough": True or False, # Whether or not the text is struck through.
          "underline": True or False, # Whether or not the text is underlined.
          "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
            "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
            "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
          },
        },
      },
    ],
  },
  "positionedObjects": { # Output only. The positioned objects in the document, keyed by object ID.
    "a_key": { # An object that's tethered to a Paragraph and positioned relative to the beginning of the paragraph. A PositionedObject contains an EmbeddedObject such as an image.
      "objectId": "A String", # The ID of this positioned object.
      "positionedObjectProperties": { # Properties of a PositionedObject. # The properties of this positioned object.
        "embeddedObject": { # An embedded object in the document. # The embedded object of this positioned object.
          "description": "A String", # The description of the embedded object. The `title` and `description` are both combined to display alt text.
          "embeddedDrawingProperties": { # The properties of an embedded drawing and used to differentiate the object type. An embedded drawing is one that's created and edited within a document. Note that extensive details are not supported. # The properties of an embedded drawing.
          },
          "embeddedObjectBorder": { # A border around an EmbeddedObject. # The border of the embedded object.
            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
            "dashStyle": "A String", # The dash style of the border.
            "propertyState": "A String", # The property state of the border property.
            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "imageProperties": { # The properties of an image. # The properties of an image.
            "angle": 3.14, # The clockwise rotation angle of the image, in radians.
            "brightness": 3.14, # The brightness effect of the image. The value should be in the interval [-1.0, 1.0], where 0 means no effect.
            "contentUri": "A String", # A URI to the image with a default lifetime of 30 minutes. This URI is tagged with the account of the requester. Anyone with the URI effectively accesses the image as the original requester. Access to the image may be lost if the document's sharing settings change.
            "contrast": 3.14, # The contrast effect of the image. The value should be in the interval [-1.0, 1.0], where 0 means no effect.
            "cropProperties": { # The crop properties of an image. The crop rectangle is represented using fractional offsets from the original content's 4 edges. - If the offset is in the interval (0, 1), the corresponding edge of crop rectangle is positioned inside of the image's original bounding rectangle. - If the offset is negative or greater than 1, the corresponding edge of crop rectangle is positioned outside of the image's original bounding rectangle. - If all offsets and rotation angle are 0, the image is not cropped. # The crop properties of the image.
              "angle": 3.14, # The clockwise rotation angle of the crop rectangle around its center, in radians. Rotation is applied after the offsets.
              "offsetBottom": 3.14, # The offset specifies how far inwards the bottom edge of the crop rectangle is from the bottom edge of the original content as a fraction of the original content's height.
              "offsetLeft": 3.14, # The offset specifies how far inwards the left edge of the crop rectangle is from the left edge of the original content as a fraction of the original content's width.
              "offsetRight": 3.14, # The offset specifies how far inwards the right edge of the crop rectangle is from the right edge of the original content as a fraction of the original content's width.
              "offsetTop": 3.14, # The offset specifies how far inwards the top edge of the crop rectangle is from the top edge of the original content as a fraction of the original content's height.
            },
            "sourceUri": "A String", # The source URI is the URI used to insert the image. The source URI can be empty.
            "transparency": 3.14, # The transparency effect of the image. The value should be in the interval [0.0, 1.0], where 0 means no effect and 1 means transparent.
          },
          "linkedContentReference": { # A reference to the external linked source content. # A reference to the external linked source content. For example, it contains a reference to the source Google Sheets chart when the embedded object is a linked chart. If unset, then the embedded object is not linked.
            "sheetsChartReference": { # A reference to a linked chart embedded from Google Sheets. # A reference to the linked chart.
              "chartId": 42, # The ID of the specific chart in the Google Sheets spreadsheet that's embedded.
              "spreadsheetId": "A String", # The ID of the Google Sheets spreadsheet that contains the source chart.
            },
          },
          "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom margin of the embedded object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "marginLeft": { # A magnitude in a single direction in the specified units. # The left margin of the embedded object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "marginRight": { # A magnitude in a single direction in the specified units. # The right margin of the embedded object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "marginTop": { # A magnitude in a single direction in the specified units. # The top margin of the embedded object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "size": { # A width and height. # The visible size of the image after cropping.
            "height": { # A magnitude in a single direction in the specified units. # The height of the object.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "width": { # A magnitude in a single direction in the specified units. # The width of the object.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "title": "A String", # The title of the embedded object. The `title` and `description` are both combined to display alt text.
        },
        "positioning": { # The positioning of a PositionedObject. The positioned object is positioned relative to the beginning of the Paragraph it's tethered to. # The positioning of this positioned object relative to the newline of the Paragraph that references this positioned object.
          "layout": "A String", # The layout of this positioned object.
          "leftOffset": { # A magnitude in a single direction in the specified units. # The offset of the left edge of the positioned object relative to the beginning of the Paragraph it's tethered to. The exact positioning of the object can depend on other content in the document and the document's styling.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "topOffset": { # A magnitude in a single direction in the specified units. # The offset of the top edge of the positioned object relative to the beginning of the Paragraph it's tethered to. The exact positioning of the object can depend on other content in the document and the document's styling.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
        },
      },
      "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
        "A String",
      ],
      "suggestedInsertionId": "A String", # The suggested insertion ID. If empty, then this is not a suggested insertion.
      "suggestedPositionedObjectPropertiesChanges": { # The suggested changes to the positioned object properties, keyed by suggestion ID.
        "a_key": { # A suggested change to PositionedObjectProperties.
          "positionedObjectProperties": { # Properties of a PositionedObject. # A PositionedObjectProperties that only includes the changes made in this suggestion. This can be used along with the positioned_object_properties_suggestion_state to see which fields have changed and their new values.
            "embeddedObject": { # An embedded object in the document. # The embedded object of this positioned object.
              "description": "A String", # The description of the embedded object. The `title` and `description` are both combined to display alt text.
              "embeddedDrawingProperties": { # The properties of an embedded drawing and used to differentiate the object type. An embedded drawing is one that's created and edited within a document. Note that extensive details are not supported. # The properties of an embedded drawing.
              },
              "embeddedObjectBorder": { # A border around an EmbeddedObject. # The border of the embedded object.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "propertyState": "A String", # The property state of the border property.
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "imageProperties": { # The properties of an image. # The properties of an image.
                "angle": 3.14, # The clockwise rotation angle of the image, in radians.
                "brightness": 3.14, # The brightness effect of the image. The value should be in the interval [-1.0, 1.0], where 0 means no effect.
                "contentUri": "A String", # A URI to the image with a default lifetime of 30 minutes. This URI is tagged with the account of the requester. Anyone with the URI effectively accesses the image as the original requester. Access to the image may be lost if the document's sharing settings change.
                "contrast": 3.14, # The contrast effect of the image. The value should be in the interval [-1.0, 1.0], where 0 means no effect.
                "cropProperties": { # The crop properties of an image. The crop rectangle is represented using fractional offsets from the original content's 4 edges. - If the offset is in the interval (0, 1), the corresponding edge of crop rectangle is positioned inside of the image's original bounding rectangle. - If the offset is negative or greater than 1, the corresponding edge of crop rectangle is positioned outside of the image's original bounding rectangle. - If all offsets and rotation angle are 0, the image is not cropped. # The crop properties of the image.
                  "angle": 3.14, # The clockwise rotation angle of the crop rectangle around its center, in radians. Rotation is applied after the offsets.
                  "offsetBottom": 3.14, # The offset specifies how far inwards the bottom edge of the crop rectangle is from the bottom edge of the original content as a fraction of the original content's height.
                  "offsetLeft": 3.14, # The offset specifies how far inwards the left edge of the crop rectangle is from the left edge of the original content as a fraction of the original content's width.
                  "offsetRight": 3.14, # The offset specifies how far inwards the right edge of the crop rectangle is from the right edge of the original content as a fraction of the original content's width.
                  "offsetTop": 3.14, # The offset specifies how far inwards the top edge of the crop rectangle is from the top edge of the original content as a fraction of the original content's height.
                },
                "sourceUri": "A String", # The source URI is the URI used to insert the image. The source URI can be empty.
                "transparency": 3.14, # The transparency effect of the image. The value should be in the interval [0.0, 1.0], where 0 means no effect and 1 means transparent.
              },
              "linkedContentReference": { # A reference to the external linked source content. # A reference to the external linked source content. For example, it contains a reference to the source Google Sheets chart when the embedded object is a linked chart. If unset, then the embedded object is not linked.
                "sheetsChartReference": { # A reference to a linked chart embedded from Google Sheets. # A reference to the linked chart.
                  "chartId": 42, # The ID of the specific chart in the Google Sheets spreadsheet that's embedded.
                  "spreadsheetId": "A String", # The ID of the Google Sheets spreadsheet that contains the source chart.
                },
              },
              "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom margin of the embedded object.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginLeft": { # A magnitude in a single direction in the specified units. # The left margin of the embedded object.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginRight": { # A magnitude in a single direction in the specified units. # The right margin of the embedded object.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginTop": { # A magnitude in a single direction in the specified units. # The top margin of the embedded object.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "size": { # A width and height. # The visible size of the image after cropping.
                "height": { # A magnitude in a single direction in the specified units. # The height of the object.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the object.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "title": "A String", # The title of the embedded object. The `title` and `description` are both combined to display alt text.
            },
            "positioning": { # The positioning of a PositionedObject. The positioned object is positioned relative to the beginning of the Paragraph it's tethered to. # The positioning of this positioned object relative to the newline of the Paragraph that references this positioned object.
              "layout": "A String", # The layout of this positioned object.
              "leftOffset": { # A magnitude in a single direction in the specified units. # The offset of the left edge of the positioned object relative to the beginning of the Paragraph it's tethered to. The exact positioning of the object can depend on other content in the document and the document's styling.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "topOffset": { # A magnitude in a single direction in the specified units. # The offset of the top edge of the positioned object relative to the beginning of the Paragraph it's tethered to. The exact positioning of the object can depend on other content in the document and the document's styling.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
            },
          },
          "positionedObjectPropertiesSuggestionState": { # A mask that indicates which of the fields on the base PositionedObjectProperties have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base PositionedObjectProperties have been changed in this suggestion.
            "embeddedObjectSuggestionState": { # A mask that indicates which of the fields on the base EmbeddedObject have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in embedded_object have been changed in this suggestion.
              "descriptionSuggested": True or False, # Indicates if there was a suggested change to description.
              "embeddedDrawingPropertiesSuggestionState": { # A mask that indicates which of the fields on the base EmbeddedDrawingProperties have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in embedded_drawing_properties have been changed in this suggestion.
              },
              "embeddedObjectBorderSuggestionState": { # A mask that indicates which of the fields on the base EmbeddedObjectBorder have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in embedded_object_border have been changed in this suggestion.
                "colorSuggested": True or False, # Indicates if there was a suggested change to color.
                "dashStyleSuggested": True or False, # Indicates if there was a suggested change to dash_style.
                "propertyStateSuggested": True or False, # Indicates if there was a suggested change to property_state.
                "widthSuggested": True or False, # Indicates if there was a suggested change to width.
              },
              "imagePropertiesSuggestionState": { # A mask that indicates which of the fields on the base ImageProperties have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in image_properties have been changed in this suggestion.
                "angleSuggested": True or False, # Indicates if there was a suggested change to angle.
                "brightnessSuggested": True or False, # Indicates if there was a suggested change to brightness.
                "contentUriSuggested": True or False, # Indicates if there was a suggested change to content_uri.
                "contrastSuggested": True or False, # Indicates if there was a suggested change to contrast.
                "cropPropertiesSuggestionState": { # A mask that indicates which of the fields on the base CropProperties have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in crop_properties have been changed in this suggestion.
                  "angleSuggested": True or False, # Indicates if there was a suggested change to angle.
                  "offsetBottomSuggested": True or False, # Indicates if there was a suggested change to offset_bottom.
                  "offsetLeftSuggested": True or False, # Indicates if there was a suggested change to offset_left.
                  "offsetRightSuggested": True or False, # Indicates if there was a suggested change to offset_right.
                  "offsetTopSuggested": True or False, # Indicates if there was a suggested change to offset_top.
                },
                "sourceUriSuggested": True or False, # Indicates if there was a suggested change to source_uri.
                "transparencySuggested": True or False, # Indicates if there was a suggested change to transparency.
              },
              "linkedContentReferenceSuggestionState": { # A mask that indicates which of the fields on the base LinkedContentReference have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in linked_content_reference have been changed in this suggestion.
                "sheetsChartReferenceSuggestionState": { # A mask that indicates which of the fields on the base SheetsChartReference have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in sheets_chart_reference have been changed in this suggestion.
                  "chartIdSuggested": True or False, # Indicates if there was a suggested change to chart_id.
                  "spreadsheetIdSuggested": True or False, # Indicates if there was a suggested change to spreadsheet_id.
                },
              },
              "marginBottomSuggested": True or False, # Indicates if there was a suggested change to margin_bottom.
              "marginLeftSuggested": True or False, # Indicates if there was a suggested change to margin_left.
              "marginRightSuggested": True or False, # Indicates if there was a suggested change to margin_right.
              "marginTopSuggested": True or False, # Indicates if there was a suggested change to margin_top.
              "sizeSuggestionState": { # A mask that indicates which of the fields on the base Size have been changed in this suggestion. For any field set to true, the Size has a new suggested value. # A mask that indicates which of the fields in size have been changed in this suggestion.
                "heightSuggested": True or False, # Indicates if there was a suggested change to height.
                "widthSuggested": True or False, # Indicates if there was a suggested change to width.
              },
              "titleSuggested": True or False, # Indicates if there was a suggested change to title.
            },
            "positioningSuggestionState": { # A mask that indicates which of the fields on the base PositionedObjectPositioning have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in positioning have been changed in this suggestion.
              "layoutSuggested": True or False, # Indicates if there was a suggested change to layout.
              "leftOffsetSuggested": True or False, # Indicates if there was a suggested change to left_offset.
              "topOffsetSuggested": True or False, # Indicates if there was a suggested change to top_offset.
            },
          },
        },
      },
    },
  },
  "revisionId": "A String", # Output only. The revision ID of the document. Can be used in update requests to specify which revision of a document to apply updates to and how the request should behave if the document has been edited since that revision. Only populated if the user has edit access to the document. The revision ID is not a sequential number but an opaque string. The format of the revision ID might change over time. A returned revision ID is only guaranteed to be valid for 24 hours after it has been returned and cannot be shared across users. If the revision ID is unchanged between calls, then the document has not changed. Conversely, a changed ID (for the same document and user) usually means the document has been updated. However, a changed ID can also be due to internal factors such as ID format changes.
  "suggestedDocumentStyleChanges": { # Output only. The suggested changes to the style of the document, keyed by suggestion ID.
    "a_key": { # A suggested change to the DocumentStyle.
      "documentStyle": { # The style of the document. # A DocumentStyle that only includes the changes made in this suggestion. This can be used along with the document_style_suggestion_state to see which fields have changed and their new values.
        "background": { # Represents the background of a document. # The background of the document. Documents cannot have a transparent background color.
          "color": { # A color that can either be fully opaque or fully transparent. # The background color.
            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
              "rgbColor": { # An RGB color. # The RGB color value.
                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
              },
            },
          },
        },
        "defaultFooterId": "A String", # The ID of the default footer. If not set, there's no default footer. This property is read-only.
        "defaultHeaderId": "A String", # The ID of the default header. If not set, there's no default header. This property is read-only.
        "evenPageFooterId": "A String", # The ID of the footer used only for even pages. The value of use_even_page_header_footer determines whether to use the default_footer_id or this value for the footer on even pages. If not set, there's no even page footer. This property is read-only.
        "evenPageHeaderId": "A String", # The ID of the header used only for even pages. The value of use_even_page_header_footer determines whether to use the default_header_id or this value for the header on even pages. If not set, there's no even page header. This property is read-only.
        "firstPageFooterId": "A String", # The ID of the footer used only for the first page. If not set then a unique footer for the first page does not exist. The value of use_first_page_header_footer determines whether to use the default_footer_id or this value for the footer on the first page. If not set, there's no first page footer. This property is read-only.
        "firstPageHeaderId": "A String", # The ID of the header used only for the first page. If not set then a unique header for the first page does not exist. The value of use_first_page_header_footer determines whether to use the default_header_id or this value for the header on the first page. If not set, there's no first page header. This property is read-only.
        "flipPageOrientation": True or False, # Optional. Indicates whether to flip the dimensions of the page_size, which allows changing the page orientation between portrait and landscape.
        "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom page margin. Updating the bottom page margin on the document style clears the bottom page margin on all section styles.
          "magnitude": 3.14, # The magnitude.
          "unit": "A String", # The units for magnitude.
        },
        "marginFooter": { # A magnitude in a single direction in the specified units. # The amount of space between the bottom of the page and the contents of the footer.
          "magnitude": 3.14, # The magnitude.
          "unit": "A String", # The units for magnitude.
        },
        "marginHeader": { # A magnitude in a single direction in the specified units. # The amount of space between the top of the page and the contents of the header.
          "magnitude": 3.14, # The magnitude.
          "unit": "A String", # The units for magnitude.
        },
        "marginLeft": { # A magnitude in a single direction in the specified units. # The left page margin. Updating the left page margin on the document style clears the left page margin on all section styles. It may also cause columns to resize in all sections.
          "magnitude": 3.14, # The magnitude.
          "unit": "A String", # The units for magnitude.
        },
        "marginRight": { # A magnitude in a single direction in the specified units. # The right page margin. Updating the right page margin on the document style clears the right page margin on all section styles. It may also cause columns to resize in all sections.
          "magnitude": 3.14, # The magnitude.
          "unit": "A String", # The units for magnitude.
        },
        "marginTop": { # A magnitude in a single direction in the specified units. # The top page margin. Updating the top page margin on the document style clears the top page margin on all section styles.
          "magnitude": 3.14, # The magnitude.
          "unit": "A String", # The units for magnitude.
        },
        "pageNumberStart": 42, # The page number from which to start counting the number of pages.
        "pageSize": { # A width and height. # The size of a page in the document.
          "height": { # A magnitude in a single direction in the specified units. # The height of the object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "width": { # A magnitude in a single direction in the specified units. # The width of the object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
        },
        "useCustomHeaderFooterMargins": True or False, # Indicates whether DocumentStyle margin_header, SectionStyle margin_header and DocumentStyle margin_footer, SectionStyle margin_footer are respected. When false, the default values in the Docs editor for header and footer margin are used. This property is read-only.
        "useEvenPageHeaderFooter": True or False, # Indicates whether to use the even page header / footer IDs for the even pages.
        "useFirstPageHeaderFooter": True or False, # Indicates whether to use the first page header / footer IDs for the first page.
      },
      "documentStyleSuggestionState": { # A mask that indicates which of the fields on the base DocumentStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base DocumentStyle have been changed in this suggestion.
        "backgroundSuggestionState": { # A mask that indicates which of the fields on the base Background have been changed in this suggestion. For any field set to true, the Backgound has a new suggested value. # A mask that indicates which of the fields in background have been changed in this suggestion.
          "backgroundColorSuggested": True or False, # Indicates whether the current background color has been modified in this suggestion.
        },
        "defaultFooterIdSuggested": True or False, # Indicates if there was a suggested change to default_footer_id.
        "defaultHeaderIdSuggested": True or False, # Indicates if there was a suggested change to default_header_id.
        "evenPageFooterIdSuggested": True or False, # Indicates if there was a suggested change to even_page_footer_id.
        "evenPageHeaderIdSuggested": True or False, # Indicates if there was a suggested change to even_page_header_id.
        "firstPageFooterIdSuggested": True or False, # Indicates if there was a suggested change to first_page_footer_id.
        "firstPageHeaderIdSuggested": True or False, # Indicates if there was a suggested change to first_page_header_id.
        "flipPageOrientationSuggested": True or False, # Optional. Indicates if there was a suggested change to flip_page_orientation.
        "marginBottomSuggested": True or False, # Indicates if there was a suggested change to margin_bottom.
        "marginFooterSuggested": True or False, # Indicates if there was a suggested change to margin_footer.
        "marginHeaderSuggested": True or False, # Indicates if there was a suggested change to margin_header.
        "marginLeftSuggested": True or False, # Indicates if there was a suggested change to margin_left.
        "marginRightSuggested": True or False, # Indicates if there was a suggested change to margin_right.
        "marginTopSuggested": True or False, # Indicates if there was a suggested change to margin_top.
        "pageNumberStartSuggested": True or False, # Indicates if there was a suggested change to page_number_start.
        "pageSizeSuggestionState": { # A mask that indicates which of the fields on the base Size have been changed in this suggestion. For any field set to true, the Size has a new suggested value. # A mask that indicates which of the fields in size have been changed in this suggestion.
          "heightSuggested": True or False, # Indicates if there was a suggested change to height.
          "widthSuggested": True or False, # Indicates if there was a suggested change to width.
        },
        "useCustomHeaderFooterMarginsSuggested": True or False, # Indicates if there was a suggested change to use_custom_header_footer_margins.
        "useEvenPageHeaderFooterSuggested": True or False, # Indicates if there was a suggested change to use_even_page_header_footer.
        "useFirstPageHeaderFooterSuggested": True or False, # Indicates if there was a suggested change to use_first_page_header_footer.
      },
    },
  },
  "suggestedNamedStylesChanges": { # Output only. The suggested changes to the named styles of the document, keyed by suggestion ID.
    "a_key": { # A suggested change to the NamedStyles.
      "namedStyles": { # The named styles. Paragraphs in the document can inherit their TextStyle and ParagraphStyle from these named styles. # A NamedStyles that only includes the changes made in this suggestion. This can be used along with the named_styles_suggestion_state to see which fields have changed and their new values.
        "styles": [ # The named styles. There's an entry for each of the possible named style types.
          { # A named style. Paragraphs in the document can inherit their TextStyle and ParagraphStyle from this named style when they have the same named style type.
            "namedStyleType": "A String", # The type of this named style.
            "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The paragraph style of this named style.
              "alignment": "A String", # The text alignment for this paragraph.
              "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
              "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
              "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
              "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
              "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
              "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
              "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
              "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
              "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
                "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
              },
              "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "spacingMode": "A String", # The spacing mode for the paragraph.
              "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
                { # A tab stop within a paragraph.
                  "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
                  "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
              ],
            },
            "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this named style.
              "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
              "bold": True or False, # Whether or not the text is rendered as bold.
              "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "italic": True or False, # Whether or not the text is italicized.
              "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                "bookmarkId": "A String", # The ID of a bookmark in this document.
                "headingId": "A String", # The ID of a heading in this document.
                "url": "A String", # An external URL.
              },
              "smallCaps": True or False, # Whether or not the text is in small capital letters.
              "strikethrough": True or False, # Whether or not the text is struck through.
              "underline": True or False, # Whether or not the text is underlined.
              "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
              },
            },
          },
        ],
      },
      "namedStylesSuggestionState": { # The suggestion state of a NamedStyles message. # A mask that indicates which of the fields on the base NamedStyles have been changed in this suggestion.
        "stylesSuggestionStates": [ # A mask that indicates which of the fields on the corresponding NamedStyle in styles have been changed in this suggestion. The order of these named style suggestion states matches the order of the corresponding named style within the named styles suggestion.
          { # A suggestion state of a NamedStyle message.
            "namedStyleType": "A String", # The named style type that this suggestion state corresponds to. This field is provided as a convenience for matching the NamedStyleSuggestionState with its corresponding NamedStyle.
            "paragraphStyleSuggestionState": { # A mask that indicates which of the fields on the base ParagraphStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in paragraph style have been changed in this suggestion.
              "alignmentSuggested": True or False, # Indicates if there was a suggested change to alignment.
              "avoidWidowAndOrphanSuggested": True or False, # Indicates if there was a suggested change to avoid_widow_and_orphan.
              "borderBetweenSuggested": True or False, # Indicates if there was a suggested change to border_between.
              "borderBottomSuggested": True or False, # Indicates if there was a suggested change to border_bottom.
              "borderLeftSuggested": True or False, # Indicates if there was a suggested change to border_left.
              "borderRightSuggested": True or False, # Indicates if there was a suggested change to border_right.
              "borderTopSuggested": True or False, # Indicates if there was a suggested change to border_top.
              "directionSuggested": True or False, # Indicates if there was a suggested change to direction.
              "headingIdSuggested": True or False, # Indicates if there was a suggested change to heading_id.
              "indentEndSuggested": True or False, # Indicates if there was a suggested change to indent_end.
              "indentFirstLineSuggested": True or False, # Indicates if there was a suggested change to indent_first_line.
              "indentStartSuggested": True or False, # Indicates if there was a suggested change to indent_start.
              "keepLinesTogetherSuggested": True or False, # Indicates if there was a suggested change to keep_lines_together.
              "keepWithNextSuggested": True or False, # Indicates if there was a suggested change to keep_with_next.
              "lineSpacingSuggested": True or False, # Indicates if there was a suggested change to line_spacing.
              "namedStyleTypeSuggested": True or False, # Indicates if there was a suggested change to named_style_type.
              "pageBreakBeforeSuggested": True or False, # Indicates if there was a suggested change to page_break_before.
              "shadingSuggestionState": { # A mask that indicates which of the fields on the base Shading have been changed in this suggested change. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in shading have been changed in this suggestion.
                "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to the Shading.
              },
              "spaceAboveSuggested": True or False, # Indicates if there was a suggested change to space_above.
              "spaceBelowSuggested": True or False, # Indicates if there was a suggested change to space_below.
              "spacingModeSuggested": True or False, # Indicates if there was a suggested change to spacing_mode.
            },
            "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in text style have been changed in this suggestion.
              "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
              "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
              "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
              "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
              "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
              "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
              "linkSuggested": True or False, # Indicates if there was a suggested change to link.
              "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
              "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
              "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
              "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
            },
          },
        ],
      },
    },
  },
  "suggestionsViewMode": "A String", # Output only. The suggestions view mode applied to the document. Note: When editing a document, changes must be based on a document with SUGGESTIONS_INLINE.
  "title": "A String", # The title of the document.
}
get(documentId, suggestionsViewMode=None, x__xgafv=None)
Gets the latest version of the specified document.

Args:
  documentId: string, The ID of the document to retrieve. (required)
  suggestionsViewMode: string, The suggestions view mode to apply to the document. This allows viewing the document with all suggestions inline, accepted or rejected. If one is not specified, DEFAULT_FOR_CURRENT_ACCESS is used.
    Allowed values
      DEFAULT_FOR_CURRENT_ACCESS - The SuggestionsViewMode applied to the returned document depends on the user's current access level. If the user only has view access, PREVIEW_WITHOUT_SUGGESTIONS is applied. Otherwise, SUGGESTIONS_INLINE is applied. This is the default suggestions view mode.
      SUGGESTIONS_INLINE - The returned document has suggestions inline. Suggested changes will be differentiated from base content within the document. Requests to retrieve a document using this mode will return a 403 error if the user does not have permission to view suggested changes.
      PREVIEW_SUGGESTIONS_ACCEPTED - The returned document is a preview with all suggested changes accepted. Requests to retrieve a document using this mode will return a 403 error if the user does not have permission to view suggested changes.
      PREVIEW_WITHOUT_SUGGESTIONS - The returned document is a preview with all suggested changes rejected if there are any suggestions in the document.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # A Google Docs document.
  "body": { # The document body. The body typically contains the full document contents except for headers, footers, and footnotes. # Output only. The main body of the document.
    "content": [ # The contents of the body. The indexes for the body's content begin at zero.
      { # A StructuralElement describes content that provides structure to the document.
        "endIndex": 42, # The zero-based end index of this structural element, exclusive, in UTF-16 code units.
        "paragraph": { # A StructuralElement representing a paragraph. A paragraph is a range of content that's terminated with a newline character. # A paragraph type of structural element.
          "bullet": { # Describes the bullet of a paragraph. # The bullet for this paragraph. If not present, the paragraph does not belong to a list.
            "listId": "A String", # The ID of the list this paragraph belongs to.
            "nestingLevel": 42, # The nesting level of this paragraph in the list.
            "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The paragraph-specific text style applied to this bullet.
              "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
              "bold": True or False, # Whether or not the text is rendered as bold.
              "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "italic": True or False, # Whether or not the text is italicized.
              "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                "bookmarkId": "A String", # The ID of a bookmark in this document.
                "headingId": "A String", # The ID of a heading in this document.
                "url": "A String", # An external URL.
              },
              "smallCaps": True or False, # Whether or not the text is in small capital letters.
              "strikethrough": True or False, # Whether or not the text is struck through.
              "underline": True or False, # Whether or not the text is underlined.
              "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
              },
            },
          },
          "elements": [ # The content of the paragraph, broken down into its component parts.
            { # A ParagraphElement describes content within a Paragraph.
              "autoText": { # A ParagraphElement representing a spot in the text that's dynamically replaced with content that can change over time, like a page number. # An auto text paragraph element.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. An AutoText may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
                "suggestedTextStyleChanges": { # The suggested text style changes to this AutoText, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TextStyle.
                    "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                      "bold": True or False, # Whether or not the text is rendered as bold.
                      "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "italic": True or False, # Whether or not the text is italicized.
                      "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                        "bookmarkId": "A String", # The ID of a bookmark in this document.
                        "headingId": "A String", # The ID of a heading in this document.
                        "url": "A String", # An external URL.
                      },
                      "smallCaps": True or False, # Whether or not the text is in small capital letters.
                      "strikethrough": True or False, # Whether or not the text is struck through.
                      "underline": True or False, # Whether or not the text is underlined.
                      "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                        "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                        "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                      },
                    },
                    "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                      "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                      "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                      "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                      "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                      "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                      "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                      "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                      "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                      "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                      "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                      "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                    },
                  },
                },
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this AutoText.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
                "type": "A String", # The type of this auto text.
              },
              "columnBreak": { # A ParagraphElement representing a column break. A column break makes the subsequent text start at the top of the next column. # A column break paragraph element.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. A ColumnBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
                "suggestedTextStyleChanges": { # The suggested text style changes to this ColumnBreak, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TextStyle.
                    "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                      "bold": True or False, # Whether or not the text is rendered as bold.
                      "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "italic": True or False, # Whether or not the text is italicized.
                      "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                        "bookmarkId": "A String", # The ID of a bookmark in this document.
                        "headingId": "A String", # The ID of a heading in this document.
                        "url": "A String", # An external URL.
                      },
                      "smallCaps": True or False, # Whether or not the text is in small capital letters.
                      "strikethrough": True or False, # Whether or not the text is struck through.
                      "underline": True or False, # Whether or not the text is underlined.
                      "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                        "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                        "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                      },
                    },
                    "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                      "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                      "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                      "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                      "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                      "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                      "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                      "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                      "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                      "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                      "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                      "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                    },
                  },
                },
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this ColumnBreak. Similar to text content, like text runs and footnote references, the text style of a column break can affect content layout as well as the styling of text inserted next to it.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
              },
              "endIndex": 42, # The zero-base end index of this paragraph element, exclusive, in UTF-16 code units.
              "equation": { # A ParagraphElement representing an equation. # An equation paragraph element.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. An Equation may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
              },
              "footnoteReference": { # A ParagraphElement representing a footnote reference. A footnote reference is the inline content rendered with a number and is used to identify the footnote. # A footnote reference paragraph element.
                "footnoteId": "A String", # The ID of the footnote that contains the content of this footnote reference.
                "footnoteNumber": "A String", # The rendered number of this footnote.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. A FootnoteReference may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
                "suggestedTextStyleChanges": { # The suggested text style changes to this FootnoteReference, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TextStyle.
                    "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                      "bold": True or False, # Whether or not the text is rendered as bold.
                      "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "italic": True or False, # Whether or not the text is italicized.
                      "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                        "bookmarkId": "A String", # The ID of a bookmark in this document.
                        "headingId": "A String", # The ID of a heading in this document.
                        "url": "A String", # An external URL.
                      },
                      "smallCaps": True or False, # Whether or not the text is in small capital letters.
                      "strikethrough": True or False, # Whether or not the text is struck through.
                      "underline": True or False, # Whether or not the text is underlined.
                      "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                        "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                        "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                      },
                    },
                    "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                      "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                      "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                      "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                      "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                      "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                      "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                      "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                      "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                      "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                      "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                      "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                    },
                  },
                },
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this FootnoteReference.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
              },
              "horizontalRule": { # A ParagraphElement representing a horizontal line. # A horizontal rule paragraph element.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. A HorizontalRule may have multiple insertion IDs if it is a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
                "suggestedTextStyleChanges": { # The suggested text style changes to this HorizontalRule, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TextStyle.
                    "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                      "bold": True or False, # Whether or not the text is rendered as bold.
                      "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "italic": True or False, # Whether or not the text is italicized.
                      "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                        "bookmarkId": "A String", # The ID of a bookmark in this document.
                        "headingId": "A String", # The ID of a heading in this document.
                        "url": "A String", # An external URL.
                      },
                      "smallCaps": True or False, # Whether or not the text is in small capital letters.
                      "strikethrough": True or False, # Whether or not the text is struck through.
                      "underline": True or False, # Whether or not the text is underlined.
                      "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                        "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                        "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                      },
                    },
                    "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                      "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                      "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                      "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                      "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                      "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                      "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                      "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                      "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                      "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                      "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                      "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                    },
                  },
                },
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this HorizontalRule. Similar to text content, like text runs and footnote references, the text style of a horizontal rule can affect content layout as well as the styling of text inserted next to it.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
              },
              "inlineObjectElement": { # A ParagraphElement that contains an InlineObject. # An inline object paragraph element.
                "inlineObjectId": "A String", # The ID of the InlineObject this element contains.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. An InlineObjectElement may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
                "suggestedTextStyleChanges": { # The suggested text style changes to this InlineObject, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TextStyle.
                    "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                      "bold": True or False, # Whether or not the text is rendered as bold.
                      "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "italic": True or False, # Whether or not the text is italicized.
                      "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                        "bookmarkId": "A String", # The ID of a bookmark in this document.
                        "headingId": "A String", # The ID of a heading in this document.
                        "url": "A String", # An external URL.
                      },
                      "smallCaps": True or False, # Whether or not the text is in small capital letters.
                      "strikethrough": True or False, # Whether or not the text is struck through.
                      "underline": True or False, # Whether or not the text is underlined.
                      "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                        "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                        "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                      },
                    },
                    "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                      "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                      "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                      "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                      "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                      "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                      "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                      "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                      "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                      "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                      "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                      "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                    },
                  },
                },
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this InlineObjectElement. Similar to text content, like text runs and footnote references, the text style of an inline object element can affect content layout as well as the styling of text inserted next to it.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
              },
              "pageBreak": { # A ParagraphElement representing a page break. A page break makes the subsequent text start at the top of the next page. # A page break paragraph element.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. A PageBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
                "suggestedTextStyleChanges": { # The suggested text style changes to this PageBreak, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TextStyle.
                    "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                      "bold": True or False, # Whether or not the text is rendered as bold.
                      "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "italic": True or False, # Whether or not the text is italicized.
                      "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                        "bookmarkId": "A String", # The ID of a bookmark in this document.
                        "headingId": "A String", # The ID of a heading in this document.
                        "url": "A String", # An external URL.
                      },
                      "smallCaps": True or False, # Whether or not the text is in small capital letters.
                      "strikethrough": True or False, # Whether or not the text is struck through.
                      "underline": True or False, # Whether or not the text is underlined.
                      "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                        "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                        "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                      },
                    },
                    "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                      "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                      "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                      "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                      "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                      "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                      "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                      "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                      "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                      "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                      "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                      "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                    },
                  },
                },
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this PageBreak. Similar to text content, like text runs and footnote references, the text style of a page break can affect content layout as well as the styling of text inserted next to it.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
              },
              "person": { # A person or email address mentioned in a document. These mentions behave as a single, immutable element containing the person's name or email address. # A paragraph element that links to a person or email address.
                "personId": "A String", # Output only. The unique ID of this link.
                "personProperties": { # Properties specific to a linked Person. # Output only. The properties of this Person. This field is always present.
                  "email": "A String", # Output only. The email address linked to this Person. This field is always present.
                  "name": "A String", # Output only. The name of the person if it's displayed in the link text instead of the person's email address.
                },
                "suggestedDeletionIds": [ # IDs for suggestions that remove this person link from the document. A Person might have multiple deletion IDs if, for example, multiple users suggest deleting it. If empty, then this person link isn't suggested for deletion.
                  "A String",
                ],
                "suggestedInsertionIds": [ # IDs for suggestions that insert this person link into the document. A Person might have multiple insertion IDs if it's a nested suggested change (a suggestion within a suggestion made by a different user, for example). If empty, then this person link isn't a suggested insertion.
                  "A String",
                ],
                "suggestedTextStyleChanges": { # The suggested text style changes to this Person, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TextStyle.
                    "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                      "bold": True or False, # Whether or not the text is rendered as bold.
                      "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "italic": True or False, # Whether or not the text is italicized.
                      "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                        "bookmarkId": "A String", # The ID of a bookmark in this document.
                        "headingId": "A String", # The ID of a heading in this document.
                        "url": "A String", # An external URL.
                      },
                      "smallCaps": True or False, # Whether or not the text is in small capital letters.
                      "strikethrough": True or False, # Whether or not the text is struck through.
                      "underline": True or False, # Whether or not the text is underlined.
                      "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                        "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                        "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                      },
                    },
                    "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                      "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                      "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                      "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                      "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                      "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                      "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                      "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                      "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                      "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                      "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                      "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                    },
                  },
                },
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this Person.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
              },
              "richLink": { # A link to a Google resource (such as a file in Drive, a YouTube video, or a Calendar event). # A paragraph element that links to a Google resource (such as a file in Google Drive, a YouTube video, or a Calendar event.)
                "richLinkId": "A String", # Output only. The ID of this link.
                "richLinkProperties": { # Properties specific to a RichLink. # Output only. The properties of this RichLink. This field is always present.
                  "mimeType": "A String", # Output only. The [MIME type](https://developers.google.com/drive/api/v3/mime-types) of the RichLink, if there's one (for example, when it's a file in Drive).
                  "title": "A String", # Output only. The title of the RichLink as displayed in the link. This title matches the title of the linked resource at the time of the insertion or last update of the link. This field is always present.
                  "uri": "A String", # Output only. The URI to the RichLink. This is always present.
                },
                "suggestedDeletionIds": [ # IDs for suggestions that remove this link from the document. A RichLink might have multiple deletion IDs if, for example, multiple users suggest deleting it. If empty, then this person link isn't suggested for deletion.
                  "A String",
                ],
                "suggestedInsertionIds": [ # IDs for suggestions that insert this link into the document. A RichLink might have multiple insertion IDs if it's a nested suggested change (a suggestion within a suggestion made by a different user, for example). If empty, then this person link isn't a suggested insertion.
                  "A String",
                ],
                "suggestedTextStyleChanges": { # The suggested text style changes to this RichLink, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TextStyle.
                    "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                      "bold": True or False, # Whether or not the text is rendered as bold.
                      "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "italic": True or False, # Whether or not the text is italicized.
                      "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                        "bookmarkId": "A String", # The ID of a bookmark in this document.
                        "headingId": "A String", # The ID of a heading in this document.
                        "url": "A String", # An external URL.
                      },
                      "smallCaps": True or False, # Whether or not the text is in small capital letters.
                      "strikethrough": True or False, # Whether or not the text is struck through.
                      "underline": True or False, # Whether or not the text is underlined.
                      "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                        "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                        "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                      },
                    },
                    "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                      "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                      "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                      "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                      "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                      "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                      "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                      "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                      "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                      "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                      "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                      "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                    },
                  },
                },
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this RichLink.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
              },
              "startIndex": 42, # The zero-based start index of this paragraph element, in UTF-16 code units.
              "textRun": { # A ParagraphElement that represents a run of text that all has the same styling. # A text run paragraph element.
                "content": "A String", # The text of this run. Any non-text elements in the run are replaced with the Unicode character U+E907.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. A TextRun may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
                "suggestedTextStyleChanges": { # The suggested text style changes to this run, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TextStyle.
                    "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                      "bold": True or False, # Whether or not the text is rendered as bold.
                      "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "italic": True or False, # Whether or not the text is italicized.
                      "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                        "bookmarkId": "A String", # The ID of a bookmark in this document.
                        "headingId": "A String", # The ID of a heading in this document.
                        "url": "A String", # An external URL.
                      },
                      "smallCaps": True or False, # Whether or not the text is in small capital letters.
                      "strikethrough": True or False, # Whether or not the text is struck through.
                      "underline": True or False, # Whether or not the text is underlined.
                      "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                        "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                        "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                      },
                    },
                    "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                      "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                      "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                      "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                      "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                      "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                      "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                      "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                      "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                      "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                      "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                      "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                    },
                  },
                },
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this run.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
              },
            },
          ],
          "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The style of this paragraph.
            "alignment": "A String", # The text alignment for this paragraph.
            "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
            "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
              "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "dashStyle": "A String", # The dash style of the border.
              "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
            },
            "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
              "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "dashStyle": "A String", # The dash style of the border.
              "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
            },
            "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
              "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "dashStyle": "A String", # The dash style of the border.
              "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
            },
            "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
              "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "dashStyle": "A String", # The dash style of the border.
              "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
            },
            "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
              "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "dashStyle": "A String", # The dash style of the border.
              "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
            },
            "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
            "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
            "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
            "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
            "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
            "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
            "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
            "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
              "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
            },
            "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "spacingMode": "A String", # The spacing mode for the paragraph.
            "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
              { # A tab stop within a paragraph.
                "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
                "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
            ],
          },
          "positionedObjectIds": [ # The IDs of the positioned objects tethered to this paragraph.
            "A String",
          ],
          "suggestedBulletChanges": { # The suggested changes to this paragraph's bullet.
            "a_key": { # A suggested change to a Bullet.
              "bullet": { # Describes the bullet of a paragraph. # A Bullet that only includes the changes made in this suggestion. This can be used along with the bullet_suggestion_state to see which fields have changed and their new values.
                "listId": "A String", # The ID of the list this paragraph belongs to.
                "nestingLevel": 42, # The nesting level of this paragraph in the list.
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The paragraph-specific text style applied to this bullet.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
              },
              "bulletSuggestionState": { # A mask that indicates which of the fields on the base Bullet have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base Bullet have been changed in this suggestion.
                "listIdSuggested": True or False, # Indicates if there was a suggested change to the list_id.
                "nestingLevelSuggested": True or False, # Indicates if there was a suggested change to the nesting_level.
                "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in text style have been changed in this suggestion.
                  "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                  "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                  "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                  "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                  "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                  "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                  "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                  "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                  "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                  "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                  "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                },
              },
            },
          },
          "suggestedParagraphStyleChanges": { # The suggested paragraph style changes to this paragraph, keyed by suggestion ID.
            "a_key": { # A suggested change to a ParagraphStyle.
              "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A ParagraphStyle that only includes the changes made in this suggestion. This can be used along with the paragraph_style_suggestion_state to see which fields have changed and their new values.
                "alignment": "A String", # The text alignment for this paragraph.
                "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
                "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                  "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "dashStyle": "A String", # The dash style of the border.
                  "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
                "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                  "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "dashStyle": "A String", # The dash style of the border.
                  "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
                "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                  "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "dashStyle": "A String", # The dash style of the border.
                  "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
                "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                  "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "dashStyle": "A String", # The dash style of the border.
                  "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
                "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                  "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "dashStyle": "A String", # The dash style of the border.
                  "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
                "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
                "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
                "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
                "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
                "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
                "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
                "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
                "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                },
                "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "spacingMode": "A String", # The spacing mode for the paragraph.
                "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
                  { # A tab stop within a paragraph.
                    "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
                    "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                ],
              },
              "paragraphStyleSuggestionState": { # A mask that indicates which of the fields on the base ParagraphStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base ParagraphStyle have been changed in this suggestion.
                "alignmentSuggested": True or False, # Indicates if there was a suggested change to alignment.
                "avoidWidowAndOrphanSuggested": True or False, # Indicates if there was a suggested change to avoid_widow_and_orphan.
                "borderBetweenSuggested": True or False, # Indicates if there was a suggested change to border_between.
                "borderBottomSuggested": True or False, # Indicates if there was a suggested change to border_bottom.
                "borderLeftSuggested": True or False, # Indicates if there was a suggested change to border_left.
                "borderRightSuggested": True or False, # Indicates if there was a suggested change to border_right.
                "borderTopSuggested": True or False, # Indicates if there was a suggested change to border_top.
                "directionSuggested": True or False, # Indicates if there was a suggested change to direction.
                "headingIdSuggested": True or False, # Indicates if there was a suggested change to heading_id.
                "indentEndSuggested": True or False, # Indicates if there was a suggested change to indent_end.
                "indentFirstLineSuggested": True or False, # Indicates if there was a suggested change to indent_first_line.
                "indentStartSuggested": True or False, # Indicates if there was a suggested change to indent_start.
                "keepLinesTogetherSuggested": True or False, # Indicates if there was a suggested change to keep_lines_together.
                "keepWithNextSuggested": True or False, # Indicates if there was a suggested change to keep_with_next.
                "lineSpacingSuggested": True or False, # Indicates if there was a suggested change to line_spacing.
                "namedStyleTypeSuggested": True or False, # Indicates if there was a suggested change to named_style_type.
                "pageBreakBeforeSuggested": True or False, # Indicates if there was a suggested change to page_break_before.
                "shadingSuggestionState": { # A mask that indicates which of the fields on the base Shading have been changed in this suggested change. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in shading have been changed in this suggestion.
                  "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to the Shading.
                },
                "spaceAboveSuggested": True or False, # Indicates if there was a suggested change to space_above.
                "spaceBelowSuggested": True or False, # Indicates if there was a suggested change to space_below.
                "spacingModeSuggested": True or False, # Indicates if there was a suggested change to spacing_mode.
              },
            },
          },
          "suggestedPositionedObjectIds": { # The IDs of the positioned objects suggested to be attached to this paragraph, keyed by suggestion ID.
            "a_key": { # A collection of object IDs.
              "objectIds": [ # The object IDs.
                "A String",
              ],
            },
          },
        },
        "sectionBreak": { # A StructuralElement representing a section break. A section is a range of content that has the same SectionStyle. A section break represents the start of a new section, and the section style applies to the section after the section break. The document body always begins with a section break. # A section break type of structural element.
          "sectionStyle": { # The styling that applies to a section. # The style of the section after this section break.
            "columnProperties": [ # The section's columns properties. If empty, the section contains one column with the default properties in the Docs editor. A section can be updated to have no more than 3 columns. When updating this property, setting a concrete value is required. Unsetting this property will result in a 400 bad request error.
              { # Properties that apply to a section's column.
                "paddingEnd": { # A magnitude in a single direction in the specified units. # The padding at the end of the column.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # Output only. The width of the column.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
            ],
            "columnSeparatorStyle": "A String", # The style of column separators. This style can be set even when there's one column in the section. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
            "contentDirection": "A String", # The content direction of this section. If unset, the value defaults to LEFT_TO_RIGHT. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
            "defaultFooterId": "A String", # The ID of the default footer. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's default_footer_id. This property is read-only.
            "defaultHeaderId": "A String", # The ID of the default header. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's default_header_id. This property is read-only.
            "evenPageFooterId": "A String", # The ID of the footer used only for even pages. If the value of DocumentStyle's use_even_page_header_footer is true, this value is used for the footers on even pages in the section. If it is false, the footers on even pages use the default_footer_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's even_page_footer_id. This property is read-only.
            "evenPageHeaderId": "A String", # The ID of the header used only for even pages. If the value of DocumentStyle's use_even_page_header_footer is true, this value is used for the headers on even pages in the section. If it is false, the headers on even pages use the default_header_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's even_page_header_id. This property is read-only.
            "firstPageFooterId": "A String", # The ID of the footer used only for the first page of the section. If use_first_page_header_footer is true, this value is used for the footer on the first page of the section. If it's false, the footer on the first page of the section uses the default_footer_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's first_page_footer_id. This property is read-only.
            "firstPageHeaderId": "A String", # The ID of the header used only for the first page of the section. If use_first_page_header_footer is true, this value is used for the header on the first page of the section. If it's false, the header on the first page of the section uses the default_header_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's first_page_header_id. This property is read-only.
            "flipPageOrientation": True or False, # Optional. Indicates whether to flip the dimensions of DocumentStyle's page_size for this section, which allows changing the page orientation between portrait and landscape. If unset, the value inherits from DocumentStyle's flip_page_orientation. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
            "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom page margin of the section. If unset, the value defaults to margin_bottom from DocumentStyle. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "marginFooter": { # A magnitude in a single direction in the specified units. # The footer margin of the section. If unset, the value defaults to margin_footer from DocumentStyle. If updated, use_custom_header_footer_margins is set to true on DocumentStyle. The value of use_custom_header_footer_margins on DocumentStyle indicates if a footer margin is being respected for this section When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "marginHeader": { # A magnitude in a single direction in the specified units. # The header margin of the section. If unset, the value defaults to margin_header from DocumentStyle. If updated, use_custom_header_footer_margins is set to true on DocumentStyle. The value of use_custom_header_footer_margins on DocumentStyle indicates if a header margin is being respected for this section. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "marginLeft": { # A magnitude in a single direction in the specified units. # The left page margin of the section. If unset, the value defaults to margin_left from DocumentStyle. Updating the left margin causes columns in this section to resize. Since the margin affects column width, it's applied before column properties. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "marginRight": { # A magnitude in a single direction in the specified units. # The right page margin of the section. If unset, the value defaults to margin_right from DocumentStyle. Updating the right margin causes columns in this section to resize. Since the margin affects column width, it's applied before column properties. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "marginTop": { # A magnitude in a single direction in the specified units. # The top page margin of the section. If unset, the value defaults to margin_top from DocumentStyle. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "pageNumberStart": 42, # The page number from which to start counting the number of pages for this section. If unset, page numbering continues from the previous section. If the value is unset in the first SectionBreak, refer to DocumentStyle's page_number_start. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
            "sectionType": "A String", # Output only. The type of section.
            "useFirstPageHeaderFooter": True or False, # Indicates whether to use the first page header / footer IDs for the first page of the section. If unset, it inherits from DocumentStyle's use_first_page_header_footer for the first section. If the value is unset for subsequent sectors, it should be interpreted as false. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
          },
          "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
            "A String",
          ],
          "suggestedInsertionIds": [ # The suggested insertion IDs. A SectionBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
            "A String",
          ],
        },
        "startIndex": 42, # The zero-based start index of this structural element, in UTF-16 code units.
        "table": { # A StructuralElement representing a table. # A table type of structural element.
          "columns": 42, # Number of columns in the table. It's possible for a table to be non-rectangular, so some rows may have a different number of cells.
          "rows": 42, # Number of rows in the table.
          "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
            "A String",
          ],
          "suggestedInsertionIds": [ # The suggested insertion IDs. A Table may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
            "A String",
          ],
          "tableRows": [ # The contents and style of each row.
            { # The contents and style of a row in a Table.
              "endIndex": 42, # The zero-based end index of this row, exclusive, in UTF-16 code units.
              "startIndex": 42, # The zero-based start index of this row, in UTF-16 code units.
              "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                "A String",
              ],
              "suggestedInsertionIds": [ # The suggested insertion IDs. A TableRow may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                "A String",
              ],
              "suggestedTableRowStyleChanges": { # The suggested style changes to this row, keyed by suggestion ID.
                "a_key": { # A suggested change to a TableRowStyle.
                  "tableRowStyle": { # Styles that apply to a table row. # A TableRowStyle that only includes the changes made in this suggestion. This can be used along with the table_row_style_suggestion_state to see which fields have changed and their new values.
                    "minRowHeight": { # A magnitude in a single direction in the specified units. # The minimum height of the row. The row will be rendered in the Docs editor at a height equal to or greater than this value in order to show all the content in the row's cells.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "preventOverflow": True or False, # Whether the row cannot overflow across page or column boundaries.
                    "tableHeader": True or False, # Whether the row is a table header.
                  },
                  "tableRowStyleSuggestionState": { # A mask that indicates which of the fields on the base TableRowStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TableRowStyle have been changed in this suggestion.
                    "minRowHeightSuggested": True or False, # Indicates if there was a suggested change to min_row_height.
                  },
                },
              },
              "tableCells": [ # The contents and style of each cell in this row. It's possible for a table to be non-rectangular, so some rows may have a different number of cells than other rows in the same table.
                { # The contents and style of a cell in a Table.
                  "content": [ # The content of the cell.
                    # Object with schema name: StructuralElement
                  ],
                  "endIndex": 42, # The zero-based end index of this cell, exclusive, in UTF-16 code units.
                  "startIndex": 42, # The zero-based start index of this cell, in UTF-16 code units.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A TableCell may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTableCellStyleChanges": { # The suggested changes to the table cell style, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TableCellStyle.
                      "tableCellStyle": { # The style of a TableCell. Inherited table cell styles are represented as unset fields in this message. A table cell style can inherit from the table's style. # A TableCellStyle that only includes the changes made in this suggestion. This can be used along with the table_cell_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the cell.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "borderBottom": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The bottom border of the cell.
                          "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                              "rgbColor": { # An RGB color. # The RGB color value.
                                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                              },
                            },
                          },
                          "dashStyle": "A String", # The dash style of the border.
                          "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                        },
                        "borderLeft": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The left border of the cell.
                          "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                              "rgbColor": { # An RGB color. # The RGB color value.
                                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                              },
                            },
                          },
                          "dashStyle": "A String", # The dash style of the border.
                          "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                        },
                        "borderRight": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The right border of the cell.
                          "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                              "rgbColor": { # An RGB color. # The RGB color value.
                                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                              },
                            },
                          },
                          "dashStyle": "A String", # The dash style of the border.
                          "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                        },
                        "borderTop": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The top border of the cell.
                          "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                              "rgbColor": { # An RGB color. # The RGB color value.
                                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                              },
                            },
                          },
                          "dashStyle": "A String", # The dash style of the border.
                          "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                        },
                        "columnSpan": 42, # The column span of the cell. This property is read-only.
                        "contentAlignment": "A String", # The alignment of the content in the table cell. The default alignment matches the alignment for newly created table cells in the Docs editor.
                        "paddingBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of the cell.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "paddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of the cell.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "paddingRight": { # A magnitude in a single direction in the specified units. # The right padding of the cell.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of the cell.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "rowSpan": 42, # The row span of the cell. This property is read-only.
                      },
                      "tableCellStyleSuggestionState": { # A mask that indicates which of the fields on the base TableCellStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TableCellStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "borderBottomSuggested": True or False, # Indicates if there was a suggested change to border_bottom.
                        "borderLeftSuggested": True or False, # Indicates if there was a suggested change to border_left.
                        "borderRightSuggested": True or False, # Indicates if there was a suggested change to border_right.
                        "borderTopSuggested": True or False, # Indicates if there was a suggested change to border_top.
                        "columnSpanSuggested": True or False, # Indicates if there was a suggested change to column_span.
                        "contentAlignmentSuggested": True or False, # Indicates if there was a suggested change to content_alignment.
                        "paddingBottomSuggested": True or False, # Indicates if there was a suggested change to padding_bottom.
                        "paddingLeftSuggested": True or False, # Indicates if there was a suggested change to padding_left.
                        "paddingRightSuggested": True or False, # Indicates if there was a suggested change to padding_right.
                        "paddingTopSuggested": True or False, # Indicates if there was a suggested change to padding_top.
                        "rowSpanSuggested": True or False, # Indicates if there was a suggested change to row_span.
                      },
                    },
                  },
                  "tableCellStyle": { # The style of a TableCell. Inherited table cell styles are represented as unset fields in this message. A table cell style can inherit from the table's style. # The style of the cell.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the cell.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "borderBottom": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The bottom border of the cell.
                      "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "dashStyle": "A String", # The dash style of the border.
                      "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                    },
                    "borderLeft": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The left border of the cell.
                      "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "dashStyle": "A String", # The dash style of the border.
                      "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                    },
                    "borderRight": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The right border of the cell.
                      "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "dashStyle": "A String", # The dash style of the border.
                      "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                    },
                    "borderTop": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The top border of the cell.
                      "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "dashStyle": "A String", # The dash style of the border.
                      "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                    },
                    "columnSpan": 42, # The column span of the cell. This property is read-only.
                    "contentAlignment": "A String", # The alignment of the content in the table cell. The default alignment matches the alignment for newly created table cells in the Docs editor.
                    "paddingBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of the cell.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "paddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of the cell.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "paddingRight": { # A magnitude in a single direction in the specified units. # The right padding of the cell.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of the cell.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "rowSpan": 42, # The row span of the cell. This property is read-only.
                  },
                },
              ],
              "tableRowStyle": { # Styles that apply to a table row. # The style of the table row.
                "minRowHeight": { # A magnitude in a single direction in the specified units. # The minimum height of the row. The row will be rendered in the Docs editor at a height equal to or greater than this value in order to show all the content in the row's cells.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "preventOverflow": True or False, # Whether the row cannot overflow across page or column boundaries.
                "tableHeader": True or False, # Whether the row is a table header.
              },
            },
          ],
          "tableStyle": { # Styles that apply to a table. # The style of the table.
            "tableColumnProperties": [ # The properties of each column. Note that in Docs, tables contain rows and rows contain cells, similar to HTML. So the properties for a row can be found on the row's table_row_style.
              { # The properties of a column in a table.
                "width": { # A magnitude in a single direction in the specified units. # The width of the column. Set when the column's `width_type` is FIXED_WIDTH.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "widthType": "A String", # The width type of the column.
              },
            ],
          },
        },
        "tableOfContents": { # A StructuralElement representing a table of contents. # A table of contents type of structural element.
          "content": [ # The content of the table of contents.
            # Object with schema name: StructuralElement
          ],
          "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
            "A String",
          ],
          "suggestedInsertionIds": [ # The suggested insertion IDs. A TableOfContents may have multiple insertion IDs if it is a nested suggested change. If empty, then this is not a suggested insertion.
            "A String",
          ],
        },
      },
    ],
  },
  "documentId": "A String", # Output only. The ID of the document.
  "documentStyle": { # The style of the document. # Output only. The style of the document.
    "background": { # Represents the background of a document. # The background of the document. Documents cannot have a transparent background color.
      "color": { # A color that can either be fully opaque or fully transparent. # The background color.
        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
          "rgbColor": { # An RGB color. # The RGB color value.
            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
          },
        },
      },
    },
    "defaultFooterId": "A String", # The ID of the default footer. If not set, there's no default footer. This property is read-only.
    "defaultHeaderId": "A String", # The ID of the default header. If not set, there's no default header. This property is read-only.
    "evenPageFooterId": "A String", # The ID of the footer used only for even pages. The value of use_even_page_header_footer determines whether to use the default_footer_id or this value for the footer on even pages. If not set, there's no even page footer. This property is read-only.
    "evenPageHeaderId": "A String", # The ID of the header used only for even pages. The value of use_even_page_header_footer determines whether to use the default_header_id or this value for the header on even pages. If not set, there's no even page header. This property is read-only.
    "firstPageFooterId": "A String", # The ID of the footer used only for the first page. If not set then a unique footer for the first page does not exist. The value of use_first_page_header_footer determines whether to use the default_footer_id or this value for the footer on the first page. If not set, there's no first page footer. This property is read-only.
    "firstPageHeaderId": "A String", # The ID of the header used only for the first page. If not set then a unique header for the first page does not exist. The value of use_first_page_header_footer determines whether to use the default_header_id or this value for the header on the first page. If not set, there's no first page header. This property is read-only.
    "flipPageOrientation": True or False, # Optional. Indicates whether to flip the dimensions of the page_size, which allows changing the page orientation between portrait and landscape.
    "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom page margin. Updating the bottom page margin on the document style clears the bottom page margin on all section styles.
      "magnitude": 3.14, # The magnitude.
      "unit": "A String", # The units for magnitude.
    },
    "marginFooter": { # A magnitude in a single direction in the specified units. # The amount of space between the bottom of the page and the contents of the footer.
      "magnitude": 3.14, # The magnitude.
      "unit": "A String", # The units for magnitude.
    },
    "marginHeader": { # A magnitude in a single direction in the specified units. # The amount of space between the top of the page and the contents of the header.
      "magnitude": 3.14, # The magnitude.
      "unit": "A String", # The units for magnitude.
    },
    "marginLeft": { # A magnitude in a single direction in the specified units. # The left page margin. Updating the left page margin on the document style clears the left page margin on all section styles. It may also cause columns to resize in all sections.
      "magnitude": 3.14, # The magnitude.
      "unit": "A String", # The units for magnitude.
    },
    "marginRight": { # A magnitude in a single direction in the specified units. # The right page margin. Updating the right page margin on the document style clears the right page margin on all section styles. It may also cause columns to resize in all sections.
      "magnitude": 3.14, # The magnitude.
      "unit": "A String", # The units for magnitude.
    },
    "marginTop": { # A magnitude in a single direction in the specified units. # The top page margin. Updating the top page margin on the document style clears the top page margin on all section styles.
      "magnitude": 3.14, # The magnitude.
      "unit": "A String", # The units for magnitude.
    },
    "pageNumberStart": 42, # The page number from which to start counting the number of pages.
    "pageSize": { # A width and height. # The size of a page in the document.
      "height": { # A magnitude in a single direction in the specified units. # The height of the object.
        "magnitude": 3.14, # The magnitude.
        "unit": "A String", # The units for magnitude.
      },
      "width": { # A magnitude in a single direction in the specified units. # The width of the object.
        "magnitude": 3.14, # The magnitude.
        "unit": "A String", # The units for magnitude.
      },
    },
    "useCustomHeaderFooterMargins": True or False, # Indicates whether DocumentStyle margin_header, SectionStyle margin_header and DocumentStyle margin_footer, SectionStyle margin_footer are respected. When false, the default values in the Docs editor for header and footer margin are used. This property is read-only.
    "useEvenPageHeaderFooter": True or False, # Indicates whether to use the even page header / footer IDs for the even pages.
    "useFirstPageHeaderFooter": True or False, # Indicates whether to use the first page header / footer IDs for the first page.
  },
  "footers": { # Output only. The footers in the document, keyed by footer ID.
    "a_key": { # A document footer.
      "content": [ # The contents of the footer. The indexes for a footer's content begin at zero.
        { # A StructuralElement describes content that provides structure to the document.
          "endIndex": 42, # The zero-based end index of this structural element, exclusive, in UTF-16 code units.
          "paragraph": { # A StructuralElement representing a paragraph. A paragraph is a range of content that's terminated with a newline character. # A paragraph type of structural element.
            "bullet": { # Describes the bullet of a paragraph. # The bullet for this paragraph. If not present, the paragraph does not belong to a list.
              "listId": "A String", # The ID of the list this paragraph belongs to.
              "nestingLevel": 42, # The nesting level of this paragraph in the list.
              "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The paragraph-specific text style applied to this bullet.
                "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                "bold": True or False, # Whether or not the text is rendered as bold.
                "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "italic": True or False, # Whether or not the text is italicized.
                "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                  "bookmarkId": "A String", # The ID of a bookmark in this document.
                  "headingId": "A String", # The ID of a heading in this document.
                  "url": "A String", # An external URL.
                },
                "smallCaps": True or False, # Whether or not the text is in small capital letters.
                "strikethrough": True or False, # Whether or not the text is struck through.
                "underline": True or False, # Whether or not the text is underlined.
                "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                  "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                  "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                },
              },
            },
            "elements": [ # The content of the paragraph, broken down into its component parts.
              { # A ParagraphElement describes content within a Paragraph.
                "autoText": { # A ParagraphElement representing a spot in the text that's dynamically replaced with content that can change over time, like a page number. # An auto text paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. An AutoText may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this AutoText, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this AutoText.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                  "type": "A String", # The type of this auto text.
                },
                "columnBreak": { # A ParagraphElement representing a column break. A column break makes the subsequent text start at the top of the next column. # A column break paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A ColumnBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this ColumnBreak, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this ColumnBreak. Similar to text content, like text runs and footnote references, the text style of a column break can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "endIndex": 42, # The zero-base end index of this paragraph element, exclusive, in UTF-16 code units.
                "equation": { # A ParagraphElement representing an equation. # An equation paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. An Equation may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                },
                "footnoteReference": { # A ParagraphElement representing a footnote reference. A footnote reference is the inline content rendered with a number and is used to identify the footnote. # A footnote reference paragraph element.
                  "footnoteId": "A String", # The ID of the footnote that contains the content of this footnote reference.
                  "footnoteNumber": "A String", # The rendered number of this footnote.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A FootnoteReference may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this FootnoteReference, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this FootnoteReference.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "horizontalRule": { # A ParagraphElement representing a horizontal line. # A horizontal rule paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A HorizontalRule may have multiple insertion IDs if it is a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this HorizontalRule, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this HorizontalRule. Similar to text content, like text runs and footnote references, the text style of a horizontal rule can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "inlineObjectElement": { # A ParagraphElement that contains an InlineObject. # An inline object paragraph element.
                  "inlineObjectId": "A String", # The ID of the InlineObject this element contains.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. An InlineObjectElement may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this InlineObject, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this InlineObjectElement. Similar to text content, like text runs and footnote references, the text style of an inline object element can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "pageBreak": { # A ParagraphElement representing a page break. A page break makes the subsequent text start at the top of the next page. # A page break paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A PageBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this PageBreak, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this PageBreak. Similar to text content, like text runs and footnote references, the text style of a page break can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "person": { # A person or email address mentioned in a document. These mentions behave as a single, immutable element containing the person's name or email address. # A paragraph element that links to a person or email address.
                  "personId": "A String", # Output only. The unique ID of this link.
                  "personProperties": { # Properties specific to a linked Person. # Output only. The properties of this Person. This field is always present.
                    "email": "A String", # Output only. The email address linked to this Person. This field is always present.
                    "name": "A String", # Output only. The name of the person if it's displayed in the link text instead of the person's email address.
                  },
                  "suggestedDeletionIds": [ # IDs for suggestions that remove this person link from the document. A Person might have multiple deletion IDs if, for example, multiple users suggest deleting it. If empty, then this person link isn't suggested for deletion.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # IDs for suggestions that insert this person link into the document. A Person might have multiple insertion IDs if it's a nested suggested change (a suggestion within a suggestion made by a different user, for example). If empty, then this person link isn't a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this Person, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this Person.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "richLink": { # A link to a Google resource (such as a file in Drive, a YouTube video, or a Calendar event). # A paragraph element that links to a Google resource (such as a file in Google Drive, a YouTube video, or a Calendar event.)
                  "richLinkId": "A String", # Output only. The ID of this link.
                  "richLinkProperties": { # Properties specific to a RichLink. # Output only. The properties of this RichLink. This field is always present.
                    "mimeType": "A String", # Output only. The [MIME type](https://developers.google.com/drive/api/v3/mime-types) of the RichLink, if there's one (for example, when it's a file in Drive).
                    "title": "A String", # Output only. The title of the RichLink as displayed in the link. This title matches the title of the linked resource at the time of the insertion or last update of the link. This field is always present.
                    "uri": "A String", # Output only. The URI to the RichLink. This is always present.
                  },
                  "suggestedDeletionIds": [ # IDs for suggestions that remove this link from the document. A RichLink might have multiple deletion IDs if, for example, multiple users suggest deleting it. If empty, then this person link isn't suggested for deletion.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # IDs for suggestions that insert this link into the document. A RichLink might have multiple insertion IDs if it's a nested suggested change (a suggestion within a suggestion made by a different user, for example). If empty, then this person link isn't a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this RichLink, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this RichLink.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "startIndex": 42, # The zero-based start index of this paragraph element, in UTF-16 code units.
                "textRun": { # A ParagraphElement that represents a run of text that all has the same styling. # A text run paragraph element.
                  "content": "A String", # The text of this run. Any non-text elements in the run are replaced with the Unicode character U+E907.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A TextRun may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this run, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this run.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
              },
            ],
            "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The style of this paragraph.
              "alignment": "A String", # The text alignment for this paragraph.
              "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
              "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
              "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
              "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
              "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
              "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
              "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
              "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
              "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
                "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
              },
              "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "spacingMode": "A String", # The spacing mode for the paragraph.
              "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
                { # A tab stop within a paragraph.
                  "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
                  "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
              ],
            },
            "positionedObjectIds": [ # The IDs of the positioned objects tethered to this paragraph.
              "A String",
            ],
            "suggestedBulletChanges": { # The suggested changes to this paragraph's bullet.
              "a_key": { # A suggested change to a Bullet.
                "bullet": { # Describes the bullet of a paragraph. # A Bullet that only includes the changes made in this suggestion. This can be used along with the bullet_suggestion_state to see which fields have changed and their new values.
                  "listId": "A String", # The ID of the list this paragraph belongs to.
                  "nestingLevel": 42, # The nesting level of this paragraph in the list.
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The paragraph-specific text style applied to this bullet.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "bulletSuggestionState": { # A mask that indicates which of the fields on the base Bullet have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base Bullet have been changed in this suggestion.
                  "listIdSuggested": True or False, # Indicates if there was a suggested change to the list_id.
                  "nestingLevelSuggested": True or False, # Indicates if there was a suggested change to the nesting_level.
                  "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in text style have been changed in this suggestion.
                    "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                    "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                    "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                    "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                    "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                    "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                    "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                    "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                    "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                    "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                    "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                  },
                },
              },
            },
            "suggestedParagraphStyleChanges": { # The suggested paragraph style changes to this paragraph, keyed by suggestion ID.
              "a_key": { # A suggested change to a ParagraphStyle.
                "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A ParagraphStyle that only includes the changes made in this suggestion. This can be used along with the paragraph_style_suggestion_state to see which fields have changed and their new values.
                  "alignment": "A String", # The text alignment for this paragraph.
                  "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
                  "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
                  "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
                  "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
                  "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
                  "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
                  "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
                  "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
                  "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                  },
                  "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "spacingMode": "A String", # The spacing mode for the paragraph.
                  "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
                    { # A tab stop within a paragraph.
                      "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
                      "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                    },
                  ],
                },
                "paragraphStyleSuggestionState": { # A mask that indicates which of the fields on the base ParagraphStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base ParagraphStyle have been changed in this suggestion.
                  "alignmentSuggested": True or False, # Indicates if there was a suggested change to alignment.
                  "avoidWidowAndOrphanSuggested": True or False, # Indicates if there was a suggested change to avoid_widow_and_orphan.
                  "borderBetweenSuggested": True or False, # Indicates if there was a suggested change to border_between.
                  "borderBottomSuggested": True or False, # Indicates if there was a suggested change to border_bottom.
                  "borderLeftSuggested": True or False, # Indicates if there was a suggested change to border_left.
                  "borderRightSuggested": True or False, # Indicates if there was a suggested change to border_right.
                  "borderTopSuggested": True or False, # Indicates if there was a suggested change to border_top.
                  "directionSuggested": True or False, # Indicates if there was a suggested change to direction.
                  "headingIdSuggested": True or False, # Indicates if there was a suggested change to heading_id.
                  "indentEndSuggested": True or False, # Indicates if there was a suggested change to indent_end.
                  "indentFirstLineSuggested": True or False, # Indicates if there was a suggested change to indent_first_line.
                  "indentStartSuggested": True or False, # Indicates if there was a suggested change to indent_start.
                  "keepLinesTogetherSuggested": True or False, # Indicates if there was a suggested change to keep_lines_together.
                  "keepWithNextSuggested": True or False, # Indicates if there was a suggested change to keep_with_next.
                  "lineSpacingSuggested": True or False, # Indicates if there was a suggested change to line_spacing.
                  "namedStyleTypeSuggested": True or False, # Indicates if there was a suggested change to named_style_type.
                  "pageBreakBeforeSuggested": True or False, # Indicates if there was a suggested change to page_break_before.
                  "shadingSuggestionState": { # A mask that indicates which of the fields on the base Shading have been changed in this suggested change. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in shading have been changed in this suggestion.
                    "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to the Shading.
                  },
                  "spaceAboveSuggested": True or False, # Indicates if there was a suggested change to space_above.
                  "spaceBelowSuggested": True or False, # Indicates if there was a suggested change to space_below.
                  "spacingModeSuggested": True or False, # Indicates if there was a suggested change to spacing_mode.
                },
              },
            },
            "suggestedPositionedObjectIds": { # The IDs of the positioned objects suggested to be attached to this paragraph, keyed by suggestion ID.
              "a_key": { # A collection of object IDs.
                "objectIds": [ # The object IDs.
                  "A String",
                ],
              },
            },
          },
          "sectionBreak": { # A StructuralElement representing a section break. A section is a range of content that has the same SectionStyle. A section break represents the start of a new section, and the section style applies to the section after the section break. The document body always begins with a section break. # A section break type of structural element.
            "sectionStyle": { # The styling that applies to a section. # The style of the section after this section break.
              "columnProperties": [ # The section's columns properties. If empty, the section contains one column with the default properties in the Docs editor. A section can be updated to have no more than 3 columns. When updating this property, setting a concrete value is required. Unsetting this property will result in a 400 bad request error.
                { # Properties that apply to a section's column.
                  "paddingEnd": { # A magnitude in a single direction in the specified units. # The padding at the end of the column.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "width": { # A magnitude in a single direction in the specified units. # Output only. The width of the column.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
              ],
              "columnSeparatorStyle": "A String", # The style of column separators. This style can be set even when there's one column in the section. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "contentDirection": "A String", # The content direction of this section. If unset, the value defaults to LEFT_TO_RIGHT. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "defaultFooterId": "A String", # The ID of the default footer. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's default_footer_id. This property is read-only.
              "defaultHeaderId": "A String", # The ID of the default header. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's default_header_id. This property is read-only.
              "evenPageFooterId": "A String", # The ID of the footer used only for even pages. If the value of DocumentStyle's use_even_page_header_footer is true, this value is used for the footers on even pages in the section. If it is false, the footers on even pages use the default_footer_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's even_page_footer_id. This property is read-only.
              "evenPageHeaderId": "A String", # The ID of the header used only for even pages. If the value of DocumentStyle's use_even_page_header_footer is true, this value is used for the headers on even pages in the section. If it is false, the headers on even pages use the default_header_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's even_page_header_id. This property is read-only.
              "firstPageFooterId": "A String", # The ID of the footer used only for the first page of the section. If use_first_page_header_footer is true, this value is used for the footer on the first page of the section. If it's false, the footer on the first page of the section uses the default_footer_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's first_page_footer_id. This property is read-only.
              "firstPageHeaderId": "A String", # The ID of the header used only for the first page of the section. If use_first_page_header_footer is true, this value is used for the header on the first page of the section. If it's false, the header on the first page of the section uses the default_header_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's first_page_header_id. This property is read-only.
              "flipPageOrientation": True or False, # Optional. Indicates whether to flip the dimensions of DocumentStyle's page_size for this section, which allows changing the page orientation between portrait and landscape. If unset, the value inherits from DocumentStyle's flip_page_orientation. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom page margin of the section. If unset, the value defaults to margin_bottom from DocumentStyle. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginFooter": { # A magnitude in a single direction in the specified units. # The footer margin of the section. If unset, the value defaults to margin_footer from DocumentStyle. If updated, use_custom_header_footer_margins is set to true on DocumentStyle. The value of use_custom_header_footer_margins on DocumentStyle indicates if a footer margin is being respected for this section When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginHeader": { # A magnitude in a single direction in the specified units. # The header margin of the section. If unset, the value defaults to margin_header from DocumentStyle. If updated, use_custom_header_footer_margins is set to true on DocumentStyle. The value of use_custom_header_footer_margins on DocumentStyle indicates if a header margin is being respected for this section. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginLeft": { # A magnitude in a single direction in the specified units. # The left page margin of the section. If unset, the value defaults to margin_left from DocumentStyle. Updating the left margin causes columns in this section to resize. Since the margin affects column width, it's applied before column properties. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginRight": { # A magnitude in a single direction in the specified units. # The right page margin of the section. If unset, the value defaults to margin_right from DocumentStyle. Updating the right margin causes columns in this section to resize. Since the margin affects column width, it's applied before column properties. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginTop": { # A magnitude in a single direction in the specified units. # The top page margin of the section. If unset, the value defaults to margin_top from DocumentStyle. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "pageNumberStart": 42, # The page number from which to start counting the number of pages for this section. If unset, page numbering continues from the previous section. If the value is unset in the first SectionBreak, refer to DocumentStyle's page_number_start. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "sectionType": "A String", # Output only. The type of section.
              "useFirstPageHeaderFooter": True or False, # Indicates whether to use the first page header / footer IDs for the first page of the section. If unset, it inherits from DocumentStyle's use_first_page_header_footer for the first section. If the value is unset for subsequent sectors, it should be interpreted as false. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
            },
            "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
              "A String",
            ],
            "suggestedInsertionIds": [ # The suggested insertion IDs. A SectionBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
              "A String",
            ],
          },
          "startIndex": 42, # The zero-based start index of this structural element, in UTF-16 code units.
          "table": { # A StructuralElement representing a table. # A table type of structural element.
            "columns": 42, # Number of columns in the table. It's possible for a table to be non-rectangular, so some rows may have a different number of cells.
            "rows": 42, # Number of rows in the table.
            "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
              "A String",
            ],
            "suggestedInsertionIds": [ # The suggested insertion IDs. A Table may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
              "A String",
            ],
            "tableRows": [ # The contents and style of each row.
              { # The contents and style of a row in a Table.
                "endIndex": 42, # The zero-based end index of this row, exclusive, in UTF-16 code units.
                "startIndex": 42, # The zero-based start index of this row, in UTF-16 code units.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. A TableRow may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
                "suggestedTableRowStyleChanges": { # The suggested style changes to this row, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TableRowStyle.
                    "tableRowStyle": { # Styles that apply to a table row. # A TableRowStyle that only includes the changes made in this suggestion. This can be used along with the table_row_style_suggestion_state to see which fields have changed and their new values.
                      "minRowHeight": { # A magnitude in a single direction in the specified units. # The minimum height of the row. The row will be rendered in the Docs editor at a height equal to or greater than this value in order to show all the content in the row's cells.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "preventOverflow": True or False, # Whether the row cannot overflow across page or column boundaries.
                      "tableHeader": True or False, # Whether the row is a table header.
                    },
                    "tableRowStyleSuggestionState": { # A mask that indicates which of the fields on the base TableRowStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TableRowStyle have been changed in this suggestion.
                      "minRowHeightSuggested": True or False, # Indicates if there was a suggested change to min_row_height.
                    },
                  },
                },
                "tableCells": [ # The contents and style of each cell in this row. It's possible for a table to be non-rectangular, so some rows may have a different number of cells than other rows in the same table.
                  { # The contents and style of a cell in a Table.
                    "content": [ # The content of the cell.
                      # Object with schema name: StructuralElement
                    ],
                    "endIndex": 42, # The zero-based end index of this cell, exclusive, in UTF-16 code units.
                    "startIndex": 42, # The zero-based start index of this cell, in UTF-16 code units.
                    "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                      "A String",
                    ],
                    "suggestedInsertionIds": [ # The suggested insertion IDs. A TableCell may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                      "A String",
                    ],
                    "suggestedTableCellStyleChanges": { # The suggested changes to the table cell style, keyed by suggestion ID.
                      "a_key": { # A suggested change to a TableCellStyle.
                        "tableCellStyle": { # The style of a TableCell. Inherited table cell styles are represented as unset fields in this message. A table cell style can inherit from the table's style. # A TableCellStyle that only includes the changes made in this suggestion. This can be used along with the table_cell_style_suggestion_state to see which fields have changed and their new values.
                          "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the cell.
                            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                              "rgbColor": { # An RGB color. # The RGB color value.
                                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                              },
                            },
                          },
                          "borderBottom": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The bottom border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "borderLeft": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The left border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "borderRight": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The right border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "borderTop": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The top border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "columnSpan": 42, # The column span of the cell. This property is read-only.
                          "contentAlignment": "A String", # The alignment of the content in the table cell. The default alignment matches the alignment for newly created table cells in the Docs editor.
                          "paddingBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "paddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "paddingRight": { # A magnitude in a single direction in the specified units. # The right padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "rowSpan": 42, # The row span of the cell. This property is read-only.
                        },
                        "tableCellStyleSuggestionState": { # A mask that indicates which of the fields on the base TableCellStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TableCellStyle have been changed in this suggestion.
                          "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                          "borderBottomSuggested": True or False, # Indicates if there was a suggested change to border_bottom.
                          "borderLeftSuggested": True or False, # Indicates if there was a suggested change to border_left.
                          "borderRightSuggested": True or False, # Indicates if there was a suggested change to border_right.
                          "borderTopSuggested": True or False, # Indicates if there was a suggested change to border_top.
                          "columnSpanSuggested": True or False, # Indicates if there was a suggested change to column_span.
                          "contentAlignmentSuggested": True or False, # Indicates if there was a suggested change to content_alignment.
                          "paddingBottomSuggested": True or False, # Indicates if there was a suggested change to padding_bottom.
                          "paddingLeftSuggested": True or False, # Indicates if there was a suggested change to padding_left.
                          "paddingRightSuggested": True or False, # Indicates if there was a suggested change to padding_right.
                          "paddingTopSuggested": True or False, # Indicates if there was a suggested change to padding_top.
                          "rowSpanSuggested": True or False, # Indicates if there was a suggested change to row_span.
                        },
                      },
                    },
                    "tableCellStyle": { # The style of a TableCell. Inherited table cell styles are represented as unset fields in this message. A table cell style can inherit from the table's style. # The style of the cell.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the cell.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "borderBottom": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The bottom border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "borderLeft": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The left border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "borderRight": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The right border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "borderTop": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The top border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "columnSpan": 42, # The column span of the cell. This property is read-only.
                      "contentAlignment": "A String", # The alignment of the content in the table cell. The default alignment matches the alignment for newly created table cells in the Docs editor.
                      "paddingBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "paddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "paddingRight": { # A magnitude in a single direction in the specified units. # The right padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "rowSpan": 42, # The row span of the cell. This property is read-only.
                    },
                  },
                ],
                "tableRowStyle": { # Styles that apply to a table row. # The style of the table row.
                  "minRowHeight": { # A magnitude in a single direction in the specified units. # The minimum height of the row. The row will be rendered in the Docs editor at a height equal to or greater than this value in order to show all the content in the row's cells.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "preventOverflow": True or False, # Whether the row cannot overflow across page or column boundaries.
                  "tableHeader": True or False, # Whether the row is a table header.
                },
              },
            ],
            "tableStyle": { # Styles that apply to a table. # The style of the table.
              "tableColumnProperties": [ # The properties of each column. Note that in Docs, tables contain rows and rows contain cells, similar to HTML. So the properties for a row can be found on the row's table_row_style.
                { # The properties of a column in a table.
                  "width": { # A magnitude in a single direction in the specified units. # The width of the column. Set when the column's `width_type` is FIXED_WIDTH.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "widthType": "A String", # The width type of the column.
                },
              ],
            },
          },
          "tableOfContents": { # A StructuralElement representing a table of contents. # A table of contents type of structural element.
            "content": [ # The content of the table of contents.
              # Object with schema name: StructuralElement
            ],
            "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
              "A String",
            ],
            "suggestedInsertionIds": [ # The suggested insertion IDs. A TableOfContents may have multiple insertion IDs if it is a nested suggested change. If empty, then this is not a suggested insertion.
              "A String",
            ],
          },
        },
      ],
      "footerId": "A String", # The ID of the footer.
    },
  },
  "footnotes": { # Output only. The footnotes in the document, keyed by footnote ID.
    "a_key": { # A document footnote.
      "content": [ # The contents of the footnote. The indexes for a footnote's content begin at zero.
        { # A StructuralElement describes content that provides structure to the document.
          "endIndex": 42, # The zero-based end index of this structural element, exclusive, in UTF-16 code units.
          "paragraph": { # A StructuralElement representing a paragraph. A paragraph is a range of content that's terminated with a newline character. # A paragraph type of structural element.
            "bullet": { # Describes the bullet of a paragraph. # The bullet for this paragraph. If not present, the paragraph does not belong to a list.
              "listId": "A String", # The ID of the list this paragraph belongs to.
              "nestingLevel": 42, # The nesting level of this paragraph in the list.
              "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The paragraph-specific text style applied to this bullet.
                "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                "bold": True or False, # Whether or not the text is rendered as bold.
                "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "italic": True or False, # Whether or not the text is italicized.
                "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                  "bookmarkId": "A String", # The ID of a bookmark in this document.
                  "headingId": "A String", # The ID of a heading in this document.
                  "url": "A String", # An external URL.
                },
                "smallCaps": True or False, # Whether or not the text is in small capital letters.
                "strikethrough": True or False, # Whether or not the text is struck through.
                "underline": True or False, # Whether or not the text is underlined.
                "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                  "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                  "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                },
              },
            },
            "elements": [ # The content of the paragraph, broken down into its component parts.
              { # A ParagraphElement describes content within a Paragraph.
                "autoText": { # A ParagraphElement representing a spot in the text that's dynamically replaced with content that can change over time, like a page number. # An auto text paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. An AutoText may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this AutoText, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this AutoText.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                  "type": "A String", # The type of this auto text.
                },
                "columnBreak": { # A ParagraphElement representing a column break. A column break makes the subsequent text start at the top of the next column. # A column break paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A ColumnBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this ColumnBreak, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this ColumnBreak. Similar to text content, like text runs and footnote references, the text style of a column break can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "endIndex": 42, # The zero-base end index of this paragraph element, exclusive, in UTF-16 code units.
                "equation": { # A ParagraphElement representing an equation. # An equation paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. An Equation may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                },
                "footnoteReference": { # A ParagraphElement representing a footnote reference. A footnote reference is the inline content rendered with a number and is used to identify the footnote. # A footnote reference paragraph element.
                  "footnoteId": "A String", # The ID of the footnote that contains the content of this footnote reference.
                  "footnoteNumber": "A String", # The rendered number of this footnote.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A FootnoteReference may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this FootnoteReference, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this FootnoteReference.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "horizontalRule": { # A ParagraphElement representing a horizontal line. # A horizontal rule paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A HorizontalRule may have multiple insertion IDs if it is a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this HorizontalRule, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this HorizontalRule. Similar to text content, like text runs and footnote references, the text style of a horizontal rule can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "inlineObjectElement": { # A ParagraphElement that contains an InlineObject. # An inline object paragraph element.
                  "inlineObjectId": "A String", # The ID of the InlineObject this element contains.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. An InlineObjectElement may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this InlineObject, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this InlineObjectElement. Similar to text content, like text runs and footnote references, the text style of an inline object element can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "pageBreak": { # A ParagraphElement representing a page break. A page break makes the subsequent text start at the top of the next page. # A page break paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A PageBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this PageBreak, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this PageBreak. Similar to text content, like text runs and footnote references, the text style of a page break can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "person": { # A person or email address mentioned in a document. These mentions behave as a single, immutable element containing the person's name or email address. # A paragraph element that links to a person or email address.
                  "personId": "A String", # Output only. The unique ID of this link.
                  "personProperties": { # Properties specific to a linked Person. # Output only. The properties of this Person. This field is always present.
                    "email": "A String", # Output only. The email address linked to this Person. This field is always present.
                    "name": "A String", # Output only. The name of the person if it's displayed in the link text instead of the person's email address.
                  },
                  "suggestedDeletionIds": [ # IDs for suggestions that remove this person link from the document. A Person might have multiple deletion IDs if, for example, multiple users suggest deleting it. If empty, then this person link isn't suggested for deletion.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # IDs for suggestions that insert this person link into the document. A Person might have multiple insertion IDs if it's a nested suggested change (a suggestion within a suggestion made by a different user, for example). If empty, then this person link isn't a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this Person, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this Person.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "richLink": { # A link to a Google resource (such as a file in Drive, a YouTube video, or a Calendar event). # A paragraph element that links to a Google resource (such as a file in Google Drive, a YouTube video, or a Calendar event.)
                  "richLinkId": "A String", # Output only. The ID of this link.
                  "richLinkProperties": { # Properties specific to a RichLink. # Output only. The properties of this RichLink. This field is always present.
                    "mimeType": "A String", # Output only. The [MIME type](https://developers.google.com/drive/api/v3/mime-types) of the RichLink, if there's one (for example, when it's a file in Drive).
                    "title": "A String", # Output only. The title of the RichLink as displayed in the link. This title matches the title of the linked resource at the time of the insertion or last update of the link. This field is always present.
                    "uri": "A String", # Output only. The URI to the RichLink. This is always present.
                  },
                  "suggestedDeletionIds": [ # IDs for suggestions that remove this link from the document. A RichLink might have multiple deletion IDs if, for example, multiple users suggest deleting it. If empty, then this person link isn't suggested for deletion.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # IDs for suggestions that insert this link into the document. A RichLink might have multiple insertion IDs if it's a nested suggested change (a suggestion within a suggestion made by a different user, for example). If empty, then this person link isn't a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this RichLink, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this RichLink.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "startIndex": 42, # The zero-based start index of this paragraph element, in UTF-16 code units.
                "textRun": { # A ParagraphElement that represents a run of text that all has the same styling. # A text run paragraph element.
                  "content": "A String", # The text of this run. Any non-text elements in the run are replaced with the Unicode character U+E907.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A TextRun may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this run, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this run.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
              },
            ],
            "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The style of this paragraph.
              "alignment": "A String", # The text alignment for this paragraph.
              "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
              "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
              "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
              "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
              "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
              "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
              "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
              "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
              "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
                "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
              },
              "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "spacingMode": "A String", # The spacing mode for the paragraph.
              "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
                { # A tab stop within a paragraph.
                  "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
                  "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
              ],
            },
            "positionedObjectIds": [ # The IDs of the positioned objects tethered to this paragraph.
              "A String",
            ],
            "suggestedBulletChanges": { # The suggested changes to this paragraph's bullet.
              "a_key": { # A suggested change to a Bullet.
                "bullet": { # Describes the bullet of a paragraph. # A Bullet that only includes the changes made in this suggestion. This can be used along with the bullet_suggestion_state to see which fields have changed and their new values.
                  "listId": "A String", # The ID of the list this paragraph belongs to.
                  "nestingLevel": 42, # The nesting level of this paragraph in the list.
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The paragraph-specific text style applied to this bullet.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "bulletSuggestionState": { # A mask that indicates which of the fields on the base Bullet have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base Bullet have been changed in this suggestion.
                  "listIdSuggested": True or False, # Indicates if there was a suggested change to the list_id.
                  "nestingLevelSuggested": True or False, # Indicates if there was a suggested change to the nesting_level.
                  "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in text style have been changed in this suggestion.
                    "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                    "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                    "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                    "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                    "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                    "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                    "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                    "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                    "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                    "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                    "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                  },
                },
              },
            },
            "suggestedParagraphStyleChanges": { # The suggested paragraph style changes to this paragraph, keyed by suggestion ID.
              "a_key": { # A suggested change to a ParagraphStyle.
                "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A ParagraphStyle that only includes the changes made in this suggestion. This can be used along with the paragraph_style_suggestion_state to see which fields have changed and their new values.
                  "alignment": "A String", # The text alignment for this paragraph.
                  "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
                  "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
                  "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
                  "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
                  "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
                  "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
                  "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
                  "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
                  "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                  },
                  "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "spacingMode": "A String", # The spacing mode for the paragraph.
                  "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
                    { # A tab stop within a paragraph.
                      "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
                      "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                    },
                  ],
                },
                "paragraphStyleSuggestionState": { # A mask that indicates which of the fields on the base ParagraphStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base ParagraphStyle have been changed in this suggestion.
                  "alignmentSuggested": True or False, # Indicates if there was a suggested change to alignment.
                  "avoidWidowAndOrphanSuggested": True or False, # Indicates if there was a suggested change to avoid_widow_and_orphan.
                  "borderBetweenSuggested": True or False, # Indicates if there was a suggested change to border_between.
                  "borderBottomSuggested": True or False, # Indicates if there was a suggested change to border_bottom.
                  "borderLeftSuggested": True or False, # Indicates if there was a suggested change to border_left.
                  "borderRightSuggested": True or False, # Indicates if there was a suggested change to border_right.
                  "borderTopSuggested": True or False, # Indicates if there was a suggested change to border_top.
                  "directionSuggested": True or False, # Indicates if there was a suggested change to direction.
                  "headingIdSuggested": True or False, # Indicates if there was a suggested change to heading_id.
                  "indentEndSuggested": True or False, # Indicates if there was a suggested change to indent_end.
                  "indentFirstLineSuggested": True or False, # Indicates if there was a suggested change to indent_first_line.
                  "indentStartSuggested": True or False, # Indicates if there was a suggested change to indent_start.
                  "keepLinesTogetherSuggested": True or False, # Indicates if there was a suggested change to keep_lines_together.
                  "keepWithNextSuggested": True or False, # Indicates if there was a suggested change to keep_with_next.
                  "lineSpacingSuggested": True or False, # Indicates if there was a suggested change to line_spacing.
                  "namedStyleTypeSuggested": True or False, # Indicates if there was a suggested change to named_style_type.
                  "pageBreakBeforeSuggested": True or False, # Indicates if there was a suggested change to page_break_before.
                  "shadingSuggestionState": { # A mask that indicates which of the fields on the base Shading have been changed in this suggested change. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in shading have been changed in this suggestion.
                    "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to the Shading.
                  },
                  "spaceAboveSuggested": True or False, # Indicates if there was a suggested change to space_above.
                  "spaceBelowSuggested": True or False, # Indicates if there was a suggested change to space_below.
                  "spacingModeSuggested": True or False, # Indicates if there was a suggested change to spacing_mode.
                },
              },
            },
            "suggestedPositionedObjectIds": { # The IDs of the positioned objects suggested to be attached to this paragraph, keyed by suggestion ID.
              "a_key": { # A collection of object IDs.
                "objectIds": [ # The object IDs.
                  "A String",
                ],
              },
            },
          },
          "sectionBreak": { # A StructuralElement representing a section break. A section is a range of content that has the same SectionStyle. A section break represents the start of a new section, and the section style applies to the section after the section break. The document body always begins with a section break. # A section break type of structural element.
            "sectionStyle": { # The styling that applies to a section. # The style of the section after this section break.
              "columnProperties": [ # The section's columns properties. If empty, the section contains one column with the default properties in the Docs editor. A section can be updated to have no more than 3 columns. When updating this property, setting a concrete value is required. Unsetting this property will result in a 400 bad request error.
                { # Properties that apply to a section's column.
                  "paddingEnd": { # A magnitude in a single direction in the specified units. # The padding at the end of the column.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "width": { # A magnitude in a single direction in the specified units. # Output only. The width of the column.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
              ],
              "columnSeparatorStyle": "A String", # The style of column separators. This style can be set even when there's one column in the section. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "contentDirection": "A String", # The content direction of this section. If unset, the value defaults to LEFT_TO_RIGHT. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "defaultFooterId": "A String", # The ID of the default footer. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's default_footer_id. This property is read-only.
              "defaultHeaderId": "A String", # The ID of the default header. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's default_header_id. This property is read-only.
              "evenPageFooterId": "A String", # The ID of the footer used only for even pages. If the value of DocumentStyle's use_even_page_header_footer is true, this value is used for the footers on even pages in the section. If it is false, the footers on even pages use the default_footer_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's even_page_footer_id. This property is read-only.
              "evenPageHeaderId": "A String", # The ID of the header used only for even pages. If the value of DocumentStyle's use_even_page_header_footer is true, this value is used for the headers on even pages in the section. If it is false, the headers on even pages use the default_header_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's even_page_header_id. This property is read-only.
              "firstPageFooterId": "A String", # The ID of the footer used only for the first page of the section. If use_first_page_header_footer is true, this value is used for the footer on the first page of the section. If it's false, the footer on the first page of the section uses the default_footer_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's first_page_footer_id. This property is read-only.
              "firstPageHeaderId": "A String", # The ID of the header used only for the first page of the section. If use_first_page_header_footer is true, this value is used for the header on the first page of the section. If it's false, the header on the first page of the section uses the default_header_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's first_page_header_id. This property is read-only.
              "flipPageOrientation": True or False, # Optional. Indicates whether to flip the dimensions of DocumentStyle's page_size for this section, which allows changing the page orientation between portrait and landscape. If unset, the value inherits from DocumentStyle's flip_page_orientation. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom page margin of the section. If unset, the value defaults to margin_bottom from DocumentStyle. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginFooter": { # A magnitude in a single direction in the specified units. # The footer margin of the section. If unset, the value defaults to margin_footer from DocumentStyle. If updated, use_custom_header_footer_margins is set to true on DocumentStyle. The value of use_custom_header_footer_margins on DocumentStyle indicates if a footer margin is being respected for this section When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginHeader": { # A magnitude in a single direction in the specified units. # The header margin of the section. If unset, the value defaults to margin_header from DocumentStyle. If updated, use_custom_header_footer_margins is set to true on DocumentStyle. The value of use_custom_header_footer_margins on DocumentStyle indicates if a header margin is being respected for this section. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginLeft": { # A magnitude in a single direction in the specified units. # The left page margin of the section. If unset, the value defaults to margin_left from DocumentStyle. Updating the left margin causes columns in this section to resize. Since the margin affects column width, it's applied before column properties. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginRight": { # A magnitude in a single direction in the specified units. # The right page margin of the section. If unset, the value defaults to margin_right from DocumentStyle. Updating the right margin causes columns in this section to resize. Since the margin affects column width, it's applied before column properties. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginTop": { # A magnitude in a single direction in the specified units. # The top page margin of the section. If unset, the value defaults to margin_top from DocumentStyle. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "pageNumberStart": 42, # The page number from which to start counting the number of pages for this section. If unset, page numbering continues from the previous section. If the value is unset in the first SectionBreak, refer to DocumentStyle's page_number_start. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "sectionType": "A String", # Output only. The type of section.
              "useFirstPageHeaderFooter": True or False, # Indicates whether to use the first page header / footer IDs for the first page of the section. If unset, it inherits from DocumentStyle's use_first_page_header_footer for the first section. If the value is unset for subsequent sectors, it should be interpreted as false. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
            },
            "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
              "A String",
            ],
            "suggestedInsertionIds": [ # The suggested insertion IDs. A SectionBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
              "A String",
            ],
          },
          "startIndex": 42, # The zero-based start index of this structural element, in UTF-16 code units.
          "table": { # A StructuralElement representing a table. # A table type of structural element.
            "columns": 42, # Number of columns in the table. It's possible for a table to be non-rectangular, so some rows may have a different number of cells.
            "rows": 42, # Number of rows in the table.
            "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
              "A String",
            ],
            "suggestedInsertionIds": [ # The suggested insertion IDs. A Table may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
              "A String",
            ],
            "tableRows": [ # The contents and style of each row.
              { # The contents and style of a row in a Table.
                "endIndex": 42, # The zero-based end index of this row, exclusive, in UTF-16 code units.
                "startIndex": 42, # The zero-based start index of this row, in UTF-16 code units.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. A TableRow may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
                "suggestedTableRowStyleChanges": { # The suggested style changes to this row, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TableRowStyle.
                    "tableRowStyle": { # Styles that apply to a table row. # A TableRowStyle that only includes the changes made in this suggestion. This can be used along with the table_row_style_suggestion_state to see which fields have changed and their new values.
                      "minRowHeight": { # A magnitude in a single direction in the specified units. # The minimum height of the row. The row will be rendered in the Docs editor at a height equal to or greater than this value in order to show all the content in the row's cells.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "preventOverflow": True or False, # Whether the row cannot overflow across page or column boundaries.
                      "tableHeader": True or False, # Whether the row is a table header.
                    },
                    "tableRowStyleSuggestionState": { # A mask that indicates which of the fields on the base TableRowStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TableRowStyle have been changed in this suggestion.
                      "minRowHeightSuggested": True or False, # Indicates if there was a suggested change to min_row_height.
                    },
                  },
                },
                "tableCells": [ # The contents and style of each cell in this row. It's possible for a table to be non-rectangular, so some rows may have a different number of cells than other rows in the same table.
                  { # The contents and style of a cell in a Table.
                    "content": [ # The content of the cell.
                      # Object with schema name: StructuralElement
                    ],
                    "endIndex": 42, # The zero-based end index of this cell, exclusive, in UTF-16 code units.
                    "startIndex": 42, # The zero-based start index of this cell, in UTF-16 code units.
                    "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                      "A String",
                    ],
                    "suggestedInsertionIds": [ # The suggested insertion IDs. A TableCell may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                      "A String",
                    ],
                    "suggestedTableCellStyleChanges": { # The suggested changes to the table cell style, keyed by suggestion ID.
                      "a_key": { # A suggested change to a TableCellStyle.
                        "tableCellStyle": { # The style of a TableCell. Inherited table cell styles are represented as unset fields in this message. A table cell style can inherit from the table's style. # A TableCellStyle that only includes the changes made in this suggestion. This can be used along with the table_cell_style_suggestion_state to see which fields have changed and their new values.
                          "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the cell.
                            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                              "rgbColor": { # An RGB color. # The RGB color value.
                                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                              },
                            },
                          },
                          "borderBottom": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The bottom border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "borderLeft": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The left border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "borderRight": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The right border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "borderTop": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The top border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "columnSpan": 42, # The column span of the cell. This property is read-only.
                          "contentAlignment": "A String", # The alignment of the content in the table cell. The default alignment matches the alignment for newly created table cells in the Docs editor.
                          "paddingBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "paddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "paddingRight": { # A magnitude in a single direction in the specified units. # The right padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "rowSpan": 42, # The row span of the cell. This property is read-only.
                        },
                        "tableCellStyleSuggestionState": { # A mask that indicates which of the fields on the base TableCellStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TableCellStyle have been changed in this suggestion.
                          "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                          "borderBottomSuggested": True or False, # Indicates if there was a suggested change to border_bottom.
                          "borderLeftSuggested": True or False, # Indicates if there was a suggested change to border_left.
                          "borderRightSuggested": True or False, # Indicates if there was a suggested change to border_right.
                          "borderTopSuggested": True or False, # Indicates if there was a suggested change to border_top.
                          "columnSpanSuggested": True or False, # Indicates if there was a suggested change to column_span.
                          "contentAlignmentSuggested": True or False, # Indicates if there was a suggested change to content_alignment.
                          "paddingBottomSuggested": True or False, # Indicates if there was a suggested change to padding_bottom.
                          "paddingLeftSuggested": True or False, # Indicates if there was a suggested change to padding_left.
                          "paddingRightSuggested": True or False, # Indicates if there was a suggested change to padding_right.
                          "paddingTopSuggested": True or False, # Indicates if there was a suggested change to padding_top.
                          "rowSpanSuggested": True or False, # Indicates if there was a suggested change to row_span.
                        },
                      },
                    },
                    "tableCellStyle": { # The style of a TableCell. Inherited table cell styles are represented as unset fields in this message. A table cell style can inherit from the table's style. # The style of the cell.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the cell.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "borderBottom": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The bottom border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "borderLeft": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The left border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "borderRight": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The right border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "borderTop": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The top border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "columnSpan": 42, # The column span of the cell. This property is read-only.
                      "contentAlignment": "A String", # The alignment of the content in the table cell. The default alignment matches the alignment for newly created table cells in the Docs editor.
                      "paddingBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "paddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "paddingRight": { # A magnitude in a single direction in the specified units. # The right padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "rowSpan": 42, # The row span of the cell. This property is read-only.
                    },
                  },
                ],
                "tableRowStyle": { # Styles that apply to a table row. # The style of the table row.
                  "minRowHeight": { # A magnitude in a single direction in the specified units. # The minimum height of the row. The row will be rendered in the Docs editor at a height equal to or greater than this value in order to show all the content in the row's cells.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "preventOverflow": True or False, # Whether the row cannot overflow across page or column boundaries.
                  "tableHeader": True or False, # Whether the row is a table header.
                },
              },
            ],
            "tableStyle": { # Styles that apply to a table. # The style of the table.
              "tableColumnProperties": [ # The properties of each column. Note that in Docs, tables contain rows and rows contain cells, similar to HTML. So the properties for a row can be found on the row's table_row_style.
                { # The properties of a column in a table.
                  "width": { # A magnitude in a single direction in the specified units. # The width of the column. Set when the column's `width_type` is FIXED_WIDTH.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "widthType": "A String", # The width type of the column.
                },
              ],
            },
          },
          "tableOfContents": { # A StructuralElement representing a table of contents. # A table of contents type of structural element.
            "content": [ # The content of the table of contents.
              # Object with schema name: StructuralElement
            ],
            "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
              "A String",
            ],
            "suggestedInsertionIds": [ # The suggested insertion IDs. A TableOfContents may have multiple insertion IDs if it is a nested suggested change. If empty, then this is not a suggested insertion.
              "A String",
            ],
          },
        },
      ],
      "footnoteId": "A String", # The ID of the footnote.
    },
  },
  "headers": { # Output only. The headers in the document, keyed by header ID.
    "a_key": { # A document header.
      "content": [ # The contents of the header. The indexes for a header's content begin at zero.
        { # A StructuralElement describes content that provides structure to the document.
          "endIndex": 42, # The zero-based end index of this structural element, exclusive, in UTF-16 code units.
          "paragraph": { # A StructuralElement representing a paragraph. A paragraph is a range of content that's terminated with a newline character. # A paragraph type of structural element.
            "bullet": { # Describes the bullet of a paragraph. # The bullet for this paragraph. If not present, the paragraph does not belong to a list.
              "listId": "A String", # The ID of the list this paragraph belongs to.
              "nestingLevel": 42, # The nesting level of this paragraph in the list.
              "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The paragraph-specific text style applied to this bullet.
                "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                "bold": True or False, # Whether or not the text is rendered as bold.
                "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "italic": True or False, # Whether or not the text is italicized.
                "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                  "bookmarkId": "A String", # The ID of a bookmark in this document.
                  "headingId": "A String", # The ID of a heading in this document.
                  "url": "A String", # An external URL.
                },
                "smallCaps": True or False, # Whether or not the text is in small capital letters.
                "strikethrough": True or False, # Whether or not the text is struck through.
                "underline": True or False, # Whether or not the text is underlined.
                "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                  "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                  "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                },
              },
            },
            "elements": [ # The content of the paragraph, broken down into its component parts.
              { # A ParagraphElement describes content within a Paragraph.
                "autoText": { # A ParagraphElement representing a spot in the text that's dynamically replaced with content that can change over time, like a page number. # An auto text paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. An AutoText may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this AutoText, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this AutoText.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                  "type": "A String", # The type of this auto text.
                },
                "columnBreak": { # A ParagraphElement representing a column break. A column break makes the subsequent text start at the top of the next column. # A column break paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A ColumnBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this ColumnBreak, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this ColumnBreak. Similar to text content, like text runs and footnote references, the text style of a column break can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "endIndex": 42, # The zero-base end index of this paragraph element, exclusive, in UTF-16 code units.
                "equation": { # A ParagraphElement representing an equation. # An equation paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. An Equation may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                },
                "footnoteReference": { # A ParagraphElement representing a footnote reference. A footnote reference is the inline content rendered with a number and is used to identify the footnote. # A footnote reference paragraph element.
                  "footnoteId": "A String", # The ID of the footnote that contains the content of this footnote reference.
                  "footnoteNumber": "A String", # The rendered number of this footnote.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A FootnoteReference may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this FootnoteReference, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this FootnoteReference.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "horizontalRule": { # A ParagraphElement representing a horizontal line. # A horizontal rule paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A HorizontalRule may have multiple insertion IDs if it is a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this HorizontalRule, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this HorizontalRule. Similar to text content, like text runs and footnote references, the text style of a horizontal rule can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "inlineObjectElement": { # A ParagraphElement that contains an InlineObject. # An inline object paragraph element.
                  "inlineObjectId": "A String", # The ID of the InlineObject this element contains.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. An InlineObjectElement may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this InlineObject, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this InlineObjectElement. Similar to text content, like text runs and footnote references, the text style of an inline object element can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "pageBreak": { # A ParagraphElement representing a page break. A page break makes the subsequent text start at the top of the next page. # A page break paragraph element.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A PageBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this PageBreak, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this PageBreak. Similar to text content, like text runs and footnote references, the text style of a page break can affect content layout as well as the styling of text inserted next to it.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "person": { # A person or email address mentioned in a document. These mentions behave as a single, immutable element containing the person's name or email address. # A paragraph element that links to a person or email address.
                  "personId": "A String", # Output only. The unique ID of this link.
                  "personProperties": { # Properties specific to a linked Person. # Output only. The properties of this Person. This field is always present.
                    "email": "A String", # Output only. The email address linked to this Person. This field is always present.
                    "name": "A String", # Output only. The name of the person if it's displayed in the link text instead of the person's email address.
                  },
                  "suggestedDeletionIds": [ # IDs for suggestions that remove this person link from the document. A Person might have multiple deletion IDs if, for example, multiple users suggest deleting it. If empty, then this person link isn't suggested for deletion.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # IDs for suggestions that insert this person link into the document. A Person might have multiple insertion IDs if it's a nested suggested change (a suggestion within a suggestion made by a different user, for example). If empty, then this person link isn't a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this Person, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this Person.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "richLink": { # A link to a Google resource (such as a file in Drive, a YouTube video, or a Calendar event). # A paragraph element that links to a Google resource (such as a file in Google Drive, a YouTube video, or a Calendar event.)
                  "richLinkId": "A String", # Output only. The ID of this link.
                  "richLinkProperties": { # Properties specific to a RichLink. # Output only. The properties of this RichLink. This field is always present.
                    "mimeType": "A String", # Output only. The [MIME type](https://developers.google.com/drive/api/v3/mime-types) of the RichLink, if there's one (for example, when it's a file in Drive).
                    "title": "A String", # Output only. The title of the RichLink as displayed in the link. This title matches the title of the linked resource at the time of the insertion or last update of the link. This field is always present.
                    "uri": "A String", # Output only. The URI to the RichLink. This is always present.
                  },
                  "suggestedDeletionIds": [ # IDs for suggestions that remove this link from the document. A RichLink might have multiple deletion IDs if, for example, multiple users suggest deleting it. If empty, then this person link isn't suggested for deletion.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # IDs for suggestions that insert this link into the document. A RichLink might have multiple insertion IDs if it's a nested suggested change (a suggestion within a suggestion made by a different user, for example). If empty, then this person link isn't a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this RichLink, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this RichLink.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "startIndex": 42, # The zero-based start index of this paragraph element, in UTF-16 code units.
                "textRun": { # A ParagraphElement that represents a run of text that all has the same styling. # A text run paragraph element.
                  "content": "A String", # The text of this run. Any non-text elements in the run are replaced with the Unicode character U+E907.
                  "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                    "A String",
                  ],
                  "suggestedInsertionIds": [ # The suggested insertion IDs. A TextRun may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                    "A String",
                  ],
                  "suggestedTextStyleChanges": { # The suggested text style changes to this run, keyed by suggestion ID.
                    "a_key": { # A suggested change to a TextStyle.
                      "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A TextStyle that only includes the changes made in this suggestion. This can be used along with the text_style_suggestion_state to see which fields have changed and their new values.
                        "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                        "bold": True or False, # Whether or not the text is rendered as bold.
                        "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                        "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "italic": True or False, # Whether or not the text is italicized.
                        "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                          "bookmarkId": "A String", # The ID of a bookmark in this document.
                          "headingId": "A String", # The ID of a heading in this document.
                          "url": "A String", # An external URL.
                        },
                        "smallCaps": True or False, # Whether or not the text is in small capital letters.
                        "strikethrough": True or False, # Whether or not the text is struck through.
                        "underline": True or False, # Whether or not the text is underlined.
                        "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                          "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                          "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                        },
                      },
                      "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion.
                        "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                        "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                        "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                        "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                        "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                        "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                        "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                        "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                        "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                        "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                        "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                      },
                    },
                  },
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this run.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
              },
            ],
            "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The style of this paragraph.
              "alignment": "A String", # The text alignment for this paragraph.
              "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
              "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
              "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
              "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
              "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
              "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
              "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
              "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
              "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
                "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
              },
              "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "spacingMode": "A String", # The spacing mode for the paragraph.
              "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
                { # A tab stop within a paragraph.
                  "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
                  "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
              ],
            },
            "positionedObjectIds": [ # The IDs of the positioned objects tethered to this paragraph.
              "A String",
            ],
            "suggestedBulletChanges": { # The suggested changes to this paragraph's bullet.
              "a_key": { # A suggested change to a Bullet.
                "bullet": { # Describes the bullet of a paragraph. # A Bullet that only includes the changes made in this suggestion. This can be used along with the bullet_suggestion_state to see which fields have changed and their new values.
                  "listId": "A String", # The ID of the list this paragraph belongs to.
                  "nestingLevel": 42, # The nesting level of this paragraph in the list.
                  "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The paragraph-specific text style applied to this bullet.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                    "bold": True or False, # Whether or not the text is rendered as bold.
                    "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "italic": True or False, # Whether or not the text is italicized.
                    "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                      "bookmarkId": "A String", # The ID of a bookmark in this document.
                      "headingId": "A String", # The ID of a heading in this document.
                      "url": "A String", # An external URL.
                    },
                    "smallCaps": True or False, # Whether or not the text is in small capital letters.
                    "strikethrough": True or False, # Whether or not the text is struck through.
                    "underline": True or False, # Whether or not the text is underlined.
                    "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                      "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                      "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                    },
                  },
                },
                "bulletSuggestionState": { # A mask that indicates which of the fields on the base Bullet have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base Bullet have been changed in this suggestion.
                  "listIdSuggested": True or False, # Indicates if there was a suggested change to the list_id.
                  "nestingLevelSuggested": True or False, # Indicates if there was a suggested change to the nesting_level.
                  "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in text style have been changed in this suggestion.
                    "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                    "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                    "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                    "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                    "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                    "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                    "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                    "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                    "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                    "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                    "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                  },
                },
              },
            },
            "suggestedParagraphStyleChanges": { # The suggested paragraph style changes to this paragraph, keyed by suggestion ID.
              "a_key": { # A suggested change to a ParagraphStyle.
                "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # A ParagraphStyle that only includes the changes made in this suggestion. This can be used along with the paragraph_style_suggestion_state to see which fields have changed and their new values.
                  "alignment": "A String", # The text alignment for this paragraph.
                  "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
                  "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                    "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                    "dashStyle": "A String", # The dash style of the border.
                    "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                    "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                      "magnitude": 3.14, # The magnitude.
                      "unit": "A String", # The units for magnitude.
                    },
                  },
                  "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
                  "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
                  "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
                  "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
                  "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
                  "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
                  "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
                  "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
                    "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
                      "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                        "rgbColor": { # An RGB color. # The RGB color value.
                          "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                          "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                          "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                        },
                      },
                    },
                  },
                  "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "spacingMode": "A String", # The spacing mode for the paragraph.
                  "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
                    { # A tab stop within a paragraph.
                      "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
                      "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                    },
                  ],
                },
                "paragraphStyleSuggestionState": { # A mask that indicates which of the fields on the base ParagraphStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base ParagraphStyle have been changed in this suggestion.
                  "alignmentSuggested": True or False, # Indicates if there was a suggested change to alignment.
                  "avoidWidowAndOrphanSuggested": True or False, # Indicates if there was a suggested change to avoid_widow_and_orphan.
                  "borderBetweenSuggested": True or False, # Indicates if there was a suggested change to border_between.
                  "borderBottomSuggested": True or False, # Indicates if there was a suggested change to border_bottom.
                  "borderLeftSuggested": True or False, # Indicates if there was a suggested change to border_left.
                  "borderRightSuggested": True or False, # Indicates if there was a suggested change to border_right.
                  "borderTopSuggested": True or False, # Indicates if there was a suggested change to border_top.
                  "directionSuggested": True or False, # Indicates if there was a suggested change to direction.
                  "headingIdSuggested": True or False, # Indicates if there was a suggested change to heading_id.
                  "indentEndSuggested": True or False, # Indicates if there was a suggested change to indent_end.
                  "indentFirstLineSuggested": True or False, # Indicates if there was a suggested change to indent_first_line.
                  "indentStartSuggested": True or False, # Indicates if there was a suggested change to indent_start.
                  "keepLinesTogetherSuggested": True or False, # Indicates if there was a suggested change to keep_lines_together.
                  "keepWithNextSuggested": True or False, # Indicates if there was a suggested change to keep_with_next.
                  "lineSpacingSuggested": True or False, # Indicates if there was a suggested change to line_spacing.
                  "namedStyleTypeSuggested": True or False, # Indicates if there was a suggested change to named_style_type.
                  "pageBreakBeforeSuggested": True or False, # Indicates if there was a suggested change to page_break_before.
                  "shadingSuggestionState": { # A mask that indicates which of the fields on the base Shading have been changed in this suggested change. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in shading have been changed in this suggestion.
                    "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to the Shading.
                  },
                  "spaceAboveSuggested": True or False, # Indicates if there was a suggested change to space_above.
                  "spaceBelowSuggested": True or False, # Indicates if there was a suggested change to space_below.
                  "spacingModeSuggested": True or False, # Indicates if there was a suggested change to spacing_mode.
                },
              },
            },
            "suggestedPositionedObjectIds": { # The IDs of the positioned objects suggested to be attached to this paragraph, keyed by suggestion ID.
              "a_key": { # A collection of object IDs.
                "objectIds": [ # The object IDs.
                  "A String",
                ],
              },
            },
          },
          "sectionBreak": { # A StructuralElement representing a section break. A section is a range of content that has the same SectionStyle. A section break represents the start of a new section, and the section style applies to the section after the section break. The document body always begins with a section break. # A section break type of structural element.
            "sectionStyle": { # The styling that applies to a section. # The style of the section after this section break.
              "columnProperties": [ # The section's columns properties. If empty, the section contains one column with the default properties in the Docs editor. A section can be updated to have no more than 3 columns. When updating this property, setting a concrete value is required. Unsetting this property will result in a 400 bad request error.
                { # Properties that apply to a section's column.
                  "paddingEnd": { # A magnitude in a single direction in the specified units. # The padding at the end of the column.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "width": { # A magnitude in a single direction in the specified units. # Output only. The width of the column.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
              ],
              "columnSeparatorStyle": "A String", # The style of column separators. This style can be set even when there's one column in the section. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "contentDirection": "A String", # The content direction of this section. If unset, the value defaults to LEFT_TO_RIGHT. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "defaultFooterId": "A String", # The ID of the default footer. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's default_footer_id. This property is read-only.
              "defaultHeaderId": "A String", # The ID of the default header. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's default_header_id. This property is read-only.
              "evenPageFooterId": "A String", # The ID of the footer used only for even pages. If the value of DocumentStyle's use_even_page_header_footer is true, this value is used for the footers on even pages in the section. If it is false, the footers on even pages use the default_footer_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's even_page_footer_id. This property is read-only.
              "evenPageHeaderId": "A String", # The ID of the header used only for even pages. If the value of DocumentStyle's use_even_page_header_footer is true, this value is used for the headers on even pages in the section. If it is false, the headers on even pages use the default_header_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's even_page_header_id. This property is read-only.
              "firstPageFooterId": "A String", # The ID of the footer used only for the first page of the section. If use_first_page_header_footer is true, this value is used for the footer on the first page of the section. If it's false, the footer on the first page of the section uses the default_footer_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's first_page_footer_id. This property is read-only.
              "firstPageHeaderId": "A String", # The ID of the header used only for the first page of the section. If use_first_page_header_footer is true, this value is used for the header on the first page of the section. If it's false, the header on the first page of the section uses the default_header_id. If unset, the value inherits from the previous SectionBreak's SectionStyle. If the value is unset in the first SectionBreak, it inherits from DocumentStyle's first_page_header_id. This property is read-only.
              "flipPageOrientation": True or False, # Optional. Indicates whether to flip the dimensions of DocumentStyle's page_size for this section, which allows changing the page orientation between portrait and landscape. If unset, the value inherits from DocumentStyle's flip_page_orientation. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom page margin of the section. If unset, the value defaults to margin_bottom from DocumentStyle. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginFooter": { # A magnitude in a single direction in the specified units. # The footer margin of the section. If unset, the value defaults to margin_footer from DocumentStyle. If updated, use_custom_header_footer_margins is set to true on DocumentStyle. The value of use_custom_header_footer_margins on DocumentStyle indicates if a footer margin is being respected for this section When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginHeader": { # A magnitude in a single direction in the specified units. # The header margin of the section. If unset, the value defaults to margin_header from DocumentStyle. If updated, use_custom_header_footer_margins is set to true on DocumentStyle. The value of use_custom_header_footer_margins on DocumentStyle indicates if a header margin is being respected for this section. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginLeft": { # A magnitude in a single direction in the specified units. # The left page margin of the section. If unset, the value defaults to margin_left from DocumentStyle. Updating the left margin causes columns in this section to resize. Since the margin affects column width, it's applied before column properties. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginRight": { # A magnitude in a single direction in the specified units. # The right page margin of the section. If unset, the value defaults to margin_right from DocumentStyle. Updating the right margin causes columns in this section to resize. Since the margin affects column width, it's applied before column properties. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginTop": { # A magnitude in a single direction in the specified units. # The top page margin of the section. If unset, the value defaults to margin_top from DocumentStyle. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "pageNumberStart": 42, # The page number from which to start counting the number of pages for this section. If unset, page numbering continues from the previous section. If the value is unset in the first SectionBreak, refer to DocumentStyle's page_number_start. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
              "sectionType": "A String", # Output only. The type of section.
              "useFirstPageHeaderFooter": True or False, # Indicates whether to use the first page header / footer IDs for the first page of the section. If unset, it inherits from DocumentStyle's use_first_page_header_footer for the first section. If the value is unset for subsequent sectors, it should be interpreted as false. When updating this property, setting a concrete value is required. Unsetting this property results in a 400 bad request error.
            },
            "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
              "A String",
            ],
            "suggestedInsertionIds": [ # The suggested insertion IDs. A SectionBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
              "A String",
            ],
          },
          "startIndex": 42, # The zero-based start index of this structural element, in UTF-16 code units.
          "table": { # A StructuralElement representing a table. # A table type of structural element.
            "columns": 42, # Number of columns in the table. It's possible for a table to be non-rectangular, so some rows may have a different number of cells.
            "rows": 42, # Number of rows in the table.
            "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
              "A String",
            ],
            "suggestedInsertionIds": [ # The suggested insertion IDs. A Table may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
              "A String",
            ],
            "tableRows": [ # The contents and style of each row.
              { # The contents and style of a row in a Table.
                "endIndex": 42, # The zero-based end index of this row, exclusive, in UTF-16 code units.
                "startIndex": 42, # The zero-based start index of this row, in UTF-16 code units.
                "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                  "A String",
                ],
                "suggestedInsertionIds": [ # The suggested insertion IDs. A TableRow may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                  "A String",
                ],
                "suggestedTableRowStyleChanges": { # The suggested style changes to this row, keyed by suggestion ID.
                  "a_key": { # A suggested change to a TableRowStyle.
                    "tableRowStyle": { # Styles that apply to a table row. # A TableRowStyle that only includes the changes made in this suggestion. This can be used along with the table_row_style_suggestion_state to see which fields have changed and their new values.
                      "minRowHeight": { # A magnitude in a single direction in the specified units. # The minimum height of the row. The row will be rendered in the Docs editor at a height equal to or greater than this value in order to show all the content in the row's cells.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "preventOverflow": True or False, # Whether the row cannot overflow across page or column boundaries.
                      "tableHeader": True or False, # Whether the row is a table header.
                    },
                    "tableRowStyleSuggestionState": { # A mask that indicates which of the fields on the base TableRowStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TableRowStyle have been changed in this suggestion.
                      "minRowHeightSuggested": True or False, # Indicates if there was a suggested change to min_row_height.
                    },
                  },
                },
                "tableCells": [ # The contents and style of each cell in this row. It's possible for a table to be non-rectangular, so some rows may have a different number of cells than other rows in the same table.
                  { # The contents and style of a cell in a Table.
                    "content": [ # The content of the cell.
                      # Object with schema name: StructuralElement
                    ],
                    "endIndex": 42, # The zero-based end index of this cell, exclusive, in UTF-16 code units.
                    "startIndex": 42, # The zero-based start index of this cell, in UTF-16 code units.
                    "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
                      "A String",
                    ],
                    "suggestedInsertionIds": [ # The suggested insertion IDs. A TableCell may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
                      "A String",
                    ],
                    "suggestedTableCellStyleChanges": { # The suggested changes to the table cell style, keyed by suggestion ID.
                      "a_key": { # A suggested change to a TableCellStyle.
                        "tableCellStyle": { # The style of a TableCell. Inherited table cell styles are represented as unset fields in this message. A table cell style can inherit from the table's style. # A TableCellStyle that only includes the changes made in this suggestion. This can be used along with the table_cell_style_suggestion_state to see which fields have changed and their new values.
                          "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the cell.
                            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                              "rgbColor": { # An RGB color. # The RGB color value.
                                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                              },
                            },
                          },
                          "borderBottom": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The bottom border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "borderLeft": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The left border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "borderRight": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The right border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "borderTop": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The top border of the cell.
                            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                                "rgbColor": { # An RGB color. # The RGB color value.
                                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                                },
                              },
                            },
                            "dashStyle": "A String", # The dash style of the border.
                            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                              "magnitude": 3.14, # The magnitude.
                              "unit": "A String", # The units for magnitude.
                            },
                          },
                          "columnSpan": 42, # The column span of the cell. This property is read-only.
                          "contentAlignment": "A String", # The alignment of the content in the table cell. The default alignment matches the alignment for newly created table cells in the Docs editor.
                          "paddingBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "paddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "paddingRight": { # A magnitude in a single direction in the specified units. # The right padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of the cell.
                            "magnitude": 3.14, # The magnitude.
                            "unit": "A String", # The units for magnitude.
                          },
                          "rowSpan": 42, # The row span of the cell. This property is read-only.
                        },
                        "tableCellStyleSuggestionState": { # A mask that indicates which of the fields on the base TableCellStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base TableCellStyle have been changed in this suggestion.
                          "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                          "borderBottomSuggested": True or False, # Indicates if there was a suggested change to border_bottom.
                          "borderLeftSuggested": True or False, # Indicates if there was a suggested change to border_left.
                          "borderRightSuggested": True or False, # Indicates if there was a suggested change to border_right.
                          "borderTopSuggested": True or False, # Indicates if there was a suggested change to border_top.
                          "columnSpanSuggested": True or False, # Indicates if there was a suggested change to column_span.
                          "contentAlignmentSuggested": True or False, # Indicates if there was a suggested change to content_alignment.
                          "paddingBottomSuggested": True or False, # Indicates if there was a suggested change to padding_bottom.
                          "paddingLeftSuggested": True or False, # Indicates if there was a suggested change to padding_left.
                          "paddingRightSuggested": True or False, # Indicates if there was a suggested change to padding_right.
                          "paddingTopSuggested": True or False, # Indicates if there was a suggested change to padding_top.
                          "rowSpanSuggested": True or False, # Indicates if there was a suggested change to row_span.
                        },
                      },
                    },
                    "tableCellStyle": { # The style of a TableCell. Inherited table cell styles are represented as unset fields in this message. A table cell style can inherit from the table's style. # The style of the cell.
                      "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the cell.
                        "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                          "rgbColor": { # An RGB color. # The RGB color value.
                            "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                            "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                            "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                          },
                        },
                      },
                      "borderBottom": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The bottom border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "borderLeft": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The left border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "borderRight": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The right border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "borderTop": { # A border around a table cell. Table cell borders cannot be transparent. To hide a table cell border, make its width 0. # The top border of the cell.
                        "color": { # A color that can either be fully opaque or fully transparent. # The color of the border. This color cannot be transparent.
                          "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                            "rgbColor": { # An RGB color. # The RGB color value.
                              "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                              "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                              "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                            },
                          },
                        },
                        "dashStyle": "A String", # The dash style of the border.
                        "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                          "magnitude": 3.14, # The magnitude.
                          "unit": "A String", # The units for magnitude.
                        },
                      },
                      "columnSpan": 42, # The column span of the cell. This property is read-only.
                      "contentAlignment": "A String", # The alignment of the content in the table cell. The default alignment matches the alignment for newly created table cells in the Docs editor.
                      "paddingBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "paddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "paddingRight": { # A magnitude in a single direction in the specified units. # The right padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of the cell.
                        "magnitude": 3.14, # The magnitude.
                        "unit": "A String", # The units for magnitude.
                      },
                      "rowSpan": 42, # The row span of the cell. This property is read-only.
                    },
                  },
                ],
                "tableRowStyle": { # Styles that apply to a table row. # The style of the table row.
                  "minRowHeight": { # A magnitude in a single direction in the specified units. # The minimum height of the row. The row will be rendered in the Docs editor at a height equal to or greater than this value in order to show all the content in the row's cells.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "preventOverflow": True or False, # Whether the row cannot overflow across page or column boundaries.
                  "tableHeader": True or False, # Whether the row is a table header.
                },
              },
            ],
            "tableStyle": { # Styles that apply to a table. # The style of the table.
              "tableColumnProperties": [ # The properties of each column. Note that in Docs, tables contain rows and rows contain cells, similar to HTML. So the properties for a row can be found on the row's table_row_style.
                { # The properties of a column in a table.
                  "width": { # A magnitude in a single direction in the specified units. # The width of the column. Set when the column's `width_type` is FIXED_WIDTH.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "widthType": "A String", # The width type of the column.
                },
              ],
            },
          },
          "tableOfContents": { # A StructuralElement representing a table of contents. # A table of contents type of structural element.
            "content": [ # The content of the table of contents.
              # Object with schema name: StructuralElement
            ],
            "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
              "A String",
            ],
            "suggestedInsertionIds": [ # The suggested insertion IDs. A TableOfContents may have multiple insertion IDs if it is a nested suggested change. If empty, then this is not a suggested insertion.
              "A String",
            ],
          },
        },
      ],
      "headerId": "A String", # The ID of the header.
    },
  },
  "inlineObjects": { # Output only. The inline objects in the document, keyed by object ID.
    "a_key": { # An object that appears inline with text. An InlineObject contains an EmbeddedObject such as an image.
      "inlineObjectProperties": { # Properties of an InlineObject. # The properties of this inline object.
        "embeddedObject": { # An embedded object in the document. # The embedded object of this inline object.
          "description": "A String", # The description of the embedded object. The `title` and `description` are both combined to display alt text.
          "embeddedDrawingProperties": { # The properties of an embedded drawing and used to differentiate the object type. An embedded drawing is one that's created and edited within a document. Note that extensive details are not supported. # The properties of an embedded drawing.
          },
          "embeddedObjectBorder": { # A border around an EmbeddedObject. # The border of the embedded object.
            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
            "dashStyle": "A String", # The dash style of the border.
            "propertyState": "A String", # The property state of the border property.
            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "imageProperties": { # The properties of an image. # The properties of an image.
            "angle": 3.14, # The clockwise rotation angle of the image, in radians.
            "brightness": 3.14, # The brightness effect of the image. The value should be in the interval [-1.0, 1.0], where 0 means no effect.
            "contentUri": "A String", # A URI to the image with a default lifetime of 30 minutes. This URI is tagged with the account of the requester. Anyone with the URI effectively accesses the image as the original requester. Access to the image may be lost if the document's sharing settings change.
            "contrast": 3.14, # The contrast effect of the image. The value should be in the interval [-1.0, 1.0], where 0 means no effect.
            "cropProperties": { # The crop properties of an image. The crop rectangle is represented using fractional offsets from the original content's 4 edges. - If the offset is in the interval (0, 1), the corresponding edge of crop rectangle is positioned inside of the image's original bounding rectangle. - If the offset is negative or greater than 1, the corresponding edge of crop rectangle is positioned outside of the image's original bounding rectangle. - If all offsets and rotation angle are 0, the image is not cropped. # The crop properties of the image.
              "angle": 3.14, # The clockwise rotation angle of the crop rectangle around its center, in radians. Rotation is applied after the offsets.
              "offsetBottom": 3.14, # The offset specifies how far inwards the bottom edge of the crop rectangle is from the bottom edge of the original content as a fraction of the original content's height.
              "offsetLeft": 3.14, # The offset specifies how far inwards the left edge of the crop rectangle is from the left edge of the original content as a fraction of the original content's width.
              "offsetRight": 3.14, # The offset specifies how far inwards the right edge of the crop rectangle is from the right edge of the original content as a fraction of the original content's width.
              "offsetTop": 3.14, # The offset specifies how far inwards the top edge of the crop rectangle is from the top edge of the original content as a fraction of the original content's height.
            },
            "sourceUri": "A String", # The source URI is the URI used to insert the image. The source URI can be empty.
            "transparency": 3.14, # The transparency effect of the image. The value should be in the interval [0.0, 1.0], where 0 means no effect and 1 means transparent.
          },
          "linkedContentReference": { # A reference to the external linked source content. # A reference to the external linked source content. For example, it contains a reference to the source Google Sheets chart when the embedded object is a linked chart. If unset, then the embedded object is not linked.
            "sheetsChartReference": { # A reference to a linked chart embedded from Google Sheets. # A reference to the linked chart.
              "chartId": 42, # The ID of the specific chart in the Google Sheets spreadsheet that's embedded.
              "spreadsheetId": "A String", # The ID of the Google Sheets spreadsheet that contains the source chart.
            },
          },
          "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom margin of the embedded object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "marginLeft": { # A magnitude in a single direction in the specified units. # The left margin of the embedded object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "marginRight": { # A magnitude in a single direction in the specified units. # The right margin of the embedded object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "marginTop": { # A magnitude in a single direction in the specified units. # The top margin of the embedded object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "size": { # A width and height. # The visible size of the image after cropping.
            "height": { # A magnitude in a single direction in the specified units. # The height of the object.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "width": { # A magnitude in a single direction in the specified units. # The width of the object.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "title": "A String", # The title of the embedded object. The `title` and `description` are both combined to display alt text.
        },
      },
      "objectId": "A String", # The ID of this inline object. Can be used to update an object’s properties.
      "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
        "A String",
      ],
      "suggestedInlineObjectPropertiesChanges": { # The suggested changes to the inline object properties, keyed by suggestion ID.
        "a_key": { # A suggested change to InlineObjectProperties.
          "inlineObjectProperties": { # Properties of an InlineObject. # An InlineObjectProperties that only includes the changes made in this suggestion. This can be used along with the inline_object_properties_suggestion_state to see which fields have changed and their new values.
            "embeddedObject": { # An embedded object in the document. # The embedded object of this inline object.
              "description": "A String", # The description of the embedded object. The `title` and `description` are both combined to display alt text.
              "embeddedDrawingProperties": { # The properties of an embedded drawing and used to differentiate the object type. An embedded drawing is one that's created and edited within a document. Note that extensive details are not supported. # The properties of an embedded drawing.
              },
              "embeddedObjectBorder": { # A border around an EmbeddedObject. # The border of the embedded object.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "propertyState": "A String", # The property state of the border property.
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "imageProperties": { # The properties of an image. # The properties of an image.
                "angle": 3.14, # The clockwise rotation angle of the image, in radians.
                "brightness": 3.14, # The brightness effect of the image. The value should be in the interval [-1.0, 1.0], where 0 means no effect.
                "contentUri": "A String", # A URI to the image with a default lifetime of 30 minutes. This URI is tagged with the account of the requester. Anyone with the URI effectively accesses the image as the original requester. Access to the image may be lost if the document's sharing settings change.
                "contrast": 3.14, # The contrast effect of the image. The value should be in the interval [-1.0, 1.0], where 0 means no effect.
                "cropProperties": { # The crop properties of an image. The crop rectangle is represented using fractional offsets from the original content's 4 edges. - If the offset is in the interval (0, 1), the corresponding edge of crop rectangle is positioned inside of the image's original bounding rectangle. - If the offset is negative or greater than 1, the corresponding edge of crop rectangle is positioned outside of the image's original bounding rectangle. - If all offsets and rotation angle are 0, the image is not cropped. # The crop properties of the image.
                  "angle": 3.14, # The clockwise rotation angle of the crop rectangle around its center, in radians. Rotation is applied after the offsets.
                  "offsetBottom": 3.14, # The offset specifies how far inwards the bottom edge of the crop rectangle is from the bottom edge of the original content as a fraction of the original content's height.
                  "offsetLeft": 3.14, # The offset specifies how far inwards the left edge of the crop rectangle is from the left edge of the original content as a fraction of the original content's width.
                  "offsetRight": 3.14, # The offset specifies how far inwards the right edge of the crop rectangle is from the right edge of the original content as a fraction of the original content's width.
                  "offsetTop": 3.14, # The offset specifies how far inwards the top edge of the crop rectangle is from the top edge of the original content as a fraction of the original content's height.
                },
                "sourceUri": "A String", # The source URI is the URI used to insert the image. The source URI can be empty.
                "transparency": 3.14, # The transparency effect of the image. The value should be in the interval [0.0, 1.0], where 0 means no effect and 1 means transparent.
              },
              "linkedContentReference": { # A reference to the external linked source content. # A reference to the external linked source content. For example, it contains a reference to the source Google Sheets chart when the embedded object is a linked chart. If unset, then the embedded object is not linked.
                "sheetsChartReference": { # A reference to a linked chart embedded from Google Sheets. # A reference to the linked chart.
                  "chartId": 42, # The ID of the specific chart in the Google Sheets spreadsheet that's embedded.
                  "spreadsheetId": "A String", # The ID of the Google Sheets spreadsheet that contains the source chart.
                },
              },
              "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom margin of the embedded object.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginLeft": { # A magnitude in a single direction in the specified units. # The left margin of the embedded object.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginRight": { # A magnitude in a single direction in the specified units. # The right margin of the embedded object.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginTop": { # A magnitude in a single direction in the specified units. # The top margin of the embedded object.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "size": { # A width and height. # The visible size of the image after cropping.
                "height": { # A magnitude in a single direction in the specified units. # The height of the object.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the object.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "title": "A String", # The title of the embedded object. The `title` and `description` are both combined to display alt text.
            },
          },
          "inlineObjectPropertiesSuggestionState": { # A mask that indicates which of the fields on the base InlineObjectProperties have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base InlineObjectProperties have been changed in this suggestion.
            "embeddedObjectSuggestionState": { # A mask that indicates which of the fields on the base EmbeddedObject have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in embedded_object have been changed in this suggestion.
              "descriptionSuggested": True or False, # Indicates if there was a suggested change to description.
              "embeddedDrawingPropertiesSuggestionState": { # A mask that indicates which of the fields on the base EmbeddedDrawingProperties have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in embedded_drawing_properties have been changed in this suggestion.
              },
              "embeddedObjectBorderSuggestionState": { # A mask that indicates which of the fields on the base EmbeddedObjectBorder have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in embedded_object_border have been changed in this suggestion.
                "colorSuggested": True or False, # Indicates if there was a suggested change to color.
                "dashStyleSuggested": True or False, # Indicates if there was a suggested change to dash_style.
                "propertyStateSuggested": True or False, # Indicates if there was a suggested change to property_state.
                "widthSuggested": True or False, # Indicates if there was a suggested change to width.
              },
              "imagePropertiesSuggestionState": { # A mask that indicates which of the fields on the base ImageProperties have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in image_properties have been changed in this suggestion.
                "angleSuggested": True or False, # Indicates if there was a suggested change to angle.
                "brightnessSuggested": True or False, # Indicates if there was a suggested change to brightness.
                "contentUriSuggested": True or False, # Indicates if there was a suggested change to content_uri.
                "contrastSuggested": True or False, # Indicates if there was a suggested change to contrast.
                "cropPropertiesSuggestionState": { # A mask that indicates which of the fields on the base CropProperties have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in crop_properties have been changed in this suggestion.
                  "angleSuggested": True or False, # Indicates if there was a suggested change to angle.
                  "offsetBottomSuggested": True or False, # Indicates if there was a suggested change to offset_bottom.
                  "offsetLeftSuggested": True or False, # Indicates if there was a suggested change to offset_left.
                  "offsetRightSuggested": True or False, # Indicates if there was a suggested change to offset_right.
                  "offsetTopSuggested": True or False, # Indicates if there was a suggested change to offset_top.
                },
                "sourceUriSuggested": True or False, # Indicates if there was a suggested change to source_uri.
                "transparencySuggested": True or False, # Indicates if there was a suggested change to transparency.
              },
              "linkedContentReferenceSuggestionState": { # A mask that indicates which of the fields on the base LinkedContentReference have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in linked_content_reference have been changed in this suggestion.
                "sheetsChartReferenceSuggestionState": { # A mask that indicates which of the fields on the base SheetsChartReference have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in sheets_chart_reference have been changed in this suggestion.
                  "chartIdSuggested": True or False, # Indicates if there was a suggested change to chart_id.
                  "spreadsheetIdSuggested": True or False, # Indicates if there was a suggested change to spreadsheet_id.
                },
              },
              "marginBottomSuggested": True or False, # Indicates if there was a suggested change to margin_bottom.
              "marginLeftSuggested": True or False, # Indicates if there was a suggested change to margin_left.
              "marginRightSuggested": True or False, # Indicates if there was a suggested change to margin_right.
              "marginTopSuggested": True or False, # Indicates if there was a suggested change to margin_top.
              "sizeSuggestionState": { # A mask that indicates which of the fields on the base Size have been changed in this suggestion. For any field set to true, the Size has a new suggested value. # A mask that indicates which of the fields in size have been changed in this suggestion.
                "heightSuggested": True or False, # Indicates if there was a suggested change to height.
                "widthSuggested": True or False, # Indicates if there was a suggested change to width.
              },
              "titleSuggested": True or False, # Indicates if there was a suggested change to title.
            },
          },
        },
      },
      "suggestedInsertionId": "A String", # The suggested insertion ID. If empty, then this is not a suggested insertion.
    },
  },
  "lists": { # Output only. The lists in the document, keyed by list ID.
    "a_key": { # A List represents the list attributes for a group of paragraphs that all belong to the same list. A paragraph that's part of a list has a reference to the list's ID in its bullet.
      "listProperties": { # The properties of a list that describe the look and feel of bullets belonging to paragraphs associated with a list. # The properties of the list.
        "nestingLevels": [ # Describes the properties of the bullets at the associated level. A list has at most 9 levels of nesting with nesting level 0 corresponding to the top-most level and nesting level 8 corresponding to the most nested level. The nesting levels are returned in ascending order with the least nested returned first.
          { # Contains properties describing the look and feel of a list bullet at a given level of nesting.
            "bulletAlignment": "A String", # The alignment of the bullet within the space allotted for rendering the bullet.
            "glyphFormat": "A String", # The format string used by bullets at this level of nesting. The glyph format contains one or more placeholders, and these placeholders are replaced with the appropriate values depending on the glyph_type or glyph_symbol. The placeholders follow the pattern `%[nesting_level]`. Furthermore, placeholders can have prefixes and suffixes. Thus, the glyph format follows the pattern `%[nesting_level]`. Note that the prefix and suffix are optional and can be arbitrary strings. For example, the glyph format `%0.` indicates that the rendered glyph will replace the placeholder with the corresponding glyph for nesting level 0 followed by a period as the suffix. So a list with a glyph type of UPPER_ALPHA and glyph format `%0.` at nesting level 0 will result in a list with rendered glyphs `A.` `B.` `C.` The glyph format can contain placeholders for the current nesting level as well as placeholders for parent nesting levels. For example, a list can have a glyph format of `%0.` at nesting level 0 and a glyph format of `%0.%1.` at nesting level 1. Assuming both nesting levels have DECIMAL glyph types, this would result in a list with rendered glyphs `1.` `2.` ` 2.1.` ` 2.2.` `3.` For nesting levels that are ordered, the string that replaces a placeholder in the glyph format for a particular paragraph depends on the paragraph's order within the list.
            "glyphSymbol": "A String", # A custom glyph symbol used by bullets when paragraphs at this level of nesting are unordered. The glyph symbol replaces placeholders within the glyph_format. For example, if the glyph_symbol is the solid circle corresponding to Unicode U+25cf code point and the glyph_format is `%0`, the rendered glyph would be the solid circle.
            "glyphType": "A String", # The type of glyph used by bullets when paragraphs at this level of nesting are ordered. The glyph type determines the type of glyph used to replace placeholders within the glyph_format when paragraphs at this level of nesting are ordered. For example, if the nesting level is 0, the glyph_format is `%0.` and the glyph type is DECIMAL, then the rendered glyph would replace the placeholder `%0` in the glyph format with a number corresponding to list item's order within the list.
            "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of paragraphs at this level of nesting.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for paragraphs at this level of nesting. Applied to the side that corresponds to the start of the text, based on the paragraph's content direction.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "startNumber": 42, # The number of the first list item at this nesting level. A value of 0 is treated as a value of 1 for lettered lists and Roman numeral lists. For values of both 0 and 1, lettered and Roman numeral lists will begin at `a` and `i` respectively. This value is ignored for nesting levels with unordered glyphs.
            "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of bullets at this level of nesting.
              "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
              "bold": True or False, # Whether or not the text is rendered as bold.
              "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "italic": True or False, # Whether or not the text is italicized.
              "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                "bookmarkId": "A String", # The ID of a bookmark in this document.
                "headingId": "A String", # The ID of a heading in this document.
                "url": "A String", # An external URL.
              },
              "smallCaps": True or False, # Whether or not the text is in small capital letters.
              "strikethrough": True or False, # Whether or not the text is struck through.
              "underline": True or False, # Whether or not the text is underlined.
              "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
              },
            },
          },
        ],
      },
      "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this list.
        "A String",
      ],
      "suggestedInsertionId": "A String", # The suggested insertion ID. If empty, then this is not a suggested insertion.
      "suggestedListPropertiesChanges": { # The suggested changes to the list properties, keyed by suggestion ID.
        "a_key": { # A suggested change to ListProperties.
          "listProperties": { # The properties of a list that describe the look and feel of bullets belonging to paragraphs associated with a list. # A ListProperties that only includes the changes made in this suggestion. This can be used along with the list_properties_suggestion_state to see which fields have changed and their new values.
            "nestingLevels": [ # Describes the properties of the bullets at the associated level. A list has at most 9 levels of nesting with nesting level 0 corresponding to the top-most level and nesting level 8 corresponding to the most nested level. The nesting levels are returned in ascending order with the least nested returned first.
              { # Contains properties describing the look and feel of a list bullet at a given level of nesting.
                "bulletAlignment": "A String", # The alignment of the bullet within the space allotted for rendering the bullet.
                "glyphFormat": "A String", # The format string used by bullets at this level of nesting. The glyph format contains one or more placeholders, and these placeholders are replaced with the appropriate values depending on the glyph_type or glyph_symbol. The placeholders follow the pattern `%[nesting_level]`. Furthermore, placeholders can have prefixes and suffixes. Thus, the glyph format follows the pattern `%[nesting_level]`. Note that the prefix and suffix are optional and can be arbitrary strings. For example, the glyph format `%0.` indicates that the rendered glyph will replace the placeholder with the corresponding glyph for nesting level 0 followed by a period as the suffix. So a list with a glyph type of UPPER_ALPHA and glyph format `%0.` at nesting level 0 will result in a list with rendered glyphs `A.` `B.` `C.` The glyph format can contain placeholders for the current nesting level as well as placeholders for parent nesting levels. For example, a list can have a glyph format of `%0.` at nesting level 0 and a glyph format of `%0.%1.` at nesting level 1. Assuming both nesting levels have DECIMAL glyph types, this would result in a list with rendered glyphs `1.` `2.` ` 2.1.` ` 2.2.` `3.` For nesting levels that are ordered, the string that replaces a placeholder in the glyph format for a particular paragraph depends on the paragraph's order within the list.
                "glyphSymbol": "A String", # A custom glyph symbol used by bullets when paragraphs at this level of nesting are unordered. The glyph symbol replaces placeholders within the glyph_format. For example, if the glyph_symbol is the solid circle corresponding to Unicode U+25cf code point and the glyph_format is `%0`, the rendered glyph would be the solid circle.
                "glyphType": "A String", # The type of glyph used by bullets when paragraphs at this level of nesting are ordered. The glyph type determines the type of glyph used to replace placeholders within the glyph_format when paragraphs at this level of nesting are ordered. For example, if the nesting level is 0, the glyph_format is `%0.` and the glyph type is DECIMAL, then the rendered glyph would replace the placeholder `%0` in the glyph format with a number corresponding to list item's order within the list.
                "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of paragraphs at this level of nesting.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for paragraphs at this level of nesting. Applied to the side that corresponds to the start of the text, based on the paragraph's content direction.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "startNumber": 42, # The number of the first list item at this nesting level. A value of 0 is treated as a value of 1 for lettered lists and Roman numeral lists. For values of both 0 and 1, lettered and Roman numeral lists will begin at `a` and `i` respectively. This value is ignored for nesting levels with unordered glyphs.
                "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of bullets at this level of nesting.
                  "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
                  "bold": True or False, # Whether or not the text is rendered as bold.
                  "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                  "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                    "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                      "rgbColor": { # An RGB color. # The RGB color value.
                        "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                        "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                        "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                      },
                    },
                  },
                  "italic": True or False, # Whether or not the text is italicized.
                  "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                    "bookmarkId": "A String", # The ID of a bookmark in this document.
                    "headingId": "A String", # The ID of a heading in this document.
                    "url": "A String", # An external URL.
                  },
                  "smallCaps": True or False, # Whether or not the text is in small capital letters.
                  "strikethrough": True or False, # Whether or not the text is struck through.
                  "underline": True or False, # Whether or not the text is underlined.
                  "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                    "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                    "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
                  },
                },
              },
            ],
          },
          "listPropertiesSuggestionState": { # A mask that indicates which of the fields on the base ListProperties have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base ListProperties have been changed in this suggestion.
            "nestingLevelsSuggestionStates": [ # A mask that indicates which of the fields on the corresponding NestingLevel in nesting_levels have been changed in this suggestion. The nesting level suggestion states are returned in ascending order of the nesting level with the least nested returned first.
              { # A mask that indicates which of the fields on the base NestingLevel have been changed in this suggestion. For any field set to true, there's a new suggested value.
                "bulletAlignmentSuggested": True or False, # Indicates if there was a suggested change to bullet_alignment.
                "glyphFormatSuggested": True or False, # Indicates if there was a suggested change to glyph_format.
                "glyphSymbolSuggested": True or False, # Indicates if there was a suggested change to glyph_symbol.
                "glyphTypeSuggested": True or False, # Indicates if there was a suggested change to glyph_type.
                "indentFirstLineSuggested": True or False, # Indicates if there was a suggested change to indent_first_line.
                "indentStartSuggested": True or False, # Indicates if there was a suggested change to indent_start.
                "startNumberSuggested": True or False, # Indicates if there was a suggested change to start_number.
                "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in text style have been changed in this suggestion.
                  "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
                  "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
                  "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
                  "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
                  "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
                  "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
                  "linkSuggested": True or False, # Indicates if there was a suggested change to link.
                  "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
                  "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
                  "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
                  "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
                },
              },
            ],
          },
        },
      },
    },
  },
  "namedRanges": { # Output only. The named ranges in the document, keyed by name.
    "a_key": { # A collection of all the NamedRanges in the document that share a given name.
      "name": "A String", # The name that all the named ranges share.
      "namedRanges": [ # The NamedRanges that share the same name.
        { # A collection of Ranges with the same named range ID. Named ranges allow developers to associate parts of a document with an arbitrary user-defined label so their contents can be programmatically read or edited later. A document can contain multiple named ranges with the same name, but every named range has a unique ID. A named range is created with a single Range, and content inserted inside a named range generally expands that range. However, certain document changes can cause the range to be split into multiple ranges. Named ranges are not private. All applications and collaborators that have access to the document can see its named ranges.
          "name": "A String", # The name of the named range.
          "namedRangeId": "A String", # The ID of the named range.
          "ranges": [ # The ranges that belong to this named range.
            { # Specifies a contiguous range of text.
              "endIndex": 42, # The zero-based end index of this range, exclusive, in UTF-16 code units. In all current uses, an end index must be provided. This field is an Int32Value in order to accommodate future use cases with open-ended ranges.
              "segmentId": "A String", # The ID of the header, footer, or footnote that this range is contained in. An empty segment ID signifies the document's body.
              "startIndex": 42, # The zero-based start index of this range, in UTF-16 code units. In all current uses, a start index must be provided. This field is an Int32Value in order to accommodate future use cases with open-ended ranges.
            },
          ],
        },
      ],
    },
  },
  "namedStyles": { # The named styles. Paragraphs in the document can inherit their TextStyle and ParagraphStyle from these named styles. # Output only. The named styles of the document.
    "styles": [ # The named styles. There's an entry for each of the possible named style types.
      { # A named style. Paragraphs in the document can inherit their TextStyle and ParagraphStyle from this named style when they have the same named style type.
        "namedStyleType": "A String", # The type of this named style.
        "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The paragraph style of this named style.
          "alignment": "A String", # The text alignment for this paragraph.
          "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
          "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
            "dashStyle": "A String", # The dash style of the border.
            "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
            "dashStyle": "A String", # The dash style of the border.
            "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
            "dashStyle": "A String", # The dash style of the border.
            "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
            "dashStyle": "A String", # The dash style of the border.
            "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
            "dashStyle": "A String", # The dash style of the border.
            "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
          "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
          "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
          "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
          "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
          "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
          "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
          "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
            "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
          },
          "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "spacingMode": "A String", # The spacing mode for the paragraph.
          "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
            { # A tab stop within a paragraph.
              "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
              "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
            },
          ],
        },
        "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this named style.
          "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
              "rgbColor": { # An RGB color. # The RGB color value.
                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
              },
            },
          },
          "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
          "bold": True or False, # Whether or not the text is rendered as bold.
          "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
              "rgbColor": { # An RGB color. # The RGB color value.
                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
              },
            },
          },
          "italic": True or False, # Whether or not the text is italicized.
          "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
            "bookmarkId": "A String", # The ID of a bookmark in this document.
            "headingId": "A String", # The ID of a heading in this document.
            "url": "A String", # An external URL.
          },
          "smallCaps": True or False, # Whether or not the text is in small capital letters.
          "strikethrough": True or False, # Whether or not the text is struck through.
          "underline": True or False, # Whether or not the text is underlined.
          "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
            "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
            "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
          },
        },
      },
    ],
  },
  "positionedObjects": { # Output only. The positioned objects in the document, keyed by object ID.
    "a_key": { # An object that's tethered to a Paragraph and positioned relative to the beginning of the paragraph. A PositionedObject contains an EmbeddedObject such as an image.
      "objectId": "A String", # The ID of this positioned object.
      "positionedObjectProperties": { # Properties of a PositionedObject. # The properties of this positioned object.
        "embeddedObject": { # An embedded object in the document. # The embedded object of this positioned object.
          "description": "A String", # The description of the embedded object. The `title` and `description` are both combined to display alt text.
          "embeddedDrawingProperties": { # The properties of an embedded drawing and used to differentiate the object type. An embedded drawing is one that's created and edited within a document. Note that extensive details are not supported. # The properties of an embedded drawing.
          },
          "embeddedObjectBorder": { # A border around an EmbeddedObject. # The border of the embedded object.
            "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
              "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                "rgbColor": { # An RGB color. # The RGB color value.
                  "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                  "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                  "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                },
              },
            },
            "dashStyle": "A String", # The dash style of the border.
            "propertyState": "A String", # The property state of the border property.
            "width": { # A magnitude in a single direction in the specified units. # The width of the border.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "imageProperties": { # The properties of an image. # The properties of an image.
            "angle": 3.14, # The clockwise rotation angle of the image, in radians.
            "brightness": 3.14, # The brightness effect of the image. The value should be in the interval [-1.0, 1.0], where 0 means no effect.
            "contentUri": "A String", # A URI to the image with a default lifetime of 30 minutes. This URI is tagged with the account of the requester. Anyone with the URI effectively accesses the image as the original requester. Access to the image may be lost if the document's sharing settings change.
            "contrast": 3.14, # The contrast effect of the image. The value should be in the interval [-1.0, 1.0], where 0 means no effect.
            "cropProperties": { # The crop properties of an image. The crop rectangle is represented using fractional offsets from the original content's 4 edges. - If the offset is in the interval (0, 1), the corresponding edge of crop rectangle is positioned inside of the image's original bounding rectangle. - If the offset is negative or greater than 1, the corresponding edge of crop rectangle is positioned outside of the image's original bounding rectangle. - If all offsets and rotation angle are 0, the image is not cropped. # The crop properties of the image.
              "angle": 3.14, # The clockwise rotation angle of the crop rectangle around its center, in radians. Rotation is applied after the offsets.
              "offsetBottom": 3.14, # The offset specifies how far inwards the bottom edge of the crop rectangle is from the bottom edge of the original content as a fraction of the original content's height.
              "offsetLeft": 3.14, # The offset specifies how far inwards the left edge of the crop rectangle is from the left edge of the original content as a fraction of the original content's width.
              "offsetRight": 3.14, # The offset specifies how far inwards the right edge of the crop rectangle is from the right edge of the original content as a fraction of the original content's width.
              "offsetTop": 3.14, # The offset specifies how far inwards the top edge of the crop rectangle is from the top edge of the original content as a fraction of the original content's height.
            },
            "sourceUri": "A String", # The source URI is the URI used to insert the image. The source URI can be empty.
            "transparency": 3.14, # The transparency effect of the image. The value should be in the interval [0.0, 1.0], where 0 means no effect and 1 means transparent.
          },
          "linkedContentReference": { # A reference to the external linked source content. # A reference to the external linked source content. For example, it contains a reference to the source Google Sheets chart when the embedded object is a linked chart. If unset, then the embedded object is not linked.
            "sheetsChartReference": { # A reference to a linked chart embedded from Google Sheets. # A reference to the linked chart.
              "chartId": 42, # The ID of the specific chart in the Google Sheets spreadsheet that's embedded.
              "spreadsheetId": "A String", # The ID of the Google Sheets spreadsheet that contains the source chart.
            },
          },
          "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom margin of the embedded object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "marginLeft": { # A magnitude in a single direction in the specified units. # The left margin of the embedded object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "marginRight": { # A magnitude in a single direction in the specified units. # The right margin of the embedded object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "marginTop": { # A magnitude in a single direction in the specified units. # The top margin of the embedded object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "size": { # A width and height. # The visible size of the image after cropping.
            "height": { # A magnitude in a single direction in the specified units. # The height of the object.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
            "width": { # A magnitude in a single direction in the specified units. # The width of the object.
              "magnitude": 3.14, # The magnitude.
              "unit": "A String", # The units for magnitude.
            },
          },
          "title": "A String", # The title of the embedded object. The `title` and `description` are both combined to display alt text.
        },
        "positioning": { # The positioning of a PositionedObject. The positioned object is positioned relative to the beginning of the Paragraph it's tethered to. # The positioning of this positioned object relative to the newline of the Paragraph that references this positioned object.
          "layout": "A String", # The layout of this positioned object.
          "leftOffset": { # A magnitude in a single direction in the specified units. # The offset of the left edge of the positioned object relative to the beginning of the Paragraph it's tethered to. The exact positioning of the object can depend on other content in the document and the document's styling.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "topOffset": { # A magnitude in a single direction in the specified units. # The offset of the top edge of the positioned object relative to the beginning of the Paragraph it's tethered to. The exact positioning of the object can depend on other content in the document and the document's styling.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
        },
      },
      "suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
        "A String",
      ],
      "suggestedInsertionId": "A String", # The suggested insertion ID. If empty, then this is not a suggested insertion.
      "suggestedPositionedObjectPropertiesChanges": { # The suggested changes to the positioned object properties, keyed by suggestion ID.
        "a_key": { # A suggested change to PositionedObjectProperties.
          "positionedObjectProperties": { # Properties of a PositionedObject. # A PositionedObjectProperties that only includes the changes made in this suggestion. This can be used along with the positioned_object_properties_suggestion_state to see which fields have changed and their new values.
            "embeddedObject": { # An embedded object in the document. # The embedded object of this positioned object.
              "description": "A String", # The description of the embedded object. The `title` and `description` are both combined to display alt text.
              "embeddedDrawingProperties": { # The properties of an embedded drawing and used to differentiate the object type. An embedded drawing is one that's created and edited within a document. Note that extensive details are not supported. # The properties of an embedded drawing.
              },
              "embeddedObjectBorder": { # A border around an EmbeddedObject. # The border of the embedded object.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "propertyState": "A String", # The property state of the border property.
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "imageProperties": { # The properties of an image. # The properties of an image.
                "angle": 3.14, # The clockwise rotation angle of the image, in radians.
                "brightness": 3.14, # The brightness effect of the image. The value should be in the interval [-1.0, 1.0], where 0 means no effect.
                "contentUri": "A String", # A URI to the image with a default lifetime of 30 minutes. This URI is tagged with the account of the requester. Anyone with the URI effectively accesses the image as the original requester. Access to the image may be lost if the document's sharing settings change.
                "contrast": 3.14, # The contrast effect of the image. The value should be in the interval [-1.0, 1.0], where 0 means no effect.
                "cropProperties": { # The crop properties of an image. The crop rectangle is represented using fractional offsets from the original content's 4 edges. - If the offset is in the interval (0, 1), the corresponding edge of crop rectangle is positioned inside of the image's original bounding rectangle. - If the offset is negative or greater than 1, the corresponding edge of crop rectangle is positioned outside of the image's original bounding rectangle. - If all offsets and rotation angle are 0, the image is not cropped. # The crop properties of the image.
                  "angle": 3.14, # The clockwise rotation angle of the crop rectangle around its center, in radians. Rotation is applied after the offsets.
                  "offsetBottom": 3.14, # The offset specifies how far inwards the bottom edge of the crop rectangle is from the bottom edge of the original content as a fraction of the original content's height.
                  "offsetLeft": 3.14, # The offset specifies how far inwards the left edge of the crop rectangle is from the left edge of the original content as a fraction of the original content's width.
                  "offsetRight": 3.14, # The offset specifies how far inwards the right edge of the crop rectangle is from the right edge of the original content as a fraction of the original content's width.
                  "offsetTop": 3.14, # The offset specifies how far inwards the top edge of the crop rectangle is from the top edge of the original content as a fraction of the original content's height.
                },
                "sourceUri": "A String", # The source URI is the URI used to insert the image. The source URI can be empty.
                "transparency": 3.14, # The transparency effect of the image. The value should be in the interval [0.0, 1.0], where 0 means no effect and 1 means transparent.
              },
              "linkedContentReference": { # A reference to the external linked source content. # A reference to the external linked source content. For example, it contains a reference to the source Google Sheets chart when the embedded object is a linked chart. If unset, then the embedded object is not linked.
                "sheetsChartReference": { # A reference to a linked chart embedded from Google Sheets. # A reference to the linked chart.
                  "chartId": 42, # The ID of the specific chart in the Google Sheets spreadsheet that's embedded.
                  "spreadsheetId": "A String", # The ID of the Google Sheets spreadsheet that contains the source chart.
                },
              },
              "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom margin of the embedded object.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginLeft": { # A magnitude in a single direction in the specified units. # The left margin of the embedded object.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginRight": { # A magnitude in a single direction in the specified units. # The right margin of the embedded object.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "marginTop": { # A magnitude in a single direction in the specified units. # The top margin of the embedded object.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "size": { # A width and height. # The visible size of the image after cropping.
                "height": { # A magnitude in a single direction in the specified units. # The height of the object.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the object.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "title": "A String", # The title of the embedded object. The `title` and `description` are both combined to display alt text.
            },
            "positioning": { # The positioning of a PositionedObject. The positioned object is positioned relative to the beginning of the Paragraph it's tethered to. # The positioning of this positioned object relative to the newline of the Paragraph that references this positioned object.
              "layout": "A String", # The layout of this positioned object.
              "leftOffset": { # A magnitude in a single direction in the specified units. # The offset of the left edge of the positioned object relative to the beginning of the Paragraph it's tethered to. The exact positioning of the object can depend on other content in the document and the document's styling.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "topOffset": { # A magnitude in a single direction in the specified units. # The offset of the top edge of the positioned object relative to the beginning of the Paragraph it's tethered to. The exact positioning of the object can depend on other content in the document and the document's styling.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
            },
          },
          "positionedObjectPropertiesSuggestionState": { # A mask that indicates which of the fields on the base PositionedObjectProperties have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base PositionedObjectProperties have been changed in this suggestion.
            "embeddedObjectSuggestionState": { # A mask that indicates which of the fields on the base EmbeddedObject have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in embedded_object have been changed in this suggestion.
              "descriptionSuggested": True or False, # Indicates if there was a suggested change to description.
              "embeddedDrawingPropertiesSuggestionState": { # A mask that indicates which of the fields on the base EmbeddedDrawingProperties have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in embedded_drawing_properties have been changed in this suggestion.
              },
              "embeddedObjectBorderSuggestionState": { # A mask that indicates which of the fields on the base EmbeddedObjectBorder have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in embedded_object_border have been changed in this suggestion.
                "colorSuggested": True or False, # Indicates if there was a suggested change to color.
                "dashStyleSuggested": True or False, # Indicates if there was a suggested change to dash_style.
                "propertyStateSuggested": True or False, # Indicates if there was a suggested change to property_state.
                "widthSuggested": True or False, # Indicates if there was a suggested change to width.
              },
              "imagePropertiesSuggestionState": { # A mask that indicates which of the fields on the base ImageProperties have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in image_properties have been changed in this suggestion.
                "angleSuggested": True or False, # Indicates if there was a suggested change to angle.
                "brightnessSuggested": True or False, # Indicates if there was a suggested change to brightness.
                "contentUriSuggested": True or False, # Indicates if there was a suggested change to content_uri.
                "contrastSuggested": True or False, # Indicates if there was a suggested change to contrast.
                "cropPropertiesSuggestionState": { # A mask that indicates which of the fields on the base CropProperties have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in crop_properties have been changed in this suggestion.
                  "angleSuggested": True or False, # Indicates if there was a suggested change to angle.
                  "offsetBottomSuggested": True or False, # Indicates if there was a suggested change to offset_bottom.
                  "offsetLeftSuggested": True or False, # Indicates if there was a suggested change to offset_left.
                  "offsetRightSuggested": True or False, # Indicates if there was a suggested change to offset_right.
                  "offsetTopSuggested": True or False, # Indicates if there was a suggested change to offset_top.
                },
                "sourceUriSuggested": True or False, # Indicates if there was a suggested change to source_uri.
                "transparencySuggested": True or False, # Indicates if there was a suggested change to transparency.
              },
              "linkedContentReferenceSuggestionState": { # A mask that indicates which of the fields on the base LinkedContentReference have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in linked_content_reference have been changed in this suggestion.
                "sheetsChartReferenceSuggestionState": { # A mask that indicates which of the fields on the base SheetsChartReference have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in sheets_chart_reference have been changed in this suggestion.
                  "chartIdSuggested": True or False, # Indicates if there was a suggested change to chart_id.
                  "spreadsheetIdSuggested": True or False, # Indicates if there was a suggested change to spreadsheet_id.
                },
              },
              "marginBottomSuggested": True or False, # Indicates if there was a suggested change to margin_bottom.
              "marginLeftSuggested": True or False, # Indicates if there was a suggested change to margin_left.
              "marginRightSuggested": True or False, # Indicates if there was a suggested change to margin_right.
              "marginTopSuggested": True or False, # Indicates if there was a suggested change to margin_top.
              "sizeSuggestionState": { # A mask that indicates which of the fields on the base Size have been changed in this suggestion. For any field set to true, the Size has a new suggested value. # A mask that indicates which of the fields in size have been changed in this suggestion.
                "heightSuggested": True or False, # Indicates if there was a suggested change to height.
                "widthSuggested": True or False, # Indicates if there was a suggested change to width.
              },
              "titleSuggested": True or False, # Indicates if there was a suggested change to title.
            },
            "positioningSuggestionState": { # A mask that indicates which of the fields on the base PositionedObjectPositioning have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in positioning have been changed in this suggestion.
              "layoutSuggested": True or False, # Indicates if there was a suggested change to layout.
              "leftOffsetSuggested": True or False, # Indicates if there was a suggested change to left_offset.
              "topOffsetSuggested": True or False, # Indicates if there was a suggested change to top_offset.
            },
          },
        },
      },
    },
  },
  "revisionId": "A String", # Output only. The revision ID of the document. Can be used in update requests to specify which revision of a document to apply updates to and how the request should behave if the document has been edited since that revision. Only populated if the user has edit access to the document. The revision ID is not a sequential number but an opaque string. The format of the revision ID might change over time. A returned revision ID is only guaranteed to be valid for 24 hours after it has been returned and cannot be shared across users. If the revision ID is unchanged between calls, then the document has not changed. Conversely, a changed ID (for the same document and user) usually means the document has been updated. However, a changed ID can also be due to internal factors such as ID format changes.
  "suggestedDocumentStyleChanges": { # Output only. The suggested changes to the style of the document, keyed by suggestion ID.
    "a_key": { # A suggested change to the DocumentStyle.
      "documentStyle": { # The style of the document. # A DocumentStyle that only includes the changes made in this suggestion. This can be used along with the document_style_suggestion_state to see which fields have changed and their new values.
        "background": { # Represents the background of a document. # The background of the document. Documents cannot have a transparent background color.
          "color": { # A color that can either be fully opaque or fully transparent. # The background color.
            "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
              "rgbColor": { # An RGB color. # The RGB color value.
                "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                "red": 3.14, # The red component of the color, from 0.0 to 1.0.
              },
            },
          },
        },
        "defaultFooterId": "A String", # The ID of the default footer. If not set, there's no default footer. This property is read-only.
        "defaultHeaderId": "A String", # The ID of the default header. If not set, there's no default header. This property is read-only.
        "evenPageFooterId": "A String", # The ID of the footer used only for even pages. The value of use_even_page_header_footer determines whether to use the default_footer_id or this value for the footer on even pages. If not set, there's no even page footer. This property is read-only.
        "evenPageHeaderId": "A String", # The ID of the header used only for even pages. The value of use_even_page_header_footer determines whether to use the default_header_id or this value for the header on even pages. If not set, there's no even page header. This property is read-only.
        "firstPageFooterId": "A String", # The ID of the footer used only for the first page. If not set then a unique footer for the first page does not exist. The value of use_first_page_header_footer determines whether to use the default_footer_id or this value for the footer on the first page. If not set, there's no first page footer. This property is read-only.
        "firstPageHeaderId": "A String", # The ID of the header used only for the first page. If not set then a unique header for the first page does not exist. The value of use_first_page_header_footer determines whether to use the default_header_id or this value for the header on the first page. If not set, there's no first page header. This property is read-only.
        "flipPageOrientation": True or False, # Optional. Indicates whether to flip the dimensions of the page_size, which allows changing the page orientation between portrait and landscape.
        "marginBottom": { # A magnitude in a single direction in the specified units. # The bottom page margin. Updating the bottom page margin on the document style clears the bottom page margin on all section styles.
          "magnitude": 3.14, # The magnitude.
          "unit": "A String", # The units for magnitude.
        },
        "marginFooter": { # A magnitude in a single direction in the specified units. # The amount of space between the bottom of the page and the contents of the footer.
          "magnitude": 3.14, # The magnitude.
          "unit": "A String", # The units for magnitude.
        },
        "marginHeader": { # A magnitude in a single direction in the specified units. # The amount of space between the top of the page and the contents of the header.
          "magnitude": 3.14, # The magnitude.
          "unit": "A String", # The units for magnitude.
        },
        "marginLeft": { # A magnitude in a single direction in the specified units. # The left page margin. Updating the left page margin on the document style clears the left page margin on all section styles. It may also cause columns to resize in all sections.
          "magnitude": 3.14, # The magnitude.
          "unit": "A String", # The units for magnitude.
        },
        "marginRight": { # A magnitude in a single direction in the specified units. # The right page margin. Updating the right page margin on the document style clears the right page margin on all section styles. It may also cause columns to resize in all sections.
          "magnitude": 3.14, # The magnitude.
          "unit": "A String", # The units for magnitude.
        },
        "marginTop": { # A magnitude in a single direction in the specified units. # The top page margin. Updating the top page margin on the document style clears the top page margin on all section styles.
          "magnitude": 3.14, # The magnitude.
          "unit": "A String", # The units for magnitude.
        },
        "pageNumberStart": 42, # The page number from which to start counting the number of pages.
        "pageSize": { # A width and height. # The size of a page in the document.
          "height": { # A magnitude in a single direction in the specified units. # The height of the object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
          "width": { # A magnitude in a single direction in the specified units. # The width of the object.
            "magnitude": 3.14, # The magnitude.
            "unit": "A String", # The units for magnitude.
          },
        },
        "useCustomHeaderFooterMargins": True or False, # Indicates whether DocumentStyle margin_header, SectionStyle margin_header and DocumentStyle margin_footer, SectionStyle margin_footer are respected. When false, the default values in the Docs editor for header and footer margin are used. This property is read-only.
        "useEvenPageHeaderFooter": True or False, # Indicates whether to use the even page header / footer IDs for the even pages.
        "useFirstPageHeaderFooter": True or False, # Indicates whether to use the first page header / footer IDs for the first page.
      },
      "documentStyleSuggestionState": { # A mask that indicates which of the fields on the base DocumentStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields on the base DocumentStyle have been changed in this suggestion.
        "backgroundSuggestionState": { # A mask that indicates which of the fields on the base Background have been changed in this suggestion. For any field set to true, the Backgound has a new suggested value. # A mask that indicates which of the fields in background have been changed in this suggestion.
          "backgroundColorSuggested": True or False, # Indicates whether the current background color has been modified in this suggestion.
        },
        "defaultFooterIdSuggested": True or False, # Indicates if there was a suggested change to default_footer_id.
        "defaultHeaderIdSuggested": True or False, # Indicates if there was a suggested change to default_header_id.
        "evenPageFooterIdSuggested": True or False, # Indicates if there was a suggested change to even_page_footer_id.
        "evenPageHeaderIdSuggested": True or False, # Indicates if there was a suggested change to even_page_header_id.
        "firstPageFooterIdSuggested": True or False, # Indicates if there was a suggested change to first_page_footer_id.
        "firstPageHeaderIdSuggested": True or False, # Indicates if there was a suggested change to first_page_header_id.
        "flipPageOrientationSuggested": True or False, # Optional. Indicates if there was a suggested change to flip_page_orientation.
        "marginBottomSuggested": True or False, # Indicates if there was a suggested change to margin_bottom.
        "marginFooterSuggested": True or False, # Indicates if there was a suggested change to margin_footer.
        "marginHeaderSuggested": True or False, # Indicates if there was a suggested change to margin_header.
        "marginLeftSuggested": True or False, # Indicates if there was a suggested change to margin_left.
        "marginRightSuggested": True or False, # Indicates if there was a suggested change to margin_right.
        "marginTopSuggested": True or False, # Indicates if there was a suggested change to margin_top.
        "pageNumberStartSuggested": True or False, # Indicates if there was a suggested change to page_number_start.
        "pageSizeSuggestionState": { # A mask that indicates which of the fields on the base Size have been changed in this suggestion. For any field set to true, the Size has a new suggested value. # A mask that indicates which of the fields in size have been changed in this suggestion.
          "heightSuggested": True or False, # Indicates if there was a suggested change to height.
          "widthSuggested": True or False, # Indicates if there was a suggested change to width.
        },
        "useCustomHeaderFooterMarginsSuggested": True or False, # Indicates if there was a suggested change to use_custom_header_footer_margins.
        "useEvenPageHeaderFooterSuggested": True or False, # Indicates if there was a suggested change to use_even_page_header_footer.
        "useFirstPageHeaderFooterSuggested": True or False, # Indicates if there was a suggested change to use_first_page_header_footer.
      },
    },
  },
  "suggestedNamedStylesChanges": { # Output only. The suggested changes to the named styles of the document, keyed by suggestion ID.
    "a_key": { # A suggested change to the NamedStyles.
      "namedStyles": { # The named styles. Paragraphs in the document can inherit their TextStyle and ParagraphStyle from these named styles. # A NamedStyles that only includes the changes made in this suggestion. This can be used along with the named_styles_suggestion_state to see which fields have changed and their new values.
        "styles": [ # The named styles. There's an entry for each of the possible named style types.
          { # A named style. Paragraphs in the document can inherit their TextStyle and ParagraphStyle from this named style when they have the same named style type.
            "namedStyleType": "A String", # The type of this named style.
            "paragraphStyle": { # Styles that apply to a whole paragraph. Inherited paragraph styles are represented as unset fields in this message. A paragraph style's parent depends on where the paragraph style is defined: * The ParagraphStyle on a Paragraph inherits from the paragraph's corresponding named style type. * The ParagraphStyle on a named style inherits from the normal text named style. * The ParagraphStyle of the normal text named style inherits from the default paragraph style in the Docs editor. * The ParagraphStyle on a Paragraph element that's contained in a table may inherit its paragraph style from the table style. If the paragraph style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The paragraph style of this named style.
              "alignment": "A String", # The text alignment for this paragraph.
              "avoidWidowAndOrphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value is inherited from the parent.
              "borderBetween": { # A border around a paragraph. # The border between this paragraph and the next and previous paragraphs. If unset, the value is inherited from the parent. The between border is rendered when the adjacent paragraph has the same border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If unset, the value is inherited from the parent. The bottom border is rendered when the paragraph below has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unset, the value is inherited from the parent. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset, the value is inherited from the parent. The top border is rendered when the paragraph above has different border and indent properties. Paragraph borders cannot be partially updated. When changing a paragraph border, the new border must be specified in its entirety.
                "color": { # A color that can either be fully opaque or fully transparent. # The color of the border.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
                "dashStyle": "A String", # The dash style of the border.
                "padding": { # A magnitude in a single direction in the specified units. # The padding of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
                "width": { # A magnitude in a single direction in the specified units. # The width of the border.
                  "magnitude": 3.14, # The magnitude.
                  "unit": "A String", # The units for magnitude.
                },
              },
              "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since paragraph direction is not inherited.
              "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a heading. This property is read-only.
              "indentEnd": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the end of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "indentFirstLine": { # A magnitude in a single direction in the specified units. # The amount of indentation for the first line of the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "indentStart": { # A magnitude in a single direction in the specified units. # The amount of indentation for the paragraph on the side that corresponds to the start of the text, based on the current paragraph direction. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "keepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the same page or column if possible. If unset, the value is inherited from the parent.
              "keepWithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same page or column as the next paragraph if possible. If unset, the value is inherited from the parent.
              "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent.
              "namedStyleType": "A String", # The named style type of the paragraph. Since updating the named style type affects other properties within ParagraphStyle, the named style type is applied before the other properties are updated.
              "pageBreakBefore": True or False, # Whether the current paragraph should always start at the beginning of a page. If unset, the value is inherited from the parent. Attempting to update page_break_before for paragraphs in unsupported regions, including Table, Header, Footer and Footnote, can result in an invalid document state that returns a 400 bad request error.
              "shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is inherited from the parent.
                "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of this paragraph shading.
                  "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                    "rgbColor": { # An RGB color. # The RGB color value.
                      "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                      "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                      "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                    },
                  },
                },
              },
              "spaceAbove": { # A magnitude in a single direction in the specified units. # The amount of extra space above the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "spaceBelow": { # A magnitude in a single direction in the specified units. # The amount of extra space below the paragraph. If unset, the value is inherited from the parent.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "spacingMode": "A String", # The spacing mode for the paragraph.
              "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not inherited. This property is read-only.
                { # A tab stop within a paragraph.
                  "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
                  "offset": { # A magnitude in a single direction in the specified units. # The offset between this tab stop and the start margin.
                    "magnitude": 3.14, # The magnitude.
                    "unit": "A String", # The units for magnitude.
                  },
                },
              ],
            },
            "textStyle": { # Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor. # The text style of this named style.
              "backgroundColor": { # A color that can either be fully opaque or fully transparent. # The background color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "baselineOffset": "A String", # The text's vertical offset from its normal position. Text with `SUPERSCRIPT` or `SUBSCRIPT` baseline offsets is automatically rendered in a smaller font size, computed based on the `font_size` field. Changes in this field don't affect the `font_size`.
              "bold": True or False, # Whether or not the text is rendered as bold.
              "fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's font.
                "magnitude": 3.14, # The magnitude.
                "unit": "A String", # The units for magnitude.
              },
              "foregroundColor": { # A color that can either be fully opaque or fully transparent. # The foreground color of the text. If set, the color is either an RGB color or transparent, depending on the `color` field.
                "color": { # A solid color. # If set, this will be used as an opaque color. If unset, this represents a transparent color.
                  "rgbColor": { # An RGB color. # The RGB color value.
                    "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
                    "green": 3.14, # The green component of the color, from 0.0 to 1.0.
                    "red": 3.14, # The red component of the color, from 0.0 to 1.0.
                  },
                },
              },
              "italic": True or False, # Whether or not the text is italicized.
              "link": { # A reference to another portion of a document or an external URL resource. # The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: * When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. * Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. * Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as `"ABC\n123"`, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. * Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request.
                "bookmarkId": "A String", # The ID of a bookmark in this document.
                "headingId": "A String", # The ID of a heading in this document.
                "url": "A String", # An external URL.
              },
              "smallCaps": True or False, # Whether or not the text is in small capital letters.
              "strikethrough": True or False, # Whether or not the text is struck through.
              "underline": True or False, # Whether or not the text is underlined.
              "weightedFontFamily": { # Represents a font family and weight of text. # The font family and rendered weight of the text. If an update request specifies values for both `weighted_font_family` and `bold`, the `weighted_font_family` is applied first, then `bold`. If `weighted_font_family#weight` is not set, it defaults to `400`. If `weighted_font_family` is set, then `weighted_font_family#font_family` must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
                "fontFamily": "A String", # The font family of the text. The font family can be any font from the Font menu in Docs or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered in `Arial`.
                "weight": 42, # The weight of the font. This field can have any value that's a multiple of `100` between `100` and `900`, inclusive. This range corresponds to the numerical values described in the CSS 2.1 Specification, [section 15.6](https://www.w3.org/TR/CSS21/fonts.html#font-boldness), with non-numerical values disallowed. The default value is `400` ("normal"). The font weight makes up just one component of the rendered font weight. A combination of the `weight` and the text style's resolved `bold` value determine the rendered weight, after accounting for inheritance: * If the text is bold and the weight is less than `400`, the rendered weight is 400. * If the text is bold and the weight is greater than or equal to `400` but is less than `700`, the rendered weight is `700`. * If the weight is greater than or equal to `700`, the rendered weight is equal to the weight. * If the text is not bold, the rendered weight is equal to the weight.
              },
            },
          },
        ],
      },
      "namedStylesSuggestionState": { # The suggestion state of a NamedStyles message. # A mask that indicates which of the fields on the base NamedStyles have been changed in this suggestion.
        "stylesSuggestionStates": [ # A mask that indicates which of the fields on the corresponding NamedStyle in styles have been changed in this suggestion. The order of these named style suggestion states matches the order of the corresponding named style within the named styles suggestion.
          { # A suggestion state of a NamedStyle message.
            "namedStyleType": "A String", # The named style type that this suggestion state corresponds to. This field is provided as a convenience for matching the NamedStyleSuggestionState with its corresponding NamedStyle.
            "paragraphStyleSuggestionState": { # A mask that indicates which of the fields on the base ParagraphStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in paragraph style have been changed in this suggestion.
              "alignmentSuggested": True or False, # Indicates if there was a suggested change to alignment.
              "avoidWidowAndOrphanSuggested": True or False, # Indicates if there was a suggested change to avoid_widow_and_orphan.
              "borderBetweenSuggested": True or False, # Indicates if there was a suggested change to border_between.
              "borderBottomSuggested": True or False, # Indicates if there was a suggested change to border_bottom.
              "borderLeftSuggested": True or False, # Indicates if there was a suggested change to border_left.
              "borderRightSuggested": True or False, # Indicates if there was a suggested change to border_right.
              "borderTopSuggested": True or False, # Indicates if there was a suggested change to border_top.
              "directionSuggested": True or False, # Indicates if there was a suggested change to direction.
              "headingIdSuggested": True or False, # Indicates if there was a suggested change to heading_id.
              "indentEndSuggested": True or False, # Indicates if there was a suggested change to indent_end.
              "indentFirstLineSuggested": True or False, # Indicates if there was a suggested change to indent_first_line.
              "indentStartSuggested": True or False, # Indicates if there was a suggested change to indent_start.
              "keepLinesTogetherSuggested": True or False, # Indicates if there was a suggested change to keep_lines_together.
              "keepWithNextSuggested": True or False, # Indicates if there was a suggested change to keep_with_next.
              "lineSpacingSuggested": True or False, # Indicates if there was a suggested change to line_spacing.
              "namedStyleTypeSuggested": True or False, # Indicates if there was a suggested change to named_style_type.
              "pageBreakBeforeSuggested": True or False, # Indicates if there was a suggested change to page_break_before.
              "shadingSuggestionState": { # A mask that indicates which of the fields on the base Shading have been changed in this suggested change. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in shading have been changed in this suggestion.
                "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to the Shading.
              },
              "spaceAboveSuggested": True or False, # Indicates if there was a suggested change to space_above.
              "spaceBelowSuggested": True or False, # Indicates if there was a suggested change to space_below.
              "spacingModeSuggested": True or False, # Indicates if there was a suggested change to spacing_mode.
            },
            "textStyleSuggestionState": { # A mask that indicates which of the fields on the base TextStyle have been changed in this suggestion. For any field set to true, there's a new suggested value. # A mask that indicates which of the fields in text style have been changed in this suggestion.
              "backgroundColorSuggested": True or False, # Indicates if there was a suggested change to background_color.
              "baselineOffsetSuggested": True or False, # Indicates if there was a suggested change to baseline_offset.
              "boldSuggested": True or False, # Indicates if there was a suggested change to bold.
              "fontSizeSuggested": True or False, # Indicates if there was a suggested change to font_size.
              "foregroundColorSuggested": True or False, # Indicates if there was a suggested change to foreground_color.
              "italicSuggested": True or False, # Indicates if there was a suggested change to italic.
              "linkSuggested": True or False, # Indicates if there was a suggested change to link.
              "smallCapsSuggested": True or False, # Indicates if there was a suggested change to small_caps.
              "strikethroughSuggested": True or False, # Indicates if there was a suggested change to strikethrough.
              "underlineSuggested": True or False, # Indicates if there was a suggested change to underline.
              "weightedFontFamilySuggested": True or False, # Indicates if there was a suggested change to weighted_font_family.
            },
          },
        ],
      },
    },
  },
  "suggestionsViewMode": "A String", # Output only. The suggestions view mode applied to the document. Note: When editing a document, changes must be based on a document with SUGGESTIONS_INLINE.
  "title": "A String", # The title of the document.
}