• Home
  • Raw
  • Download

Lines Matching full:the

79 <p class="firstline">Applies one or more updates to the document.</p>
82 <p class="firstline">Creates a blank document using the title given in the request. Other fields</p>
85 <p class="firstline">Gets the latest version of the specified document.</p>
89 <pre>Applies one or more updates to the document.
92 being applied. If any request is not valid, then the entire request will
98 The order of replies matches that of the requests.
100 For example, suppose you call batchUpdate with four updates, and only the
101 third one returns information. The response would have two empty replies,
102 the reply to the third request, and another empty reply, in that order.
104 Because other users may be editing the document, the document
107 collaborators, the document should reflect your changes. In any case,
108 the updates in your request are guaranteed to be applied together
112 documentId: string, The ID of the document to update. (required)
113 body: object, The request body. (required)
114 The object takes the form of:
117 "requests": [ # A list of updates to apply to the document.
119 …"insertText": { # Inserts text at the specified location. # Inserts text at the specified location.
120 "text": "A String", # The text to be inserted.
124 # The paragraph style of the new paragraph will be copied from the paragraph
125 # at the current insertion index, including lists and bullets.
128 # preserving the styling of neighboring text. In most cases, the text style
129 # for the inserted text will match the text immediately before the insertion
133 # from the Unicode Basic Multilingual Plane Private Use Area (U+E000-U+F8FF)
134 # will be stripped out of the inserted text.
135 …gmentLocation": { # Location at the end of a body, header, footer or footnote. The location is # I…
136 # the document body.
137 # immediately before the last newline in the document segment.
138 … "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty
139 # segment ID signifies the document's body.
141 …"location": { # A particular location in the document. # Inserts the text at a specific index in t…
143 # Text must be inserted inside the bounds of an existing
145 # inserted at a table's start index (i.e. between the table and its
146 # preceding paragraph). The text must be inserted in the preceding
148 "index": 42, # The zero-based index, in UTF-16 code units.
150 # The index is relative to the beginning of the segment specified by
152 … "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty
153 # segment ID signifies the document's body.
156 …"deleteParagraphBullets": { # Deletes bullets from all of the paragraphs that overlap with the giv…
158 # The nesting level of each paragraph will be visually preserved by adding
159 # indent to the start of the corresponding paragraph.
160 "range": { # Specifies a contiguous range of text. # The range to delete bullets from.
161 … "endIndex": 42, # The zero-based end index of this range, exclusive, in UTF-16 code units.
165 "startIndex": 42, # The zero-based start index of this range, in UTF-16 code units.
169 …"segmentId": "A String", # The ID of the header, footer or footnote that this range is contained i…
170 # An empty segment ID signifies the document's body.
173 …"createParagraphBullets": { # Creates bullets for all of the paragraphs that overlap with the give…
175 # The nesting level of each paragraph will be determined by counting leading
176 # tabs in front of each paragraph. To avoid excess space between the bullet and
177 # the corresponding paragraph, these leading tabs are removed by this request.
178 # This may change the indices of parts of the text.
180 # If the paragraph immediately before paragraphs being updated is in a list
181 # with a matching preset, the paragraphs being updated are added to that
183 "bulletPreset": "A String", # The kinds of bullet glyphs to be used.
184 … "range": { # Specifies a contiguous range of text. # The range to apply the bullet preset to.
185 … "endIndex": 42, # The zero-based end index of this range, exclusive, in UTF-16 code units.
189 "startIndex": 42, # The zero-based start index of this range, in UTF-16 code units.
193 …"segmentId": "A String", # The ID of the header, footer or footnote that this range is contained i…
194 # An empty segment ID signifies the document's body.
197 …"updateTableRowStyle": { # Updates the TableRowStyle of rows in a # Updates the row style in a tab…
199 "fields": "A String", # The fields that should be updated.
201 # At least one field must be specified. The root `tableRowStyle` is implied
205 # For example to update the minimum row height, set `fields` to
207 "tableRowStyle": { # Styles that apply to a table row. # The styles to be set on the rows.
208 …agnitude in a single direction in the specified units. # The minimum height of the row. The row wi…
209 # at a height equal to or greater than this value in order to show all the
210 # content in the row's cells.
211 "magnitude": 3.14, # The magnitude.
212 "unit": "A String", # The units for magnitude.
215 …leStartLocation": { # A particular location in the document. # The location where the table starts…
216 "index": 42, # The zero-based index, in UTF-16 code units.
218 # The index is relative to the beginning of the segment specified by
220 … "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty
221 # segment ID signifies the document's body.
223 "rowIndices": [ # The list of zero-based row indices whose style should be updated. If no
228 …ragraphStyle": { # Update the styling of all paragraphs that overlap with the given range. # Updat…
229 "fields": "A String", # The fields that should be updated.
231 # At least one field must be specified. The root `paragraph_style` is implied
234 # For example, to update the paragraph style's alignment property, set
237 # To reset a property to its default value, include its field name in the
238 # field mask but leave the field itself unset.
239 …"range": { # Specifies a contiguous range of text. # The range overlapping the paragraphs to style.
240 … "endIndex": 42, # The zero-based end index of this range, exclusive, in UTF-16 code units.
244 "startIndex": 42, # The zero-based start index of this range, in UTF-16 code units.
248 …"segmentId": "A String", # The ID of the header, footer or footnote that this range is contained i…
249 # An empty segment ID signifies the document's body.
251 …"paragraphStyle": { # Styles that apply to a whole paragraph. # The styles to set on the paragraph…
254 … # the behavior of the Docs editor. See the documentation of ParagraphStyle for more information.
257 # A paragraph style's parent depends on where the paragraph style is defined:
259 # * The ParagraphStyle on a Paragraph
260 # inherits from the paragraph's corresponding named style type.
261 # * The ParagraphStyle on a named style
262 # inherits from the normal text named style.
263 # * The ParagraphStyle of the normal text named style inherits
264 # from the default paragraph style in the Docs editor.
265 # * The ParagraphStyle on a Paragraph
267 # the table style.
269 # If the paragraph style does not inherit from a parent, unsetting fields will
270 # revert the style to a value matching the defaults in the Docs editor.
271 "spacingMode": "A String", # The spacing mode for the paragraph.
272 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
275 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
276 # inherited from the parent.
277 "magnitude": 3.14, # The magnitude.
278 "unit": "A String", # The units for magnitude.
280 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
281 # page or column as the next paragraph if possible. If unset, the value is
282 # inherited from the parent.
283 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
284 # is represented as 100.0. If unset, the value is inherited from the parent.
285 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
286 # is inherited from the parent.
287 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
288 # inherited from the parent.
290 # The bottom border is rendered when the paragraph below has different border
294 # changes to a paragraph border the new border must be specified in
296 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
299 "rgbColor": { # An RGB color. # The RGB color value.
300 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
301 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
302 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
306 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
307 "magnitude": 3.14, # The magnitude.
308 "unit": "A String", # The units for magnitude.
310 "dashStyle": "A String", # The dash style of the border.
311 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
312 "magnitude": 3.14, # The magnitude.
313 "unit": "A String", # The units for magnitude.
316 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
317 # the start of the text, based on the current paragraph direction. If unset,
318 # the value is inherited from the parent.
319 "magnitude": 3.14, # The magnitude.
320 "unit": "A String", # The units for magnitude.
322 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
323 # If unset, the value is inherited from the parent.
325 # The between border is rendered when the adjacent paragraph has the same
329 # changes to a paragraph border the new border must be specified in
331 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
334 "rgbColor": { # An RGB color. # The RGB color value.
335 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
336 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
337 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
341 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
342 "magnitude": 3.14, # The magnitude.
343 "unit": "A String", # The units for magnitude.
345 "dashStyle": "A String", # The dash style of the border.
346 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
347 "magnitude": 3.14, # The magnitude.
348 "unit": "A String", # The units for magnitude.
351 "namedStyleType": "A String", # The named style type of the paragraph.
353 # Since updating the named style type affects other properties within
354 # ParagraphStyle, the named style type is applied before the other properties
356 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
357 # from the parent.
360 # changes to a paragraph border the new border must be specified in
362 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
365 "rgbColor": { # An RGB color. # The RGB color value.
366 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
367 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
368 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
372 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
373 "magnitude": 3.14, # The magnitude.
374 "unit": "A String", # The units for magnitude.
376 "dashStyle": "A String", # The dash style of the border.
377 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
378 "magnitude": 3.14, # The magnitude.
379 "unit": "A String", # The units for magnitude.
382 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
383 # the end of the text, based on the current paragraph direction. If unset,
384 # the value is inherited from the parent.
385 "magnitude": 3.14, # The magnitude.
386 "unit": "A String", # The units for magnitude.
388 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
389 # from the parent.
392 # changes to a paragraph border the new border must be specified in
394 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
397 "rgbColor": { # An RGB color. # The RGB color value.
398 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
399 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
400 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
404 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
405 "magnitude": 3.14, # The magnitude.
406 "unit": "A String", # The units for magnitude.
408 "dashStyle": "A String", # The dash style of the border.
409 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
410 "magnitude": 3.14, # The magnitude.
411 "unit": "A String", # The units for magnitude.
414 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
415 # inherited from the parent.
416 "magnitude": 3.14, # The magnitude.
417 "unit": "A String", # The units for magnitude.
419 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
421 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
423 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
426 "rgbColor": { # An RGB color. # The RGB color value.
427 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
428 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
429 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
434 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
435 # from the parent.
437 # The top border is rendered when the paragraph above has different border
441 # changes to a paragraph border the new border must be specified in
443 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
446 "rgbColor": { # An RGB color. # The RGB color value.
447 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
448 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
449 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
453 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
454 "magnitude": 3.14, # The magnitude.
455 "unit": "A String", # The units for magnitude.
457 "dashStyle": "A String", # The dash style of the border.
458 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
459 "magnitude": 3.14, # The magnitude.
460 "unit": "A String", # The units for magnitude.
463 "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
466 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
467 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
468 "magnitude": 3.14, # The magnitude.
469 "unit": "A String", # The units for magnitude.
473 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
474 # the value is inherited from the parent.
475 "magnitude": 3.14, # The magnitude.
476 "unit": "A String", # The units for magnitude.
478 "alignment": "A String", # The text alignment for this paragraph.
479 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
480 # column if possible. If unset, the value is inherited from the parent.
483 … "deleteContentRange": { # Deletes content from the document. # Deletes content from the document.
484 "range": { # Specifies a contiguous range of text. # The range of content to delete.
487 # to paragraph styles, lists, positioned objects and bookmarks as the two
496 # * Deleting the last newline character of a Body, Header,
498 # * Deleting the start or end of a Table,
499 # TableOfContents or Equation without deleting the entire element.
500 # * Deleting the newline character before a
503 # SectionBreak without deleting the
505 # * Deleting individual rows or cells of a table. Deleting the content within
507 … "endIndex": 42, # The zero-based end index of this range, exclusive, in UTF-16 code units.
511 "startIndex": 42, # The zero-based start index of this range, in UTF-16 code units.
515 …"segmentId": "A String", # The ID of the header, footer or footnote that this range is contained i…
516 # An empty segment ID signifies the document's body.
519 …nces of text matching a criteria with replace text. # Replaces all instances of the specified text.
520 …": { # A criteria that matches a specific string of text in the document. # Finds text in the docu…
521 "text": "A String", # The text to search for in the document.
522 "matchCase": True or False, # Indicates whether the search should respect case:
524 # - `True`: the search is case sensitive.
525 # - `False`: the search is case insensitive.
527 "replaceText": "A String", # The text that will replace the matched text.
530 "namedRangeId": "A String", # The ID of the named range to delete.
531 "name": "A String", # The name of the range(s) to delete. All named ranges with the given
534 …"insertTable": { # Inserts a table at the specified location. # Inserts a table at the specified l…
536 # A newline character will be inserted before the inserted table.
537 …ocation": { # Location at the end of a body, header, footer or footnote. The location is # Inserts…
538 # body. A newline character will be inserted before the inserted table.
541 # immediately before the last newline in the document segment.
542 … "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty
543 # segment ID signifies the document's body.
545 "rows": 42, # The number of rows in the table.
546 …"location": { # A particular location in the document. # Inserts the table at a specific model ind…
548 # A newline character will be inserted before the inserted table, therefore
549 # the table start index will be at the specified location index + 1.
551 # The table must be inserted inside the bounds of an existing
557 "index": 42, # The zero-based index, in UTF-16 code units.
559 # The index is relative to the beginning of the segment specified by
561 … "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty
562 # segment ID signifies the document's body.
564 "columns": 42, # The number of columns in the table.
567 …n": { # Location of a single cell within a table. # The reference table cell location from which t…
569 # The row this cell spans will be deleted. If this is a merged cell that
570 # spans multiple rows, all rows that the cell spans will be deleted. If no
571 # rows remain in the table after this deletion, the whole table is deleted.
572 … "rowIndex": 42, # The zero-based row index. For example, the second row in the table has a
574 … "columnIndex": 42, # The zero-based column index. For example, the second column in the table
576 …leStartLocation": { # A particular location in the document. # The location where the table starts…
577 "index": 42, # The zero-based index, in UTF-16 code units.
579 # The index is relative to the beginning of the segment specified by
581 … "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty
582 # segment ID signifies the document's body.
586 …{ # Inserts a page break followed by a newline at the specified location. # Inserts a page break a…
587 …ation": { # Location at the end of a body, header, footer or footnote. The location is # Inserts t…
590 # Since page breaks can only be inserted inside the body, the segment ID field must be
592 # immediately before the last newline in the document segment.
593 … "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty
594 # segment ID signifies the document's body.
596 …"location": { # A particular location in the document. # Inserts the page break at a specific inde…
598 # The page break must be inserted inside the bounds of an existing
600 # inserted at a table's start index (i.e. between the table and its
604 # or footer. Since page breaks can only be inserted inside the body, the
607 "index": 42, # The zero-based index, in UTF-16 code units.
609 # The index is relative to the beginning of the segment specified by
611 … "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty
612 # segment ID signifies the document's body.
616 …"tableCellLocation": { # Location of a single cell within a table. # The reference table cell loca…
618 # A new row will be inserted above (or below) the row where the reference
619 # cell is. If the reference cell is a merged cell, a new row will be
620 # inserted above (or below) the merged cell.
621 … "rowIndex": 42, # The zero-based row index. For example, the second row in the table has a
623 … "columnIndex": 42, # The zero-based column index. For example, the second column in the table
625 …leStartLocation": { # A particular location in the document. # The location where the table starts…
626 "index": 42, # The zero-based index, in UTF-16 code units.
628 # The index is relative to the beginning of the segment specified by
630 … "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty
631 # segment ID signifies the document's body.
634 … "insertBelow": True or False, # Whether to insert new row below the reference cell location.
636 # - `True`: insert below the cell.
637 # - `False`: insert above the cell.
639 …"updateTextStyle": { # Update the styling of text. # Updates the text style at the specified range.
640 …"textStyle": { # Represents the styling that can be applied to text. # The styles to set on the te…
642 # If the value for a particular style matches that of the parent, that style
646 # the behavior of the Docs editor. See the documentation of
650 # text style's parent depends on where the text style is defined:
652 # * The TextStyle of text in a Paragraph
653 # inherits from the paragraph's corresponding named style type.
654 # * The TextStyle on a named style
655 # inherits from the normal text named style.
656 # * The TextStyle of the normal text named style inherits
657 # from the default text style in the Docs editor.
658 # * The TextStyle on a Paragraph element
659 # that is contained in a table may inherit its text style from the table
662 # If the text style does not inherit from a parent, unsetting fields will
663 # revert the style to a value matching the defaults in the Docs editor.
664 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
665 # or transparent, depending on the `color` field.
668 "rgbColor": { # An RGB color. # The RGB color value.
669 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
670 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
671 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
675 "italic": True or False, # Whether or not the text is italicized.
676 "baselineOffset": "A String", # The text's vertical offset from its normal position.
679 # rendered in a smaller font size, computed based on the `font_size` field.
680 # The `font_size` itself is not affected by changes in this field.
681 "strikethrough": True or False, # Whether or not the text is struck through.
682 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
685 # `bold`, the `weighted_font_family` is applied first, then `bold`.
692 "fontFamily": "A String", # The font family of the text.
694 # The font family can be any font from the Font menu in Docs or from
695 # [Google Fonts] (https://fonts.google.com/). If the font name is
696 # unrecognized, the text is rendered in `Arial`.
697 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
698 # `100` between `100` and `900`, inclusive. This range corresponds to the
699 # numerical values described in the CSS 2.1 Specification,
703 # The default value is `400` ("normal").
705 # The font weight makes up just one component of the rendered font weight.
706 # The rendered weight is determined by a combination of the `weight` and the
709 # * If the text is bold and the weight is less than `400`, the rendered
711 # * If the text is bold and the weight is greater than or equal to `400` but
712 # is less than `700`, the rendered weight is `700`.
713 # * If the weight is greater than or equal to `700`, the rendered weight is
714 # equal to the weight.
715 # * If the text is not bold, the rendered weight is equal to the weight.
717 "smallCaps": True or False, # Whether or not the text is in small capital letters.
718 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
719 "magnitude": 3.14, # The magnitude.
720 "unit": "A String", # The units for magnitude.
722 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
723 # or transparent, depending on the `color` field.
726 "rgbColor": { # An RGB color. # The RGB color value.
727 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
728 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
729 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
733 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
736 # Changing the link in an update request causes some other changes to the
737 # text style of the range:
739 # * When setting a link, the text foreground color will be updated to the
740 # default link color and the text will be underlined. If these fields are
741 # modified in the same request, those values will be used instead of the
744 # also update the existing link to point to the new URL.
747 # will separate the newline character(s) into their own text runs. The
748 # link will be applied separately to the runs before and after the newline.
749 # * Removing a link will update the text style of the range to match the
750 # style of the preceding text (or the default text styles if the preceding
751 # text is another link) unless different styles are being set in the same
753 "headingId": "A String", # The ID of a heading in this document.
755 "bookmarkId": "A String", # The ID of a bookmark in this document.
757 "underline": True or False, # Whether or not the text is underlined.
758 "bold": True or False, # Whether or not the text is rendered as bold.
760 "range": { # Specifies a contiguous range of text. # The range of text to style.
762 # The range may be extended to include adjacent newlines.
764 # If the range fully contains a paragraph belonging to a list, the
765 # paragraph's bullet is also updated with the matching text style.
766 … "endIndex": 42, # The zero-based end index of this range, exclusive, in UTF-16 code units.
770 "startIndex": 42, # The zero-based start index of this range, in UTF-16 code units.
774 …"segmentId": "A String", # The ID of the header, footer or footnote that this range is contained i…
775 # An empty segment ID signifies the document's body.
777 "fields": "A String", # The fields that should be updated.
779 # At least one field must be specified. The root `text_style` is implied and
783 # For example, to update the text style to bold, set `fields` to `"bold"`.
785 # To reset a property to its default value, include its field name in the
786 # field mask but leave the field itself unset.
788 … "updateTableColumnProperties": { # Updates the # Updates the properties of columns in a table.
791 … "columnIndices": [ # The list of zero-based column indices whose property should be updated. If
795 "fields": "A String", # The fields that should be updated.
797 # At least one field must be specified. The root `tableColumnProperties` is
801 # For example to update the column width, set `fields` to `"width"`.
802 …"tableColumnProperties": { # The properties of a column in a table. # The table column properties …
804 # If the value of `table_column_properties#width` is less than 5 points
806 …th": { # A magnitude in a single direction in the specified units. # The width of the column. Set …
808 "magnitude": 3.14, # The magnitude.
809 "unit": "A String", # The units for magnitude.
811 "widthType": "A String", # The width type of the column.
813 …leStartLocation": { # A particular location in the document. # The location where the table starts…
814 "index": 42, # The zero-based index, in UTF-16 code units.
816 # The index is relative to the beginning of the segment specified by
818 … "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty
819 # segment ID signifies the document's body.
823 …n": { # Location of a single cell within a table. # The reference table cell location from which t…
825 # The column this cell spans will be deleted. If this is a merged cell that
826 # spans multiple columns, all columns that the cell spans will be deleted. If
827 # no columns remain in the table after this deletion, the whole table is
829 … "rowIndex": 42, # The zero-based row index. For example, the second row in the table has a
831 … "columnIndex": 42, # The zero-based column index. For example, the second column in the table
833 …leStartLocation": { # A particular location in the document. # The location where the table starts…
834 "index": 42, # The zero-based index, in UTF-16 code units.
836 # The index is relative to the beginning of the segment specified by
838 … "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty
839 # segment ID signifies the document's body.
844 …"insertRight": True or False, # Whether to insert new column to the right of the reference cell lo…
846 # - `True`: insert to the right.
847 # - `False`: insert to the left.
848 …"tableCellLocation": { # Location of a single cell within a table. # The reference table cell loca…
850 # A new column will be inserted to the left (or right) of the column where
851 # the reference cell is. If the reference cell is a merged cell, a new
852 # column will be inserted to the left (or right) of the merged cell.
853 … "rowIndex": 42, # The zero-based row index. For example, the second row in the table has a
855 … "columnIndex": 42, # The zero-based column index. For example, the second column in the table
857 …leStartLocation": { # A particular location in the document. # The location where the table starts…
858 "index": 42, # The zero-based index, in UTF-16 code units.
860 # The index is relative to the beginning of the segment specified by
862 … "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty
863 # segment ID signifies the document's body.
867 …PositionedObject": { # Deletes a PositionedObject from the # Deletes a positioned object from the
869 "objectId": "A String", # The ID of the positioned object to delete.
871 "createNamedRange": { # Creates a NamedRange referencing the given # Creates a named range.
873 "range": { # Specifies a contiguous range of text. # The range to apply the name to.
874 … "endIndex": 42, # The zero-based end index of this range, exclusive, in UTF-16 code units.
878 "startIndex": 42, # The zero-based start index of this range, in UTF-16 code units.
882 …"segmentId": "A String", # The ID of the header, footer or footnote that this range is contained i…
883 # An empty segment ID signifies the document's body.
885 "name": "A String", # The name of the NamedRange. Names do not need to be unique.
890 …ge": { # Inserts an InlineObject containing an # Inserts an inline image at the specified location.
891 # image at the given location.
892 …"objectSize": { # A width and height. # The size that the image should appear as in the document. …
893 # optional and the final size of the image in the document is determined by
894 # the following rules:
895 # * If neither width nor height is specified, then a default size of the
897 # * If one dimension is specified then the other dimension is calculated to
898 # preserve the aspect ratio of the image.
899 # * If both width and height are specified, the image is scaled to fit
900 # within the provided dimensions while maintaining its aspect ratio.
901 … "width": { # A magnitude in a single direction in the specified units. # The width of the object.
902 "magnitude": 3.14, # The magnitude.
903 "unit": "A String", # The units for magnitude.
905 …"height": { # A magnitude in a single direction in the specified units. # The height of the object.
906 "magnitude": 3.14, # The magnitude.
907 "unit": "A String", # The units for magnitude.
910 … { # Location at the end of a body, header, footer or footnote. The location is # Inserts the text…
913 # immediately before the last newline in the document segment.
914 … "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty
915 # segment ID signifies the document's body.
917 …"location": { # A particular location in the document. # Inserts the image at a specific index in
919 # The image must be inserted inside the bounds of an existing
921 # inserted at a table's start index (i.e. between the table and its
925 "index": 42, # The zero-based index, in UTF-16 code units.
927 # The index is relative to the beginning of the segment specified by
929 … "segmentId": "A String", # The ID of the header, footer or footnote the location is in. An empty
930 # segment ID signifies the document's body.
932 "uri": "A String", # The image URI.
934 # The image is fetched once at insertion time and a copy is stored for
935 # display inside the document. Images must be less than 50MB in size, cannot
938 # The provided URI can be at most 2 kB in length. The URI itself is saved
939 # with the image, and exposed via the ImageProperties.content_uri field.
944 "requiredRevisionId": "A String", # The revision ID of the
945 # document that the write request will be applied to. If this is not the
946 # latest revision of the document, the request will not be processed and
949 # When a required revision ID is returned in a response, it indicates the
950 # revision ID of the document after the request was applied.
951 "targetRevisionId": "A String", # The target revision ID of the
952 # document that the write request will be applied to.
954 # If collaborator changes have occurred after the document was read using
955 # the API, the changes produced by this write request will be transformed
956 # against the collaborator changes. This results in a new revision of the
957 # document which incorporates both the changes in the request and the
958 # collaborator changes, and the Docs server will resolve conflicting
959 # changes. When using `target_revision_id`, the API client can be thought
960 # of as another collaborator of the document.
962 # The target revision ID may only be used to write to recent versions of a
963 # document. If the target revision is too far behind the latest revision,
964 # the request will not be processed and will return a 400 bad request error
965 # and the request should be retried after reading the latest version of the
978 An object of the form:
981 …vides control over how write requests are executed. # The updated write control after applying the
982 "requiredRevisionId": "A String", # The revision ID of the
983 # document that the write request will be applied to. If this is not the
984 # latest revision of the document, the request will not be processed and
987 # When a required revision ID is returned in a response, it indicates the
988 # revision ID of the document after the request was applied.
989 "targetRevisionId": "A String", # The target revision ID of the
990 # document that the write request will be applied to.
992 # If collaborator changes have occurred after the document was read using
993 # the API, the changes produced by this write request will be transformed
994 # against the collaborator changes. This results in a new revision of the
995 # document which incorporates both the changes in the request and the
996 # collaborator changes, and the Docs server will resolve conflicting
997 # changes. When using `target_revision_id`, the API client can be thought
998 # of as another collaborator of the document.
1000 # The target revision ID may only be used to write to recent versions of a
1001 # document. If the target revision is too far behind the latest revision,
1002 # the request will not be processed and will return a 400 bad request error
1003 # and the request should be retried after reading the latest version of the
1008 "documentId": "A String", # The ID of the document to which the updates were applied to.
1009 "replies": [ # The reply of the updates. This maps 1:1 with the updates, although replies
1012 …"createNamedRange": { # The result of creating a named range. # The result of creating a named ran…
1013 "namedRangeId": "A String", # The ID of the created named range.
1015 "replaceAllText": { # The result of replacing text. # The result of replacing text.
1016 "occurrencesChanged": 42, # The number of occurrences changed by replacing all text.
1018 …"insertInlineSheetsChart": { # The result of inserting an embedded Google Sheets chart. # The resu…
1019 "objectId": "A String", # The object ID of the inserted chart.
1021 …"insertInlineImage": { # The result of inserting an inline image. # The result of inserting an inl…
1022 "objectId": "A String", # The ID of the created InlineObject.
1031 <pre>Creates a blank document using the title given in the request. Other fields
1032 in the request, including any provided content, are ignored.
1034 Returns the created document.
1037 body: object, The request body. (required)
1038 The object takes the form of:
1041 "body": { # The document body. # The main body of the document.
1043 # The body typically contains the full document contents except for
1046 "content": [ # The contents of the body.
1048 # The indexes for the body's content begin at zero.
1049 { # A StructuralElement describes content that provides structure to the
1051 … "endIndex": 42, # The zero-based end index of this structural element, exclusive, in UTF-16
1054 # section break. A section is a range of content which has the same
1056 # the start of a new section, and the section style applies to the section
1057 # after the section break.
1059 # The document body always begins with a section break.
1060 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
1064 …"sectionStyle": { # The styling that applies to a section. # The style of the section after this s…
1065 …"contentDirection": "A String", # The content direction of this section. If unset, the value defau…
1067 "columnProperties": [ # The section's columns properties.
1069 # If empty, the section contains one column with the default properties in
1070 # the Docs editor.
1072 … "width": { # A magnitude in a single direction in the specified units. # The width of the column.
1073 "magnitude": 3.14, # The magnitude.
1074 "unit": "A String", # The units for magnitude.
1076 …ingEnd": { # A magnitude in a single direction in the specified units. # The padding at the end of…
1077 "magnitude": 3.14, # The magnitude.
1078 "unit": "A String", # The units for magnitude.
1082 "columnSeparatorStyle": "A String", # The style of column separators.
1084 # This style can be set even when there is one column in the section.
1086 …"suggestedInsertionIds": [ # The suggested insertion IDs. A SectionBreak may have multiple inserti…
1094 "content": [ # The content of the table of contents.
1097 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
1101 …"suggestedInsertionIds": [ # The suggested insertion IDs. A TableOfContents may have multiple inse…
1107 "startIndex": 42, # The zero-based start index of this structural element, in UTF-16 code
1112 "elements": [ # The content of the paragraph broken down into its component parts.
1115 … "endIndex": 42, # The zero-base end index of this paragraph element, exclusive, in UTF-16
1119 "suggestedInsertionIds": [ # The suggested insertion IDs. A Equation
1124 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
1130 # column break. A column break makes the subsequent text start at the top of
1131 # the next column.
1132 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Colu…
1134 # Similar to text content, like text runs and footnote references, the text
1135 # style of a column break can affect content layout as well as the styling of
1139 # text style's parent depends on where the text style is defined:
1141 # * The TextStyle of text in a Paragraph
1142 # inherits from the paragraph's corresponding named style type.
1143 # * The TextStyle on a named style
1144 # inherits from the normal text named style.
1145 # * The TextStyle of the normal text named style inherits
1146 # from the default text style in the Docs editor.
1147 # * The TextStyle on a Paragraph element
1148 # that is contained in a table may inherit its text style from the table
1151 # If the text style does not inherit from a parent, unsetting fields will
1152 # revert the style to a value matching the defaults in the Docs editor.
1153 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
1154 # or transparent, depending on the `color` field.
1157 "rgbColor": { # An RGB color. # The RGB color value.
1158 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
1159 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
1160 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
1164 "italic": True or False, # Whether or not the text is italicized.
1165 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
1168 # rendered in a smaller font size, computed based on the `font_size` field.
1169 # The `font_size` itself is not affected by changes in this field.
1170 "strikethrough": True or False, # Whether or not the text is struck through.
1171 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
1174 # `bold`, the `weighted_font_family` is applied first, then `bold`.
1181 "fontFamily": "A String", # The font family of the text.
1183 # The font family can be any font from the Font menu in Docs or from
1184 # [Google Fonts] (https://fonts.google.com/). If the font name is
1185 # unrecognized, the text is rendered in `Arial`.
1186 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
1187 # `100` between `100` and `900`, inclusive. This range corresponds to the
1188 # numerical values described in the CSS 2.1 Specification,
1192 # The default value is `400` ("normal").
1194 # The font weight makes up just one component of the rendered font weight.
1195 … # The rendered weight is determined by a combination of the `weight` and the
1198 # * If the text is bold and the weight is less than `400`, the rendered
1200 … # * If the text is bold and the weight is greater than or equal to `400` but
1201 # is less than `700`, the rendered weight is `700`.
1202 … # * If the weight is greater than or equal to `700`, the rendered weight is
1203 # equal to the weight.
1204 # * If the text is not bold, the rendered weight is equal to the weight.
1206 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
1207 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
1208 "magnitude": 3.14, # The magnitude.
1209 "unit": "A String", # The units for magnitude.
1211 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
1212 # or transparent, depending on the `color` field.
1215 "rgbColor": { # An RGB color. # The RGB color value.
1216 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
1217 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
1218 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
1222 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
1225 # Changing the link in an update request causes some other changes to the
1226 # text style of the range:
1228 # * When setting a link, the text foreground color will be updated to the
1229 # default link color and the text will be underlined. If these fields are
1230 # modified in the same request, those values will be used instead of the
1233 # also update the existing link to point to the new URL.
1236 # will separate the newline character(s) into their own text runs. The
1237 … # link will be applied separately to the runs before and after the newline.
1238 # * Removing a link will update the text style of the range to match the
1239 # style of the preceding text (or the default text styles if the preceding
1240 # text is another link) unless different styles are being set in the same
1242 "headingId": "A String", # The ID of a heading in this document.
1244 "bookmarkId": "A String", # The ID of a bookmark in this document.
1246 "underline": True or False, # Whether or not the text is underlined.
1247 "bold": True or False, # Whether or not the text is rendered as bold.
1249 …"suggestedInsertionIds": [ # The suggested insertion IDs. A ColumnBreak may have multiple insertio…
1254 …"suggestedTextStyleChanges": { # The suggested text style changes to this ColumnBreak, keyed by su…
1257 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
1258 # the changes made in this suggestion. This can be used along with the
1263 # text style's parent depends on where the text style is defined:
1265 # * The TextStyle of text in a Paragraph
1266 # inherits from the paragraph's corresponding named style type.
1267 # * The TextStyle on a named style
1268 # inherits from the normal text named style.
1269 # * The TextStyle of the normal text named style inherits
1270 # from the default text style in the Docs editor.
1271 # * The TextStyle on a Paragraph element
1272 … # that is contained in a table may inherit its text style from the table
1275 # If the text style does not inherit from a parent, unsetting fields will
1276 # revert the style to a value matching the defaults in the Docs editor.
1277 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
1278 # or transparent, depending on the `color` field.
1281 "rgbColor": { # An RGB color. # The RGB color value.
1282 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
1283 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
1284 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
1288 "italic": True or False, # Whether or not the text is italicized.
1289 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
1292 … # rendered in a smaller font size, computed based on the `font_size` field.
1293 # The `font_size` itself is not affected by changes in this field.
1294 "strikethrough": True or False, # Whether or not the text is struck through.
1295 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
1298 # `bold`, the `weighted_font_family` is applied first, then `bold`.
1305 "fontFamily": "A String", # The font family of the text.
1307 # The font family can be any font from the Font menu in Docs or from
1308 # [Google Fonts] (https://fonts.google.com/). If the font name is
1309 # unrecognized, the text is rendered in `Arial`.
1310 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
1311 … # `100` between `100` and `900`, inclusive. This range corresponds to the
1312 # numerical values described in the CSS 2.1 Specification,
1316 # The default value is `400` ("normal").
1318 … # The font weight makes up just one component of the rendered font weight.
1319 … # The rendered weight is determined by a combination of the `weight` and the
1322 … # * If the text is bold and the weight is less than `400`, the rendered
1324 … # * If the text is bold and the weight is greater than or equal to `400` but
1325 # is less than `700`, the rendered weight is `700`.
1326 … # * If the weight is greater than or equal to `700`, the rendered weight is
1327 # equal to the weight.
1328 … # * If the text is not bold, the rendered weight is equal to the weight.
1330 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
1331 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
1332 "magnitude": 3.14, # The magnitude.
1333 "unit": "A String", # The units for magnitude.
1335 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
1336 # or transparent, depending on the `color` field.
1339 "rgbColor": { # An RGB color. # The RGB color value.
1340 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
1341 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
1342 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
1346 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
1349 … # Changing the link in an update request causes some other changes to the
1350 # text style of the range:
1352 … # * When setting a link, the text foreground color will be updated to the
1353 … # default link color and the text will be underlined. If these fields are
1354 … # modified in the same request, those values will be used instead of the
1357 # also update the existing link to point to the new URL.
1360 # will separate the newline character(s) into their own text runs. The
1361 … # link will be applied separately to the runs before and after the newline.
1362 # * Removing a link will update the text style of the range to match the
1363 … # style of the preceding text (or the default text styles if the preceding
1364 … # text is another link) unless different styles are being set in the same
1366 "headingId": "A String", # The ID of a heading in this document.
1368 "bookmarkId": "A String", # The ID of a bookmark in this document.
1370 "underline": True or False, # Whether or not the text is underlined.
1371 "bold": True or False, # Whether or not the text is rendered as bold.
1373 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
1389 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
1394 … "startIndex": 42, # The zero-based start index of this paragraph element, in UTF-16 code units.
1396 # page break. A page break makes the subsequent text start at the top of the
1398 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Page…
1400 # Similar to text content, like text runs and footnote references, the text
1401 # style of a page break can affect content layout as well as the styling of
1405 # text style's parent depends on where the text style is defined:
1407 # * The TextStyle of text in a Paragraph
1408 # inherits from the paragraph's corresponding named style type.
1409 # * The TextStyle on a named style
1410 # inherits from the normal text named style.
1411 # * The TextStyle of the normal text named style inherits
1412 # from the default text style in the Docs editor.
1413 # * The TextStyle on a Paragraph element
1414 # that is contained in a table may inherit its text style from the table
1417 # If the text style does not inherit from a parent, unsetting fields will
1418 # revert the style to a value matching the defaults in the Docs editor.
1419 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
1420 # or transparent, depending on the `color` field.
1423 "rgbColor": { # An RGB color. # The RGB color value.
1424 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
1425 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
1426 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
1430 "italic": True or False, # Whether or not the text is italicized.
1431 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
1434 # rendered in a smaller font size, computed based on the `font_size` field.
1435 # The `font_size` itself is not affected by changes in this field.
1436 "strikethrough": True or False, # Whether or not the text is struck through.
1437 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
1440 # `bold`, the `weighted_font_family` is applied first, then `bold`.
1447 "fontFamily": "A String", # The font family of the text.
1449 # The font family can be any font from the Font menu in Docs or from
1450 # [Google Fonts] (https://fonts.google.com/). If the font name is
1451 # unrecognized, the text is rendered in `Arial`.
1452 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
1453 # `100` between `100` and `900`, inclusive. This range corresponds to the
1454 # numerical values described in the CSS 2.1 Specification,
1458 # The default value is `400` ("normal").
1460 # The font weight makes up just one component of the rendered font weight.
1461 … # The rendered weight is determined by a combination of the `weight` and the
1464 # * If the text is bold and the weight is less than `400`, the rendered
1466 … # * If the text is bold and the weight is greater than or equal to `400` but
1467 # is less than `700`, the rendered weight is `700`.
1468 … # * If the weight is greater than or equal to `700`, the rendered weight is
1469 # equal to the weight.
1470 # * If the text is not bold, the rendered weight is equal to the weight.
1472 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
1473 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
1474 "magnitude": 3.14, # The magnitude.
1475 "unit": "A String", # The units for magnitude.
1477 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
1478 # or transparent, depending on the `color` field.
1481 "rgbColor": { # An RGB color. # The RGB color value.
1482 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
1483 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
1484 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
1488 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
1491 # Changing the link in an update request causes some other changes to the
1492 # text style of the range:
1494 # * When setting a link, the text foreground color will be updated to the
1495 # default link color and the text will be underlined. If these fields are
1496 # modified in the same request, those values will be used instead of the
1499 # also update the existing link to point to the new URL.
1502 # will separate the newline character(s) into their own text runs. The
1503 … # link will be applied separately to the runs before and after the newline.
1504 # * Removing a link will update the text style of the range to match the
1505 # style of the preceding text (or the default text styles if the preceding
1506 # text is another link) unless different styles are being set in the same
1508 "headingId": "A String", # The ID of a heading in this document.
1510 "bookmarkId": "A String", # The ID of a bookmark in this document.
1512 "underline": True or False, # Whether or not the text is underlined.
1513 "bold": True or False, # Whether or not the text is rendered as bold.
1515 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
1519 …"suggestedTextStyleChanges": { # The suggested text style changes to this PageBreak, keyed by sugg…
1521 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
1522 # the changes made in this suggestion. This can be used along with the
1527 # text style's parent depends on where the text style is defined:
1529 # * The TextStyle of text in a Paragraph
1530 # inherits from the paragraph's corresponding named style type.
1531 # * The TextStyle on a named style
1532 # inherits from the normal text named style.
1533 # * The TextStyle of the normal text named style inherits
1534 # from the default text style in the Docs editor.
1535 # * The TextStyle on a Paragraph element
1536 … # that is contained in a table may inherit its text style from the table
1539 # If the text style does not inherit from a parent, unsetting fields will
1540 # revert the style to a value matching the defaults in the Docs editor.
1541 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
1542 # or transparent, depending on the `color` field.
1545 "rgbColor": { # An RGB color. # The RGB color value.
1546 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
1547 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
1548 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
1552 "italic": True or False, # Whether or not the text is italicized.
1553 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
1556 … # rendered in a smaller font size, computed based on the `font_size` field.
1557 # The `font_size` itself is not affected by changes in this field.
1558 "strikethrough": True or False, # Whether or not the text is struck through.
1559 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
1562 # `bold`, the `weighted_font_family` is applied first, then `bold`.
1569 "fontFamily": "A String", # The font family of the text.
1571 # The font family can be any font from the Font menu in Docs or from
1572 # [Google Fonts] (https://fonts.google.com/). If the font name is
1573 # unrecognized, the text is rendered in `Arial`.
1574 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
1575 … # `100` between `100` and `900`, inclusive. This range corresponds to the
1576 # numerical values described in the CSS 2.1 Specification,
1580 # The default value is `400` ("normal").
1582 … # The font weight makes up just one component of the rendered font weight.
1583 … # The rendered weight is determined by a combination of the `weight` and the
1586 … # * If the text is bold and the weight is less than `400`, the rendered
1588 … # * If the text is bold and the weight is greater than or equal to `400` but
1589 # is less than `700`, the rendered weight is `700`.
1590 … # * If the weight is greater than or equal to `700`, the rendered weight is
1591 # equal to the weight.
1592 … # * If the text is not bold, the rendered weight is equal to the weight.
1594 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
1595 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
1596 "magnitude": 3.14, # The magnitude.
1597 "unit": "A String", # The units for magnitude.
1599 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
1600 # or transparent, depending on the `color` field.
1603 "rgbColor": { # An RGB color. # The RGB color value.
1604 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
1605 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
1606 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
1610 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
1613 … # Changing the link in an update request causes some other changes to the
1614 # text style of the range:
1616 … # * When setting a link, the text foreground color will be updated to the
1617 … # default link color and the text will be underlined. If these fields are
1618 … # modified in the same request, those values will be used instead of the
1621 # also update the existing link to point to the new URL.
1624 # will separate the newline character(s) into their own text runs. The
1625 … # link will be applied separately to the runs before and after the newline.
1626 # * Removing a link will update the text style of the range to match the
1627 … # style of the preceding text (or the default text styles if the preceding
1628 … # text is another link) unless different styles are being set in the same
1630 "headingId": "A String", # The ID of a heading in this document.
1632 "bookmarkId": "A String", # The ID of a bookmark in this document.
1634 "underline": True or False, # Whether or not the text is underlined.
1635 "bold": True or False, # Whether or not the text is rendered as bold.
1637 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
1653 "suggestedInsertionIds": [ # The suggested insertion IDs. A PageBreak
1661 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Hori…
1663 # Similar to text content, like text runs and footnote references, the text
1664 # style of a horizontal rule can affect content layout as well as the styling
1668 # text style's parent depends on where the text style is defined:
1670 # * The TextStyle of text in a Paragraph
1671 # inherits from the paragraph's corresponding named style type.
1672 # * The TextStyle on a named style
1673 # inherits from the normal text named style.
1674 # * The TextStyle of the normal text named style inherits
1675 # from the default text style in the Docs editor.
1676 # * The TextStyle on a Paragraph element
1677 # that is contained in a table may inherit its text style from the table
1680 # If the text style does not inherit from a parent, unsetting fields will
1681 # revert the style to a value matching the defaults in the Docs editor.
1682 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
1683 # or transparent, depending on the `color` field.
1686 "rgbColor": { # An RGB color. # The RGB color value.
1687 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
1688 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
1689 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
1693 "italic": True or False, # Whether or not the text is italicized.
1694 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
1697 # rendered in a smaller font size, computed based on the `font_size` field.
1698 # The `font_size` itself is not affected by changes in this field.
1699 "strikethrough": True or False, # Whether or not the text is struck through.
1700 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
1703 # `bold`, the `weighted_font_family` is applied first, then `bold`.
1710 "fontFamily": "A String", # The font family of the text.
1712 # The font family can be any font from the Font menu in Docs or from
1713 # [Google Fonts] (https://fonts.google.com/). If the font name is
1714 # unrecognized, the text is rendered in `Arial`.
1715 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
1716 # `100` between `100` and `900`, inclusive. This range corresponds to the
1717 # numerical values described in the CSS 2.1 Specification,
1721 # The default value is `400` ("normal").
1723 # The font weight makes up just one component of the rendered font weight.
1724 … # The rendered weight is determined by a combination of the `weight` and the
1727 # * If the text is bold and the weight is less than `400`, the rendered
1729 … # * If the text is bold and the weight is greater than or equal to `400` but
1730 # is less than `700`, the rendered weight is `700`.
1731 … # * If the weight is greater than or equal to `700`, the rendered weight is
1732 # equal to the weight.
1733 # * If the text is not bold, the rendered weight is equal to the weight.
1735 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
1736 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
1737 "magnitude": 3.14, # The magnitude.
1738 "unit": "A String", # The units for magnitude.
1740 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
1741 # or transparent, depending on the `color` field.
1744 "rgbColor": { # An RGB color. # The RGB color value.
1745 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
1746 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
1747 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
1751 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
1754 # Changing the link in an update request causes some other changes to the
1755 # text style of the range:
1757 # * When setting a link, the text foreground color will be updated to the
1758 # default link color and the text will be underlined. If these fields are
1759 # modified in the same request, those values will be used instead of the
1762 # also update the existing link to point to the new URL.
1765 # will separate the newline character(s) into their own text runs. The
1766 … # link will be applied separately to the runs before and after the newline.
1767 # * Removing a link will update the text style of the range to match the
1768 # style of the preceding text (or the default text styles if the preceding
1769 # text is another link) unless different styles are being set in the same
1771 "headingId": "A String", # The ID of a heading in this document.
1773 "bookmarkId": "A String", # The ID of a bookmark in this document.
1775 "underline": True or False, # Whether or not the text is underlined.
1776 "bold": True or False, # Whether or not the text is rendered as bold.
1778 …"suggestedInsertionIds": [ # The suggested insertion IDs. A HorizontalRule may have multiple inser…
1783 … "suggestedTextStyleChanges": { # The suggested text style changes to this HorizontalRule, keyed by
1786 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
1787 # the changes made in this suggestion. This can be used along with the
1792 # text style's parent depends on where the text style is defined:
1794 # * The TextStyle of text in a Paragraph
1795 # inherits from the paragraph's corresponding named style type.
1796 # * The TextStyle on a named style
1797 # inherits from the normal text named style.
1798 # * The TextStyle of the normal text named style inherits
1799 # from the default text style in the Docs editor.
1800 # * The TextStyle on a Paragraph element
1801 … # that is contained in a table may inherit its text style from the table
1804 # If the text style does not inherit from a parent, unsetting fields will
1805 # revert the style to a value matching the defaults in the Docs editor.
1806 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
1807 # or transparent, depending on the `color` field.
1810 "rgbColor": { # An RGB color. # The RGB color value.
1811 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
1812 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
1813 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
1817 "italic": True or False, # Whether or not the text is italicized.
1818 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
1821 … # rendered in a smaller font size, computed based on the `font_size` field.
1822 # The `font_size` itself is not affected by changes in this field.
1823 "strikethrough": True or False, # Whether or not the text is struck through.
1824 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
1827 # `bold`, the `weighted_font_family` is applied first, then `bold`.
1834 "fontFamily": "A String", # The font family of the text.
1836 # The font family can be any font from the Font menu in Docs or from
1837 # [Google Fonts] (https://fonts.google.com/). If the font name is
1838 # unrecognized, the text is rendered in `Arial`.
1839 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
1840 … # `100` between `100` and `900`, inclusive. This range corresponds to the
1841 # numerical values described in the CSS 2.1 Specification,
1845 # The default value is `400` ("normal").
1847 … # The font weight makes up just one component of the rendered font weight.
1848 … # The rendered weight is determined by a combination of the `weight` and the
1851 … # * If the text is bold and the weight is less than `400`, the rendered
1853 … # * If the text is bold and the weight is greater than or equal to `400` but
1854 # is less than `700`, the rendered weight is `700`.
1855 … # * If the weight is greater than or equal to `700`, the rendered weight is
1856 # equal to the weight.
1857 … # * If the text is not bold, the rendered weight is equal to the weight.
1859 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
1860 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
1861 "magnitude": 3.14, # The magnitude.
1862 "unit": "A String", # The units for magnitude.
1864 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
1865 # or transparent, depending on the `color` field.
1868 "rgbColor": { # An RGB color. # The RGB color value.
1869 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
1870 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
1871 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
1875 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
1878 … # Changing the link in an update request causes some other changes to the
1879 # text style of the range:
1881 … # * When setting a link, the text foreground color will be updated to the
1882 … # default link color and the text will be underlined. If these fields are
1883 … # modified in the same request, those values will be used instead of the
1886 # also update the existing link to point to the new URL.
1889 # will separate the newline character(s) into their own text runs. The
1890 … # link will be applied separately to the runs before and after the newline.
1891 # * Removing a link will update the text style of the range to match the
1892 … # style of the preceding text (or the default text styles if the preceding
1893 … # text is another link) unless different styles are being set in the same
1895 "headingId": "A String", # The ID of a heading in this document.
1897 "bookmarkId": "A String", # The ID of a bookmark in this document.
1899 "underline": True or False, # Whether or not the text is underlined.
1900 "bold": True or False, # Whether or not the text is rendered as bold.
1902 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
1918 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
1924 # run of text that all has the same styling.
1925 "content": "A String", # The text of this run.
1927 # Any non-text elements in the run are replaced with the Unicode character
1929 … "textStyle": { # Represents the styling that can be applied to text. # The text style of this run.
1932 # text style's parent depends on where the text style is defined:
1934 # * The TextStyle of text in a Paragraph
1935 # inherits from the paragraph's corresponding named style type.
1936 # * The TextStyle on a named style
1937 # inherits from the normal text named style.
1938 # * The TextStyle of the normal text named style inherits
1939 # from the default text style in the Docs editor.
1940 # * The TextStyle on a Paragraph element
1941 # that is contained in a table may inherit its text style from the table
1944 # If the text style does not inherit from a parent, unsetting fields will
1945 # revert the style to a value matching the defaults in the Docs editor.
1946 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
1947 # or transparent, depending on the `color` field.
1950 "rgbColor": { # An RGB color. # The RGB color value.
1951 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
1952 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
1953 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
1957 "italic": True or False, # Whether or not the text is italicized.
1958 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
1961 # rendered in a smaller font size, computed based on the `font_size` field.
1962 # The `font_size` itself is not affected by changes in this field.
1963 "strikethrough": True or False, # Whether or not the text is struck through.
1964 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
1967 # `bold`, the `weighted_font_family` is applied first, then `bold`.
1974 "fontFamily": "A String", # The font family of the text.
1976 # The font family can be any font from the Font menu in Docs or from
1977 # [Google Fonts] (https://fonts.google.com/). If the font name is
1978 # unrecognized, the text is rendered in `Arial`.
1979 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
1980 # `100` between `100` and `900`, inclusive. This range corresponds to the
1981 # numerical values described in the CSS 2.1 Specification,
1985 # The default value is `400` ("normal").
1987 # The font weight makes up just one component of the rendered font weight.
1988 … # The rendered weight is determined by a combination of the `weight` and the
1991 # * If the text is bold and the weight is less than `400`, the rendered
1993 … # * If the text is bold and the weight is greater than or equal to `400` but
1994 # is less than `700`, the rendered weight is `700`.
1995 … # * If the weight is greater than or equal to `700`, the rendered weight is
1996 # equal to the weight.
1997 # * If the text is not bold, the rendered weight is equal to the weight.
1999 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
2000 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
2001 "magnitude": 3.14, # The magnitude.
2002 "unit": "A String", # The units for magnitude.
2004 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
2005 # or transparent, depending on the `color` field.
2008 "rgbColor": { # An RGB color. # The RGB color value.
2009 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
2010 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
2011 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
2015 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
2018 # Changing the link in an update request causes some other changes to the
2019 # text style of the range:
2021 # * When setting a link, the text foreground color will be updated to the
2022 # default link color and the text will be underlined. If these fields are
2023 # modified in the same request, those values will be used instead of the
2026 # also update the existing link to point to the new URL.
2029 # will separate the newline character(s) into their own text runs. The
2030 … # link will be applied separately to the runs before and after the newline.
2031 # * Removing a link will update the text style of the range to match the
2032 # style of the preceding text (or the default text styles if the preceding
2033 # text is another link) unless different styles are being set in the same
2035 "headingId": "A String", # The ID of a heading in this document.
2037 "bookmarkId": "A String", # The ID of a bookmark in this document.
2039 "underline": True or False, # Whether or not the text is underlined.
2040 "bold": True or False, # Whether or not the text is rendered as bold.
2042 "suggestedInsertionIds": [ # The suggested insertion IDs. A TextRun may
2047 …"suggestedTextStyleChanges": { # The suggested text style changes to this run, keyed by suggestion…
2049 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
2050 # the changes made in this suggestion. This can be used along with the
2055 # text style's parent depends on where the text style is defined:
2057 # * The TextStyle of text in a Paragraph
2058 # inherits from the paragraph's corresponding named style type.
2059 # * The TextStyle on a named style
2060 # inherits from the normal text named style.
2061 # * The TextStyle of the normal text named style inherits
2062 # from the default text style in the Docs editor.
2063 # * The TextStyle on a Paragraph element
2064 … # that is contained in a table may inherit its text style from the table
2067 # If the text style does not inherit from a parent, unsetting fields will
2068 # revert the style to a value matching the defaults in the Docs editor.
2069 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
2070 # or transparent, depending on the `color` field.
2073 "rgbColor": { # An RGB color. # The RGB color value.
2074 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
2075 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
2076 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
2080 "italic": True or False, # Whether or not the text is italicized.
2081 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
2084 … # rendered in a smaller font size, computed based on the `font_size` field.
2085 # The `font_size` itself is not affected by changes in this field.
2086 "strikethrough": True or False, # Whether or not the text is struck through.
2087 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
2090 # `bold`, the `weighted_font_family` is applied first, then `bold`.
2097 "fontFamily": "A String", # The font family of the text.
2099 # The font family can be any font from the Font menu in Docs or from
2100 # [Google Fonts] (https://fonts.google.com/). If the font name is
2101 # unrecognized, the text is rendered in `Arial`.
2102 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
2103 … # `100` between `100` and `900`, inclusive. This range corresponds to the
2104 # numerical values described in the CSS 2.1 Specification,
2108 # The default value is `400` ("normal").
2110 … # The font weight makes up just one component of the rendered font weight.
2111 … # The rendered weight is determined by a combination of the `weight` and the
2114 … # * If the text is bold and the weight is less than `400`, the rendered
2116 … # * If the text is bold and the weight is greater than or equal to `400` but
2117 # is less than `700`, the rendered weight is `700`.
2118 … # * If the weight is greater than or equal to `700`, the rendered weight is
2119 # equal to the weight.
2120 … # * If the text is not bold, the rendered weight is equal to the weight.
2122 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
2123 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
2124 "magnitude": 3.14, # The magnitude.
2125 "unit": "A String", # The units for magnitude.
2127 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
2128 # or transparent, depending on the `color` field.
2131 "rgbColor": { # An RGB color. # The RGB color value.
2132 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
2133 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
2134 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
2138 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
2141 … # Changing the link in an update request causes some other changes to the
2142 # text style of the range:
2144 … # * When setting a link, the text foreground color will be updated to the
2145 … # default link color and the text will be underlined. If these fields are
2146 … # modified in the same request, those values will be used instead of the
2149 # also update the existing link to point to the new URL.
2152 # will separate the newline character(s) into their own text runs. The
2153 … # link will be applied separately to the runs before and after the newline.
2154 # * Removing a link will update the text style of the range to match the
2155 … # style of the preceding text (or the default text styles if the preceding
2156 … # text is another link) unless different styles are being set in the same
2158 "headingId": "A String", # The ID of a heading in this document.
2160 "bookmarkId": "A String", # The ID of a bookmark in this document.
2162 "underline": True or False, # Whether or not the text is underlined.
2163 "bold": True or False, # Whether or not the text is rendered as bold.
2165 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
2181 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
2187 # spot in the text that is dynamically replaced with content that can change
2189 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Auto…
2192 # text style's parent depends on where the text style is defined:
2194 # * The TextStyle of text in a Paragraph
2195 # inherits from the paragraph's corresponding named style type.
2196 # * The TextStyle on a named style
2197 # inherits from the normal text named style.
2198 # * The TextStyle of the normal text named style inherits
2199 # from the default text style in the Docs editor.
2200 # * The TextStyle on a Paragraph element
2201 # that is contained in a table may inherit its text style from the table
2204 # If the text style does not inherit from a parent, unsetting fields will
2205 # revert the style to a value matching the defaults in the Docs editor.
2206 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
2207 # or transparent, depending on the `color` field.
2210 "rgbColor": { # An RGB color. # The RGB color value.
2211 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
2212 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
2213 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
2217 "italic": True or False, # Whether or not the text is italicized.
2218 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
2221 # rendered in a smaller font size, computed based on the `font_size` field.
2222 # The `font_size` itself is not affected by changes in this field.
2223 "strikethrough": True or False, # Whether or not the text is struck through.
2224 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
2227 # `bold`, the `weighted_font_family` is applied first, then `bold`.
2234 "fontFamily": "A String", # The font family of the text.
2236 # The font family can be any font from the Font menu in Docs or from
2237 # [Google Fonts] (https://fonts.google.com/). If the font name is
2238 # unrecognized, the text is rendered in `Arial`.
2239 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
2240 # `100` between `100` and `900`, inclusive. This range corresponds to the
2241 # numerical values described in the CSS 2.1 Specification,
2245 # The default value is `400` ("normal").
2247 # The font weight makes up just one component of the rendered font weight.
2248 … # The rendered weight is determined by a combination of the `weight` and the
2251 # * If the text is bold and the weight is less than `400`, the rendered
2253 … # * If the text is bold and the weight is greater than or equal to `400` but
2254 # is less than `700`, the rendered weight is `700`.
2255 … # * If the weight is greater than or equal to `700`, the rendered weight is
2256 # equal to the weight.
2257 # * If the text is not bold, the rendered weight is equal to the weight.
2259 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
2260 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
2261 "magnitude": 3.14, # The magnitude.
2262 "unit": "A String", # The units for magnitude.
2264 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
2265 # or transparent, depending on the `color` field.
2268 "rgbColor": { # An RGB color. # The RGB color value.
2269 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
2270 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
2271 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
2275 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
2278 # Changing the link in an update request causes some other changes to the
2279 # text style of the range:
2281 # * When setting a link, the text foreground color will be updated to the
2282 # default link color and the text will be underlined. If these fields are
2283 # modified in the same request, those values will be used instead of the
2286 # also update the existing link to point to the new URL.
2289 # will separate the newline character(s) into their own text runs. The
2290 … # link will be applied separately to the runs before and after the newline.
2291 # * Removing a link will update the text style of the range to match the
2292 # style of the preceding text (or the default text styles if the preceding
2293 # text is another link) unless different styles are being set in the same
2295 "headingId": "A String", # The ID of a heading in this document.
2297 "bookmarkId": "A String", # The ID of a bookmark in this document.
2299 "underline": True or False, # Whether or not the text is underlined.
2300 "bold": True or False, # Whether or not the text is rendered as bold.
2302 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
2306 …"suggestedTextStyleChanges": { # The suggested text style changes to this AutoText, keyed by sugge…
2308 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
2309 # the changes made in this suggestion. This can be used along with the
2314 # text style's parent depends on where the text style is defined:
2316 # * The TextStyle of text in a Paragraph
2317 # inherits from the paragraph's corresponding named style type.
2318 # * The TextStyle on a named style
2319 # inherits from the normal text named style.
2320 # * The TextStyle of the normal text named style inherits
2321 # from the default text style in the Docs editor.
2322 # * The TextStyle on a Paragraph element
2323 … # that is contained in a table may inherit its text style from the table
2326 # If the text style does not inherit from a parent, unsetting fields will
2327 # revert the style to a value matching the defaults in the Docs editor.
2328 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
2329 # or transparent, depending on the `color` field.
2332 "rgbColor": { # An RGB color. # The RGB color value.
2333 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
2334 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
2335 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
2339 "italic": True or False, # Whether or not the text is italicized.
2340 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
2343 … # rendered in a smaller font size, computed based on the `font_size` field.
2344 # The `font_size` itself is not affected by changes in this field.
2345 "strikethrough": True or False, # Whether or not the text is struck through.
2346 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
2349 # `bold`, the `weighted_font_family` is applied first, then `bold`.
2356 "fontFamily": "A String", # The font family of the text.
2358 # The font family can be any font from the Font menu in Docs or from
2359 # [Google Fonts] (https://fonts.google.com/). If the font name is
2360 # unrecognized, the text is rendered in `Arial`.
2361 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
2362 … # `100` between `100` and `900`, inclusive. This range corresponds to the
2363 # numerical values described in the CSS 2.1 Specification,
2367 # The default value is `400` ("normal").
2369 … # The font weight makes up just one component of the rendered font weight.
2370 … # The rendered weight is determined by a combination of the `weight` and the
2373 … # * If the text is bold and the weight is less than `400`, the rendered
2375 … # * If the text is bold and the weight is greater than or equal to `400` but
2376 # is less than `700`, the rendered weight is `700`.
2377 … # * If the weight is greater than or equal to `700`, the rendered weight is
2378 # equal to the weight.
2379 … # * If the text is not bold, the rendered weight is equal to the weight.
2381 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
2382 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
2383 "magnitude": 3.14, # The magnitude.
2384 "unit": "A String", # The units for magnitude.
2386 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
2387 # or transparent, depending on the `color` field.
2390 "rgbColor": { # An RGB color. # The RGB color value.
2391 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
2392 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
2393 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
2397 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
2400 … # Changing the link in an update request causes some other changes to the
2401 # text style of the range:
2403 … # * When setting a link, the text foreground color will be updated to the
2404 … # default link color and the text will be underlined. If these fields are
2405 … # modified in the same request, those values will be used instead of the
2408 # also update the existing link to point to the new URL.
2411 # will separate the newline character(s) into their own text runs. The
2412 … # link will be applied separately to the runs before and after the newline.
2413 # * Removing a link will update the text style of the range to match the
2414 … # style of the preceding text (or the default text styles if the preceding
2415 … # text is another link) unless different styles are being set in the same
2417 "headingId": "A String", # The ID of a heading in this document.
2419 "bookmarkId": "A String", # The ID of a bookmark in this document.
2421 "underline": True or False, # Whether or not the text is underlined.
2422 "bold": True or False, # Whether or not the text is rendered as bold.
2424 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
2440 "type": "A String", # The type of this auto text.
2441 "suggestedInsertionIds": [ # The suggested insertion IDs. An AutoText
2449 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Inli…
2451 # Similar to text content, like text runs and footnote references, the text
2452 # style of an inline object element can affect content layout as well as the
2456 # text style's parent depends on where the text style is defined:
2458 # * The TextStyle of text in a Paragraph
2459 # inherits from the paragraph's corresponding named style type.
2460 # * The TextStyle on a named style
2461 # inherits from the normal text named style.
2462 # * The TextStyle of the normal text named style inherits
2463 # from the default text style in the Docs editor.
2464 # * The TextStyle on a Paragraph element
2465 # that is contained in a table may inherit its text style from the table
2468 # If the text style does not inherit from a parent, unsetting fields will
2469 # revert the style to a value matching the defaults in the Docs editor.
2470 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
2471 # or transparent, depending on the `color` field.
2474 "rgbColor": { # An RGB color. # The RGB color value.
2475 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
2476 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
2477 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
2481 "italic": True or False, # Whether or not the text is italicized.
2482 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
2485 # rendered in a smaller font size, computed based on the `font_size` field.
2486 # The `font_size` itself is not affected by changes in this field.
2487 "strikethrough": True or False, # Whether or not the text is struck through.
2488 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
2491 # `bold`, the `weighted_font_family` is applied first, then `bold`.
2498 "fontFamily": "A String", # The font family of the text.
2500 # The font family can be any font from the Font menu in Docs or from
2501 # [Google Fonts] (https://fonts.google.com/). If the font name is
2502 # unrecognized, the text is rendered in `Arial`.
2503 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
2504 # `100` between `100` and `900`, inclusive. This range corresponds to the
2505 # numerical values described in the CSS 2.1 Specification,
2509 # The default value is `400` ("normal").
2511 # The font weight makes up just one component of the rendered font weight.
2512 … # The rendered weight is determined by a combination of the `weight` and the
2515 # * If the text is bold and the weight is less than `400`, the rendered
2517 … # * If the text is bold and the weight is greater than or equal to `400` but
2518 # is less than `700`, the rendered weight is `700`.
2519 … # * If the weight is greater than or equal to `700`, the rendered weight is
2520 # equal to the weight.
2521 # * If the text is not bold, the rendered weight is equal to the weight.
2523 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
2524 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
2525 "magnitude": 3.14, # The magnitude.
2526 "unit": "A String", # The units for magnitude.
2528 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
2529 # or transparent, depending on the `color` field.
2532 "rgbColor": { # An RGB color. # The RGB color value.
2533 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
2534 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
2535 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
2539 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
2542 # Changing the link in an update request causes some other changes to the
2543 # text style of the range:
2545 # * When setting a link, the text foreground color will be updated to the
2546 # default link color and the text will be underlined. If these fields are
2547 # modified in the same request, those values will be used instead of the
2550 # also update the existing link to point to the new URL.
2553 # will separate the newline character(s) into their own text runs. The
2554 … # link will be applied separately to the runs before and after the newline.
2555 # * Removing a link will update the text style of the range to match the
2556 # style of the preceding text (or the default text styles if the preceding
2557 # text is another link) unless different styles are being set in the same
2559 "headingId": "A String", # The ID of a heading in this document.
2561 "bookmarkId": "A String", # The ID of a bookmark in this document.
2563 "underline": True or False, # Whether or not the text is underlined.
2564 "bold": True or False, # Whether or not the text is rendered as bold.
2566 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
2570 …"suggestedTextStyleChanges": { # The suggested text style changes to this InlineObject, keyed by s…
2573 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
2574 # the changes made in this suggestion. This can be used along with the
2579 # text style's parent depends on where the text style is defined:
2581 # * The TextStyle of text in a Paragraph
2582 # inherits from the paragraph's corresponding named style type.
2583 # * The TextStyle on a named style
2584 # inherits from the normal text named style.
2585 # * The TextStyle of the normal text named style inherits
2586 # from the default text style in the Docs editor.
2587 # * The TextStyle on a Paragraph element
2588 … # that is contained in a table may inherit its text style from the table
2591 # If the text style does not inherit from a parent, unsetting fields will
2592 # revert the style to a value matching the defaults in the Docs editor.
2593 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
2594 # or transparent, depending on the `color` field.
2597 "rgbColor": { # An RGB color. # The RGB color value.
2598 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
2599 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
2600 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
2604 "italic": True or False, # Whether or not the text is italicized.
2605 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
2608 … # rendered in a smaller font size, computed based on the `font_size` field.
2609 # The `font_size` itself is not affected by changes in this field.
2610 "strikethrough": True or False, # Whether or not the text is struck through.
2611 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
2614 # `bold`, the `weighted_font_family` is applied first, then `bold`.
2621 "fontFamily": "A String", # The font family of the text.
2623 # The font family can be any font from the Font menu in Docs or from
2624 # [Google Fonts] (https://fonts.google.com/). If the font name is
2625 # unrecognized, the text is rendered in `Arial`.
2626 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
2627 … # `100` between `100` and `900`, inclusive. This range corresponds to the
2628 # numerical values described in the CSS 2.1 Specification,
2632 # The default value is `400` ("normal").
2634 … # The font weight makes up just one component of the rendered font weight.
2635 … # The rendered weight is determined by a combination of the `weight` and the
2638 … # * If the text is bold and the weight is less than `400`, the rendered
2640 … # * If the text is bold and the weight is greater than or equal to `400` but
2641 # is less than `700`, the rendered weight is `700`.
2642 … # * If the weight is greater than or equal to `700`, the rendered weight is
2643 # equal to the weight.
2644 … # * If the text is not bold, the rendered weight is equal to the weight.
2646 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
2647 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
2648 "magnitude": 3.14, # The magnitude.
2649 "unit": "A String", # The units for magnitude.
2651 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
2652 # or transparent, depending on the `color` field.
2655 "rgbColor": { # An RGB color. # The RGB color value.
2656 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
2657 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
2658 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
2662 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
2665 … # Changing the link in an update request causes some other changes to the
2666 # text style of the range:
2668 … # * When setting a link, the text foreground color will be updated to the
2669 … # default link color and the text will be underlined. If these fields are
2670 … # modified in the same request, those values will be used instead of the
2673 # also update the existing link to point to the new URL.
2676 # will separate the newline character(s) into their own text runs. The
2677 … # link will be applied separately to the runs before and after the newline.
2678 # * Removing a link will update the text style of the range to match the
2679 … # style of the preceding text (or the default text styles if the preceding
2680 … # text is another link) unless different styles are being set in the same
2682 "headingId": "A String", # The ID of a heading in this document.
2684 "bookmarkId": "A String", # The ID of a bookmark in this document.
2686 "underline": True or False, # Whether or not the text is underlined.
2687 "bold": True or False, # Whether or not the text is rendered as bold.
2689 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
2705 "inlineObjectId": "A String", # The ID of the InlineObject this
2707 …"suggestedInsertionIds": [ # The suggested insertion IDs. An InlineObjectElement may have multiple…
2714 # footnote reference. A footnote reference is the inline content rendered with
2715 # a number and is used to identify the footnote.
2716 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Foot…
2719 # text style's parent depends on where the text style is defined:
2721 # * The TextStyle of text in a Paragraph
2722 # inherits from the paragraph's corresponding named style type.
2723 # * The TextStyle on a named style
2724 # inherits from the normal text named style.
2725 # * The TextStyle of the normal text named style inherits
2726 # from the default text style in the Docs editor.
2727 # * The TextStyle on a Paragraph element
2728 # that is contained in a table may inherit its text style from the table
2731 # If the text style does not inherit from a parent, unsetting fields will
2732 # revert the style to a value matching the defaults in the Docs editor.
2733 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
2734 # or transparent, depending on the `color` field.
2737 "rgbColor": { # An RGB color. # The RGB color value.
2738 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
2739 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
2740 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
2744 "italic": True or False, # Whether or not the text is italicized.
2745 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
2748 # rendered in a smaller font size, computed based on the `font_size` field.
2749 # The `font_size` itself is not affected by changes in this field.
2750 "strikethrough": True or False, # Whether or not the text is struck through.
2751 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
2754 # `bold`, the `weighted_font_family` is applied first, then `bold`.
2761 "fontFamily": "A String", # The font family of the text.
2763 # The font family can be any font from the Font menu in Docs or from
2764 # [Google Fonts] (https://fonts.google.com/). If the font name is
2765 # unrecognized, the text is rendered in `Arial`.
2766 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
2767 # `100` between `100` and `900`, inclusive. This range corresponds to the
2768 # numerical values described in the CSS 2.1 Specification,
2772 # The default value is `400` ("normal").
2774 # The font weight makes up just one component of the rendered font weight.
2775 … # The rendered weight is determined by a combination of the `weight` and the
2778 # * If the text is bold and the weight is less than `400`, the rendered
2780 … # * If the text is bold and the weight is greater than or equal to `400` but
2781 # is less than `700`, the rendered weight is `700`.
2782 … # * If the weight is greater than or equal to `700`, the rendered weight is
2783 # equal to the weight.
2784 # * If the text is not bold, the rendered weight is equal to the weight.
2786 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
2787 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
2788 "magnitude": 3.14, # The magnitude.
2789 "unit": "A String", # The units for magnitude.
2791 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
2792 # or transparent, depending on the `color` field.
2795 "rgbColor": { # An RGB color. # The RGB color value.
2796 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
2797 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
2798 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
2802 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
2805 # Changing the link in an update request causes some other changes to the
2806 # text style of the range:
2808 # * When setting a link, the text foreground color will be updated to the
2809 # default link color and the text will be underlined. If these fields are
2810 # modified in the same request, those values will be used instead of the
2813 # also update the existing link to point to the new URL.
2816 # will separate the newline character(s) into their own text runs. The
2817 … # link will be applied separately to the runs before and after the newline.
2818 # * Removing a link will update the text style of the range to match the
2819 # style of the preceding text (or the default text styles if the preceding
2820 # text is another link) unless different styles are being set in the same
2822 "headingId": "A String", # The ID of a heading in this document.
2824 "bookmarkId": "A String", # The ID of a bookmark in this document.
2826 "underline": True or False, # Whether or not the text is underlined.
2827 "bold": True or False, # Whether or not the text is rendered as bold.
2829 "footnoteNumber": "A String", # The rendered number of this footnote.
2830 …"suggestedInsertionIds": [ # The suggested insertion IDs. A FootnoteReference may have multiple in…
2835 "footnoteId": "A String", # The ID of the footnote that
2836 # contains the content of this footnote reference.
2837 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
2841 …"suggestedTextStyleChanges": { # The suggested text style changes to this FootnoteReference, keyed…
2844 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
2845 # the changes made in this suggestion. This can be used along with the
2850 # text style's parent depends on where the text style is defined:
2852 # * The TextStyle of text in a Paragraph
2853 # inherits from the paragraph's corresponding named style type.
2854 # * The TextStyle on a named style
2855 # inherits from the normal text named style.
2856 # * The TextStyle of the normal text named style inherits
2857 # from the default text style in the Docs editor.
2858 # * The TextStyle on a Paragraph element
2859 … # that is contained in a table may inherit its text style from the table
2862 # If the text style does not inherit from a parent, unsetting fields will
2863 # revert the style to a value matching the defaults in the Docs editor.
2864 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
2865 # or transparent, depending on the `color` field.
2868 "rgbColor": { # An RGB color. # The RGB color value.
2869 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
2870 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
2871 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
2875 "italic": True or False, # Whether or not the text is italicized.
2876 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
2879 … # rendered in a smaller font size, computed based on the `font_size` field.
2880 # The `font_size` itself is not affected by changes in this field.
2881 "strikethrough": True or False, # Whether or not the text is struck through.
2882 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
2885 # `bold`, the `weighted_font_family` is applied first, then `bold`.
2892 "fontFamily": "A String", # The font family of the text.
2894 # The font family can be any font from the Font menu in Docs or from
2895 # [Google Fonts] (https://fonts.google.com/). If the font name is
2896 # unrecognized, the text is rendered in `Arial`.
2897 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
2898 … # `100` between `100` and `900`, inclusive. This range corresponds to the
2899 # numerical values described in the CSS 2.1 Specification,
2903 # The default value is `400` ("normal").
2905 … # The font weight makes up just one component of the rendered font weight.
2906 … # The rendered weight is determined by a combination of the `weight` and the
2909 … # * If the text is bold and the weight is less than `400`, the rendered
2911 … # * If the text is bold and the weight is greater than or equal to `400` but
2912 # is less than `700`, the rendered weight is `700`.
2913 … # * If the weight is greater than or equal to `700`, the rendered weight is
2914 # equal to the weight.
2915 … # * If the text is not bold, the rendered weight is equal to the weight.
2917 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
2918 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
2919 "magnitude": 3.14, # The magnitude.
2920 "unit": "A String", # The units for magnitude.
2922 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
2923 # or transparent, depending on the `color` field.
2926 "rgbColor": { # An RGB color. # The RGB color value.
2927 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
2928 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
2929 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
2933 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
2936 … # Changing the link in an update request causes some other changes to the
2937 # text style of the range:
2939 … # * When setting a link, the text foreground color will be updated to the
2940 … # default link color and the text will be underlined. If these fields are
2941 … # modified in the same request, those values will be used instead of the
2944 # also update the existing link to point to the new URL.
2947 # will separate the newline character(s) into their own text runs. The
2948 … # link will be applied separately to the runs before and after the newline.
2949 # * Removing a link will update the text style of the range to match the
2950 … # style of the preceding text (or the default text styles if the preceding
2951 … # text is another link) unless different styles are being set in the same
2953 "headingId": "A String", # The ID of a heading in this document.
2955 "bookmarkId": "A String", # The ID of a bookmark in this document.
2957 "underline": True or False, # Whether or not the text is underlined.
2958 "bold": True or False, # Whether or not the text is rendered as bold.
2960 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
2979 …"suggestedPositionedObjectIds": { # The IDs of the positioned objects that are suggested to be att…
2982 "objectIds": [ # The object IDs.
2987 …"bullet": { # Describes the bullet of a paragraph. # The bullet for this paragraph. If not present…
2989 "nestingLevel": 42, # The nesting level of this paragraph in the list.
2990 "listId": "A String", # The ID of the list this paragraph belongs to.
2991 …"textStyle": { # Represents the styling that can be applied to text. # The paragraph specific text…
2994 # text style's parent depends on where the text style is defined:
2996 # * The TextStyle of text in a Paragraph
2997 # inherits from the paragraph's corresponding named style type.
2998 # * The TextStyle on a named style
2999 # inherits from the normal text named style.
3000 # * The TextStyle of the normal text named style inherits
3001 # from the default text style in the Docs editor.
3002 # * The TextStyle on a Paragraph element
3003 # that is contained in a table may inherit its text style from the table
3006 # If the text style does not inherit from a parent, unsetting fields will
3007 # revert the style to a value matching the defaults in the Docs editor.
3008 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
3009 # or transparent, depending on the `color` field.
3012 "rgbColor": { # An RGB color. # The RGB color value.
3013 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
3014 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
3015 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
3019 "italic": True or False, # Whether or not the text is italicized.
3020 "baselineOffset": "A String", # The text's vertical offset from its normal position.
3023 # rendered in a smaller font size, computed based on the `font_size` field.
3024 # The `font_size` itself is not affected by changes in this field.
3025 "strikethrough": True or False, # Whether or not the text is struck through.
3026 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
3029 # `bold`, the `weighted_font_family` is applied first, then `bold`.
3036 "fontFamily": "A String", # The font family of the text.
3038 # The font family can be any font from the Font menu in Docs or from
3039 # [Google Fonts] (https://fonts.google.com/). If the font name is
3040 # unrecognized, the text is rendered in `Arial`.
3041 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
3042 # `100` between `100` and `900`, inclusive. This range corresponds to the
3043 # numerical values described in the CSS 2.1 Specification,
3047 # The default value is `400` ("normal").
3049 # The font weight makes up just one component of the rendered font weight.
3050 # The rendered weight is determined by a combination of the `weight` and the
3053 # * If the text is bold and the weight is less than `400`, the rendered
3055 # * If the text is bold and the weight is greater than or equal to `400` but
3056 # is less than `700`, the rendered weight is `700`.
3057 # * If the weight is greater than or equal to `700`, the rendered weight is
3058 # equal to the weight.
3059 # * If the text is not bold, the rendered weight is equal to the weight.
3061 "smallCaps": True or False, # Whether or not the text is in small capital letters.
3062 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
3063 "magnitude": 3.14, # The magnitude.
3064 "unit": "A String", # The units for magnitude.
3066 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
3067 # or transparent, depending on the `color` field.
3070 "rgbColor": { # An RGB color. # The RGB color value.
3071 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
3072 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
3073 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
3077 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
3080 # Changing the link in an update request causes some other changes to the
3081 # text style of the range:
3083 # * When setting a link, the text foreground color will be updated to the
3084 # default link color and the text will be underlined. If these fields are
3085 # modified in the same request, those values will be used instead of the
3088 # also update the existing link to point to the new URL.
3091 # will separate the newline character(s) into their own text runs. The
3092 # link will be applied separately to the runs before and after the newline.
3093 # * Removing a link will update the text style of the range to match the
3094 # style of the preceding text (or the default text styles if the preceding
3095 # text is another link) unless different styles are being set in the same
3097 "headingId": "A String", # The ID of a heading in this document.
3099 "bookmarkId": "A String", # The ID of a bookmark in this document.
3101 "underline": True or False, # Whether or not the text is underlined.
3102 "bold": True or False, # Whether or not the text is rendered as bold.
3105 "suggestedBulletChanges": { # The suggested changes to this paragraph's bullet.
3107 … "bullet": { # Describes the bullet of a paragraph. # A Bullet that only includes the changes made
3108 # in this suggestion. This can be used along with the
3111 "nestingLevel": 42, # The nesting level of this paragraph in the list.
3112 "listId": "A String", # The ID of the list this paragraph belongs to.
3113 …"textStyle": { # Represents the styling that can be applied to text. # The paragraph specific text…
3116 # text style's parent depends on where the text style is defined:
3118 # * The TextStyle of text in a Paragraph
3119 # inherits from the paragraph's corresponding named style type.
3120 # * The TextStyle on a named style
3121 # inherits from the normal text named style.
3122 # * The TextStyle of the normal text named style inherits
3123 # from the default text style in the Docs editor.
3124 # * The TextStyle on a Paragraph element
3125 # that is contained in a table may inherit its text style from the table
3128 # If the text style does not inherit from a parent, unsetting fields will
3129 # revert the style to a value matching the defaults in the Docs editor.
3130 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
3131 # or transparent, depending on the `color` field.
3134 "rgbColor": { # An RGB color. # The RGB color value.
3135 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
3136 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
3137 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
3141 "italic": True or False, # Whether or not the text is italicized.
3142 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
3145 # rendered in a smaller font size, computed based on the `font_size` field.
3146 # The `font_size` itself is not affected by changes in this field.
3147 "strikethrough": True or False, # Whether or not the text is struck through.
3148 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
3151 # `bold`, the `weighted_font_family` is applied first, then `bold`.
3158 "fontFamily": "A String", # The font family of the text.
3160 # The font family can be any font from the Font menu in Docs or from
3161 # [Google Fonts] (https://fonts.google.com/). If the font name is
3162 # unrecognized, the text is rendered in `Arial`.
3163 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
3164 # `100` between `100` and `900`, inclusive. This range corresponds to the
3165 # numerical values described in the CSS 2.1 Specification,
3169 # The default value is `400` ("normal").
3171 # The font weight makes up just one component of the rendered font weight.
3172 … # The rendered weight is determined by a combination of the `weight` and the
3175 # * If the text is bold and the weight is less than `400`, the rendered
3177 … # * If the text is bold and the weight is greater than or equal to `400` but
3178 # is less than `700`, the rendered weight is `700`.
3179 … # * If the weight is greater than or equal to `700`, the rendered weight is
3180 # equal to the weight.
3181 # * If the text is not bold, the rendered weight is equal to the weight.
3183 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
3184 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
3185 "magnitude": 3.14, # The magnitude.
3186 "unit": "A String", # The units for magnitude.
3188 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
3189 # or transparent, depending on the `color` field.
3192 "rgbColor": { # An RGB color. # The RGB color value.
3193 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
3194 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
3195 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
3199 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
3202 # Changing the link in an update request causes some other changes to the
3203 # text style of the range:
3205 # * When setting a link, the text foreground color will be updated to the
3206 # default link color and the text will be underlined. If these fields are
3207 # modified in the same request, those values will be used instead of the
3210 # also update the existing link to point to the new URL.
3213 # will separate the newline character(s) into their own text runs. The
3214 … # link will be applied separately to the runs before and after the newline.
3215 # * Removing a link will update the text style of the range to match the
3216 # style of the preceding text (or the default text styles if the preceding
3217 # text is another link) unless different styles are being set in the same
3219 "headingId": "A String", # The ID of a heading in this document.
3221 "bookmarkId": "A String", # The ID of a bookmark in this document.
3223 "underline": True or False, # Whether or not the text is underlined.
3224 "bold": True or False, # Whether or not the text is rendered as bold.
3227 …te": { # A mask that indicates which of the fields on the base # A mask that indicates which of th…
3231 … "nestingLevelSuggested": True or False, # Indicates if there was a suggested change to the
3233 …hat indicates which of the fields on the base TextStyle have been changed in this suggestion. # A …
3248 … "listIdSuggested": True or False, # Indicates if there was a suggested change to the
3253 "positionedObjectIds": [ # The IDs of the positioned objects tethered to this paragraph.
3256 …"suggestedParagraphStyleChanges": { # The suggested paragraph style changes to this paragraph, key…
3260 …tes which of the fields on the base ParagraphStyle have been changed in this suggestion. # A mask …
3281 … mask that indicates which of the fields on the base Shading have been changed in this # A mask th…
3284 …ckgroundColorSuggested": True or False, # Indicates if there was a suggested change to the Shading.
3288 # the changes made in this suggestion. This can be used along with the
3293 # A paragraph style's parent depends on where the paragraph style is defined:
3295 # * The ParagraphStyle on a Paragraph
3296 # inherits from the paragraph's corresponding named style type.
3297 # * The ParagraphStyle on a named style
3298 # inherits from the normal text named style.
3299 # * The ParagraphStyle of the normal text named style inherits
3300 # from the default paragraph style in the Docs editor.
3301 # * The ParagraphStyle on a Paragraph
3303 # the table style.
3305 # If the paragraph style does not inherit from a parent, unsetting fields will
3306 # revert the style to a value matching the defaults in the Docs editor.
3307 "spacingMode": "A String", # The spacing mode for the paragraph.
3308 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
3311 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
3312 # inherited from the parent.
3313 "magnitude": 3.14, # The magnitude.
3314 "unit": "A String", # The units for magnitude.
3316 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
3317 # page or column as the next paragraph if possible. If unset, the value is
3318 # inherited from the parent.
3319 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
3320 # is represented as 100.0. If unset, the value is inherited from the parent.
3321 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
3322 # is inherited from the parent.
3323 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
3324 # inherited from the parent.
3326 # The bottom border is rendered when the paragraph below has different border
3330 # changes to a paragraph border the new border must be specified in
3332 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
3335 "rgbColor": { # An RGB color. # The RGB color value.
3336 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
3337 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
3338 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
3342 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
3343 "magnitude": 3.14, # The magnitude.
3344 "unit": "A String", # The units for magnitude.
3346 "dashStyle": "A String", # The dash style of the border.
3347 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
3348 "magnitude": 3.14, # The magnitude.
3349 "unit": "A String", # The units for magnitude.
3352 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
3353 # the start of the text, based on the current paragraph direction. If unset,
3354 # the value is inherited from the parent.
3355 "magnitude": 3.14, # The magnitude.
3356 "unit": "A String", # The units for magnitude.
3358 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
3359 # If unset, the value is inherited from the parent.
3361 # The between border is rendered when the adjacent paragraph has the same
3365 # changes to a paragraph border the new border must be specified in
3367 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
3370 "rgbColor": { # An RGB color. # The RGB color value.
3371 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
3372 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
3373 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
3377 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
3378 "magnitude": 3.14, # The magnitude.
3379 "unit": "A String", # The units for magnitude.
3381 "dashStyle": "A String", # The dash style of the border.
3382 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
3383 "magnitude": 3.14, # The magnitude.
3384 "unit": "A String", # The units for magnitude.
3387 "namedStyleType": "A String", # The named style type of the paragraph.
3389 # Since updating the named style type affects other properties within
3390 # ParagraphStyle, the named style type is applied before the other properties
3392 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
3393 # from the parent.
3396 # changes to a paragraph border the new border must be specified in
3398 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
3401 "rgbColor": { # An RGB color. # The RGB color value.
3402 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
3403 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
3404 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
3408 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
3409 "magnitude": 3.14, # The magnitude.
3410 "unit": "A String", # The units for magnitude.
3412 "dashStyle": "A String", # The dash style of the border.
3413 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
3414 "magnitude": 3.14, # The magnitude.
3415 "unit": "A String", # The units for magnitude.
3418 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
3419 # the end of the text, based on the current paragraph direction. If unset,
3420 # the value is inherited from the parent.
3421 "magnitude": 3.14, # The magnitude.
3422 "unit": "A String", # The units for magnitude.
3424 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
3425 # from the parent.
3428 # changes to a paragraph border the new border must be specified in
3430 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
3433 "rgbColor": { # An RGB color. # The RGB color value.
3434 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
3435 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
3436 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
3440 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
3441 "magnitude": 3.14, # The magnitude.
3442 "unit": "A String", # The units for magnitude.
3444 "dashStyle": "A String", # The dash style of the border.
3445 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
3446 "magnitude": 3.14, # The magnitude.
3447 "unit": "A String", # The units for magnitude.
3450 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
3451 # inherited from the parent.
3452 "magnitude": 3.14, # The magnitude.
3453 "unit": "A String", # The units for magnitude.
3455 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
3457 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
3459 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
3462 "rgbColor": { # An RGB color. # The RGB color value.
3463 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
3464 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
3465 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
3470 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
3471 # from the parent.
3473 # The top border is rendered when the paragraph above has different border
3477 # changes to a paragraph border the new border must be specified in
3479 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
3482 "rgbColor": { # An RGB color. # The RGB color value.
3483 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
3484 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
3485 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
3489 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
3490 "magnitude": 3.14, # The magnitude.
3491 "unit": "A String", # The units for magnitude.
3493 "dashStyle": "A String", # The dash style of the border.
3494 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
3495 "magnitude": 3.14, # The magnitude.
3496 "unit": "A String", # The units for magnitude.
3499 … "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
3502 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
3503 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
3504 "magnitude": 3.14, # The magnitude.
3505 "unit": "A String", # The units for magnitude.
3509 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
3510 # the value is inherited from the parent.
3511 "magnitude": 3.14, # The magnitude.
3512 "unit": "A String", # The units for magnitude.
3514 "alignment": "A String", # The text alignment for this paragraph.
3515 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
3516 # column if possible. If unset, the value is inherited from the parent.
3520 … "paragraphStyle": { # Styles that apply to a whole paragraph. # The style of this paragraph.
3523 # A paragraph style's parent depends on where the paragraph style is defined:
3525 # * The ParagraphStyle on a Paragraph
3526 # inherits from the paragraph's corresponding named style type.
3527 # * The ParagraphStyle on a named style
3528 # inherits from the normal text named style.
3529 # * The ParagraphStyle of the normal text named style inherits
3530 # from the default paragraph style in the Docs editor.
3531 # * The ParagraphStyle on a Paragraph
3533 # the table style.
3535 # If the paragraph style does not inherit from a parent, unsetting fields will
3536 # revert the style to a value matching the defaults in the Docs editor.
3537 "spacingMode": "A String", # The spacing mode for the paragraph.
3538 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
3541 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
3542 # inherited from the parent.
3543 "magnitude": 3.14, # The magnitude.
3544 "unit": "A String", # The units for magnitude.
3546 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
3547 # page or column as the next paragraph if possible. If unset, the value is
3548 # inherited from the parent.
3549 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
3550 # is represented as 100.0. If unset, the value is inherited from the parent.
3551 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
3552 # is inherited from the parent.
3553 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
3554 # inherited from the parent.
3556 # The bottom border is rendered when the paragraph below has different border
3560 # changes to a paragraph border the new border must be specified in
3562 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
3565 "rgbColor": { # An RGB color. # The RGB color value.
3566 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
3567 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
3568 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
3572 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
3573 "magnitude": 3.14, # The magnitude.
3574 "unit": "A String", # The units for magnitude.
3576 "dashStyle": "A String", # The dash style of the border.
3577 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
3578 "magnitude": 3.14, # The magnitude.
3579 "unit": "A String", # The units for magnitude.
3582 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
3583 # the start of the text, based on the current paragraph direction. If unset,
3584 # the value is inherited from the parent.
3585 "magnitude": 3.14, # The magnitude.
3586 "unit": "A String", # The units for magnitude.
3588 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
3589 # If unset, the value is inherited from the parent.
3591 # The between border is rendered when the adjacent paragraph has the same
3595 # changes to a paragraph border the new border must be specified in
3597 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
3600 "rgbColor": { # An RGB color. # The RGB color value.
3601 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
3602 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
3603 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
3607 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
3608 "magnitude": 3.14, # The magnitude.
3609 "unit": "A String", # The units for magnitude.
3611 "dashStyle": "A String", # The dash style of the border.
3612 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
3613 "magnitude": 3.14, # The magnitude.
3614 "unit": "A String", # The units for magnitude.
3617 "namedStyleType": "A String", # The named style type of the paragraph.
3619 # Since updating the named style type affects other properties within
3620 # ParagraphStyle, the named style type is applied before the other properties
3622 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
3623 # from the parent.
3626 # changes to a paragraph border the new border must be specified in
3628 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
3631 "rgbColor": { # An RGB color. # The RGB color value.
3632 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
3633 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
3634 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
3638 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
3639 "magnitude": 3.14, # The magnitude.
3640 "unit": "A String", # The units for magnitude.
3642 "dashStyle": "A String", # The dash style of the border.
3643 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
3644 "magnitude": 3.14, # The magnitude.
3645 "unit": "A String", # The units for magnitude.
3648 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
3649 # the end of the text, based on the current paragraph direction. If unset,
3650 # the value is inherited from the parent.
3651 "magnitude": 3.14, # The magnitude.
3652 "unit": "A String", # The units for magnitude.
3654 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
3655 # from the parent.
3658 # changes to a paragraph border the new border must be specified in
3660 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
3663 "rgbColor": { # An RGB color. # The RGB color value.
3664 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
3665 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
3666 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
3670 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
3671 "magnitude": 3.14, # The magnitude.
3672 "unit": "A String", # The units for magnitude.
3674 "dashStyle": "A String", # The dash style of the border.
3675 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
3676 "magnitude": 3.14, # The magnitude.
3677 "unit": "A String", # The units for magnitude.
3680 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
3681 # inherited from the parent.
3682 "magnitude": 3.14, # The magnitude.
3683 "unit": "A String", # The units for magnitude.
3685 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
3687 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
3689 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
3692 "rgbColor": { # An RGB color. # The RGB color value.
3693 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
3694 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
3695 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
3700 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
3701 # from the parent.
3703 # The top border is rendered when the paragraph above has different border
3707 # changes to a paragraph border the new border must be specified in
3709 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
3712 "rgbColor": { # An RGB color. # The RGB color value.
3713 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
3714 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
3715 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
3719 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
3720 "magnitude": 3.14, # The magnitude.
3721 "unit": "A String", # The units for magnitude.
3723 "dashStyle": "A String", # The dash style of the border.
3724 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
3725 "magnitude": 3.14, # The magnitude.
3726 "unit": "A String", # The units for magnitude.
3729 … "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
3732 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
3733 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
3734 "magnitude": 3.14, # The magnitude.
3735 "unit": "A String", # The units for magnitude.
3739 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
3740 # the value is inherited from the parent.
3741 "magnitude": 3.14, # The magnitude.
3742 "unit": "A String", # The units for magnitude.
3744 "alignment": "A String", # The text alignment for this paragraph.
3745 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
3746 # column if possible. If unset, the value is inherited from the parent.
3751 "rows": 42, # Number of rows in the table.
3752 "tableStyle": { # Styles that apply to a table. # The style of the table.
3753 "tableColumnProperties": [ # The properties of each column.
3756 # HTML. So the properties for a row can be found on the row's
3758 { # The properties of a column in a table.
3759 …th": { # A magnitude in a single direction in the specified units. # The width of the column. Set …
3761 "magnitude": 3.14, # The magnitude.
3762 "unit": "A String", # The units for magnitude.
3764 "widthType": "A String", # The width type of the column.
3768 "suggestedInsertionIds": [ # The suggested insertion IDs. A Table may have
3773 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
3777 "tableRows": [ # The contents and style of each row.
3778 { # The contents and style of a row in a Table.
3779 … "endIndex": 42, # The zero-based end index of this row, exclusive, in UTF-16 code units.
3780 "tableCells": [ # The contents and style of each cell in this row.
3783 # different number of cells than other rows in the same table.
3784 { # The contents and style of a cell in a Table.
3785 … "endIndex": 42, # The zero-based end index of this cell, exclusive, in UTF-16 code units.
3786 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
3790 "suggestedInsertionIds": [ # The suggested insertion IDs. A TableCell
3795 "content": [ # The content of the cell.
3798 "tableCellStyle": { # The style of a TableCell. # The style of the cell.
3801 # A table cell style can inherit from the table's style.
3802 …ngBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of t…
3803 "magnitude": 3.14, # The magnitude.
3804 "unit": "A String", # The units for magnitude.
3806 … "borderBottom": { # A border around a table cell. # The bottom border of the cell.
3807 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
3810 "rgbColor": { # An RGB color. # The RGB color value.
3811 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
3812 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
3813 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
3817 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
3818 "magnitude": 3.14, # The magnitude.
3819 "unit": "A String", # The units for magnitude.
3821 "dashStyle": "A String", # The dash style of the border.
3823 …ddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of th…
3824 "magnitude": 3.14, # The magnitude.
3825 "unit": "A String", # The units for magnitude.
3827 …paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of th…
3828 "magnitude": 3.14, # The magnitude.
3829 "unit": "A String", # The units for magnitude.
3831 "borderLeft": { # A border around a table cell. # The left border of the cell.
3832 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
3835 "rgbColor": { # An RGB color. # The RGB color value.
3836 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
3837 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
3838 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
3842 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
3843 "magnitude": 3.14, # The magnitude.
3844 "unit": "A String", # The units for magnitude.
3846 "dashStyle": "A String", # The dash style of the border.
3848 "columnSpan": 42, # The column span of the cell. This property is read-only.
3849 …# A color that can either be fully opaque or fully transparent. # The background color of the cell.
3852 "rgbColor": { # An RGB color. # The RGB color value.
3853 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
3854 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
3855 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
3859 … "borderRight": { # A border around a table cell. # The right border of the cell.
3860 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
3863 "rgbColor": { # An RGB color. # The RGB color value.
3864 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
3865 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
3866 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
3870 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
3871 "magnitude": 3.14, # The magnitude.
3872 "unit": "A String", # The units for magnitude.
3874 "dashStyle": "A String", # The dash style of the border.
3876 "rowSpan": 42, # The row span of the cell. This property is read-only.
3877 …"contentAlignment": "A String", # The alignment of the content in the table cell. The default alig…
3878 # matches the alignment for newly created table cells in the Docs editor.
3879 …dingRight": { # A magnitude in a single direction in the specified units. # The right padding of t…
3880 "magnitude": 3.14, # The magnitude.
3881 "unit": "A String", # The units for magnitude.
3883 "borderTop": { # A border around a table cell. # The top border of the cell.
3884 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
3887 "rgbColor": { # An RGB color. # The RGB color value.
3888 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
3889 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
3890 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
3894 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
3895 "magnitude": 3.14, # The magnitude.
3896 "unit": "A String", # The units for magnitude.
3898 "dashStyle": "A String", # The dash style of the border.
3901 … "startIndex": 42, # The zero-based start index of this cell, in UTF-16 code units.
3902 …"suggestedTableCellStyleChanges": { # The suggested changes to the table cell style, keyed by sugg…
3904 … "tableCellStyle": { # The style of a TableCell. # A TableCellStyle that only includes
3905 # the changes made in this suggestion. This can be used along with the
3910 # A table cell style can inherit from the table's style.
3911 …ngBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of t…
3912 "magnitude": 3.14, # The magnitude.
3913 "unit": "A String", # The units for magnitude.
3915 … "borderBottom": { # A border around a table cell. # The bottom border of the cell.
3916 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
3919 "rgbColor": { # An RGB color. # The RGB color value.
3920 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
3921 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
3922 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
3926 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
3927 "magnitude": 3.14, # The magnitude.
3928 "unit": "A String", # The units for magnitude.
3930 "dashStyle": "A String", # The dash style of the border.
3932 …ddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of th…
3933 "magnitude": 3.14, # The magnitude.
3934 "unit": "A String", # The units for magnitude.
3936 …paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of th…
3937 "magnitude": 3.14, # The magnitude.
3938 "unit": "A String", # The units for magnitude.
3940 … "borderLeft": { # A border around a table cell. # The left border of the cell.
3941 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
3944 "rgbColor": { # An RGB color. # The RGB color value.
3945 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
3946 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
3947 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
3951 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
3952 "magnitude": 3.14, # The magnitude.
3953 "unit": "A String", # The units for magnitude.
3955 "dashStyle": "A String", # The dash style of the border.
3957 … "columnSpan": 42, # The column span of the cell. This property is read-only.
3958 …# A color that can either be fully opaque or fully transparent. # The background color of the cell.
3961 "rgbColor": { # An RGB color. # The RGB color value.
3962 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
3963 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
3964 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
3968 … "borderRight": { # A border around a table cell. # The right border of the cell.
3969 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
3972 "rgbColor": { # An RGB color. # The RGB color value.
3973 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
3974 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
3975 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
3979 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
3980 "magnitude": 3.14, # The magnitude.
3981 "unit": "A String", # The units for magnitude.
3983 "dashStyle": "A String", # The dash style of the border.
3985 "rowSpan": 42, # The row span of the cell. This property is read-only.
3986 …"contentAlignment": "A String", # The alignment of the content in the table cell. The default alig…
3987 … # matches the alignment for newly created table cells in the Docs editor.
3988 …dingRight": { # A magnitude in a single direction in the specified units. # The right padding of t…
3989 "magnitude": 3.14, # The magnitude.
3990 "unit": "A String", # The units for magnitude.
3992 … "borderTop": { # A border around a table cell. # The top border of the cell.
3993 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
3996 "rgbColor": { # An RGB color. # The RGB color value.
3997 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
3998 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
3999 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
4003 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
4004 "magnitude": 3.14, # The magnitude.
4005 "unit": "A String", # The units for magnitude.
4007 "dashStyle": "A String", # The dash style of the border.
4010 …tes which of the fields on the base TableCellStyle have been changed in this suggestion. # A mask …
4029 "tableRowStyle": { # Styles that apply to a table row. # The style of the table row.
4030 …agnitude in a single direction in the specified units. # The minimum height of the row. The row wi…
4031 # at a height equal to or greater than this value in order to show all the
4032 # content in the row's cells.
4033 "magnitude": 3.14, # The magnitude.
4034 "unit": "A String", # The units for magnitude.
4037 "suggestedInsertionIds": [ # The suggested insertion IDs. A TableRow
4042 "startIndex": 42, # The zero-based start index of this row, in UTF-16 code units.
4043 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
4047 …"suggestedTableRowStyleChanges": { # The suggested style changes to this row, keyed by suggestion …
4051 # the changes made in this suggestion. This can be used along with the
4054 …agnitude in a single direction in the specified units. # The minimum height of the row. The row wi…
4055 # at a height equal to or greater than this value in order to show all the
4056 # content in the row's cells.
4057 "magnitude": 3.14, # The magnitude.
4058 "unit": "A String", # The units for magnitude.
4061 …ates which of the fields on the base TableRowStyle have been changed in this suggestion. # A mask …
4069 "columns": 42, # Number of columns in the table.
4077 "documentStyle": { # The style of the document. # The style of the document.
4078 …"defaultFooterId": "A String", # The ID of the default footer. If not set, there is no default foo…
4079 "evenPageFooterId": "A String", # The ID of the footer used only for even pages. The value of
4081 # whether to use the default_footer_id or this value for the
4083 …"firstPageFooterId": "A String", # The ID of the footer used only for the first page. If not set t…
4084 # a unique footer for the first page does not exist. The value of
4086 # whether to use the default_footer_id or this value for the
4087 # footer on the first page. If not set, there is no first page footer.
4088 "pageSize": { # A width and height. # The size of a page in the document.
4089 … "width": { # A magnitude in a single direction in the specified units. # The width of the object.
4090 "magnitude": 3.14, # The magnitude.
4091 "unit": "A String", # The units for magnitude.
4093 …"height": { # A magnitude in a single direction in the specified units. # The height of the object.
4094 "magnitude": 3.14, # The magnitude.
4095 "unit": "A String", # The units for magnitude.
4098 …"defaultHeaderId": "A String", # The ID of the default header. If not set, there is no default hea…
4099 …"marginBottom": { # A magnitude in a single direction in the specified units. # The bottom page ma…
4100 "magnitude": 3.14, # The magnitude.
4101 "unit": "A String", # The units for magnitude.
4103 …"firstPageHeaderId": "A String", # The ID of the header used only for the first page. If not set t…
4104 # a unique header for the first page does not exist.
4105 # The value of use_first_page_header_footer determines
4106 # whether to use the default_header_id or this value for the
4107 # header on the first page. If not set, there is no first page header.
4108 "evenPageHeaderId": "A String", # The ID of the header used only for even pages. The value of
4110 # whether to use the default_header_id or this value for the
4112 …aderFooter": True or False, # Indicates whether to use the first page header / footer IDs for the
4114 …"marginLeft": { # A magnitude in a single direction in the specified units. # The left page margin.
4115 "magnitude": 3.14, # The magnitude.
4116 "unit": "A String", # The units for magnitude.
4118 …eaderFooter": True or False, # Indicates whether to use the even page header / footer IDs for the
4120 "background": { # Represents the background of a document. # The background of the document.
4121 … "color": { # A color that can either be fully opaque or fully transparent. # The background color.
4124 "rgbColor": { # An RGB color. # The RGB color value.
4125 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
4126 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
4127 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
4132 …"marginRight": { # A magnitude in a single direction in the specified units. # The right page marg…
4133 "magnitude": 3.14, # The magnitude.
4134 "unit": "A String", # The units for magnitude.
4136 "pageNumberStart": 42, # The page number from which to start counting the number of pages.
4137 … "marginTop": { # A magnitude in a single direction in the specified units. # The top page margin.
4138 "magnitude": 3.14, # The magnitude.
4139 "unit": "A String", # The units for magnitude.
4142 "title": "A String", # The title of the document.
4143 "namedRanges": { # The named ranges in the document, keyed by name.
4144 "a_key": { # A collection of all the NamedRanges in the
4146 "namedRanges": [ # The NamedRanges that share the same name.
4147 { # A collection of Ranges with the same named range
4153 # the same name, but every named range has a unique ID.
4157 # However, certain document changes can cause the range to be split into
4161 # access to the document can see its named ranges.
4162 "ranges": [ # The ranges that belong to this named range.
4164 … "endIndex": 42, # The zero-based end index of this range, exclusive, in UTF-16 code units.
4168 "startIndex": 42, # The zero-based start index of this range, in UTF-16 code units.
4172 …"segmentId": "A String", # The ID of the header, footer or footnote that this range is contained i…
4173 # An empty segment ID signifies the document's body.
4176 "namedRangeId": "A String", # The ID of the named range.
4177 "name": "A String", # The name of the named range.
4180 "name": "A String", # The name that all the named ranges share.
4183 …"suggestedDocumentStyleChanges": { # The suggested changes to the style of the document, keyed by …
4184 "a_key": { # A suggested change to the DocumentStyle.
4185 "documentStyle": { # The style of the document. # A DocumentStyle that only includes
4186 # the changes made in this suggestion. This can be used along with the
4189 …"defaultFooterId": "A String", # The ID of the default footer. If not set, there is no default foo…
4190 … "evenPageFooterId": "A String", # The ID of the footer used only for even pages. The value of
4192 # whether to use the default_footer_id or this value for the
4194 …"firstPageFooterId": "A String", # The ID of the footer used only for the first page. If not set t…
4195 # a unique footer for the first page does not exist. The value of
4197 # whether to use the default_footer_id or this value for the
4198 # footer on the first page. If not set, there is no first page footer.
4199 "pageSize": { # A width and height. # The size of a page in the document.
4200 … "width": { # A magnitude in a single direction in the specified units. # The width of the object.
4201 "magnitude": 3.14, # The magnitude.
4202 "unit": "A String", # The units for magnitude.
4204 …"height": { # A magnitude in a single direction in the specified units. # The height of the object.
4205 "magnitude": 3.14, # The magnitude.
4206 "unit": "A String", # The units for magnitude.
4209 …"defaultHeaderId": "A String", # The ID of the default header. If not set, there is no default hea…
4210 …"marginBottom": { # A magnitude in a single direction in the specified units. # The bottom page ma…
4211 "magnitude": 3.14, # The magnitude.
4212 "unit": "A String", # The units for magnitude.
4214 …"firstPageHeaderId": "A String", # The ID of the header used only for the first page. If not set t…
4215 # a unique header for the first page does not exist.
4216 # The value of use_first_page_header_footer determines
4217 # whether to use the default_header_id or this value for the
4218 # header on the first page. If not set, there is no first page header.
4219 … "evenPageHeaderId": "A String", # The ID of the header used only for even pages. The value of
4221 # whether to use the default_header_id or this value for the
4223 …aderFooter": True or False, # Indicates whether to use the first page header / footer IDs for the
4225 …"marginLeft": { # A magnitude in a single direction in the specified units. # The left page margin.
4226 "magnitude": 3.14, # The magnitude.
4227 "unit": "A String", # The units for magnitude.
4229 …eaderFooter": True or False, # Indicates whether to use the even page header / footer IDs for the
4231 … "background": { # Represents the background of a document. # The background of the document.
4232 … "color": { # A color that can either be fully opaque or fully transparent. # The background color.
4235 "rgbColor": { # An RGB color. # The RGB color value.
4236 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
4237 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
4238 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
4243 …"marginRight": { # A magnitude in a single direction in the specified units. # The right page marg…
4244 "magnitude": 3.14, # The magnitude.
4245 "unit": "A String", # The units for magnitude.
4247 "pageNumberStart": 42, # The page number from which to start counting the number of pages.
4248 … "marginTop": { # A magnitude in a single direction in the specified units. # The top page margin.
4249 "magnitude": 3.14, # The magnitude.
4250 "unit": "A String", # The units for magnitude.
4253 …ates which of the fields on the base DocumentStyle have been changed in this suggestion. # A mask …
4261 … that indicates which of the fields on the base Size have been changed in this suggestion. # A mas…
4263 # For any field set to true, the Size has
4274 …at indicates which of the fields on the base Background have been changed in this suggestion. # A …
4276 # For any field set to true, the Backgound has a new suggested value.
4277 …"backgroundColorSuggested": True or False, # Indicates whether the current background color has be…
4284 …"suggestedNamedStylesChanges": { # The suggested changes to the named styles of the document, keye…
4286 "a_key": { # A suggested change to the NamedStyles.
4287 …amedStylesSuggestionState": { # The suggestion state of a NamedStyles # A mask that indicates whic…
4289 …"stylesSuggestionStates": [ # A mask that indicates which of the fields on the corresponding Named…
4292 # The order of these named style suggestion states match the order of the
4293 # corresponding named style within the named styles suggestion.
4295 … indicates which of the fields on the base ParagraphStyle have been changed in this suggestion. # …
4317 … mask that indicates which of the fields on the base Shading have been changed in this # A mask th…
4320 …ckgroundColorSuggested": True or False, # Indicates if there was a suggested change to the Shading.
4323 …hat indicates which of the fields on the base TextStyle have been changed in this suggestion. # A …
4338 … "namedStyleType": "A String", # The named style type that this suggestion state corresponds to.
4340 # This field is provided as a convenience for matching the
4345 …"namedStyles": { # The named styles. Paragraphs in the document can inherit their # A NamedStyles …
4346 # changes made in this suggestion. This can be used along with the
4351 "styles": [ # The named styles.
4353 # There is an entry for each of the possible named style types.
4354 { # A named style. Paragraphs in the document can inherit their
4357 # when they have the same named style type.
4358 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this name…
4361 # text style's parent depends on where the text style is defined:
4363 # * The TextStyle of text in a Paragraph
4364 # inherits from the paragraph's corresponding named style type.
4365 # * The TextStyle on a named style
4366 # inherits from the normal text named style.
4367 # * The TextStyle of the normal text named style inherits
4368 # from the default text style in the Docs editor.
4369 # * The TextStyle on a Paragraph element
4370 # that is contained in a table may inherit its text style from the table
4373 # If the text style does not inherit from a parent, unsetting fields will
4374 # revert the style to a value matching the defaults in the Docs editor.
4375 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
4376 # or transparent, depending on the `color` field.
4379 "rgbColor": { # An RGB color. # The RGB color value.
4380 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
4381 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
4382 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
4386 "italic": True or False, # Whether or not the text is italicized.
4387 "baselineOffset": "A String", # The text's vertical offset from its normal position.
4390 # rendered in a smaller font size, computed based on the `font_size` field.
4391 # The `font_size` itself is not affected by changes in this field.
4392 "strikethrough": True or False, # Whether or not the text is struck through.
4393 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
4396 # `bold`, the `weighted_font_family` is applied first, then `bold`.
4403 "fontFamily": "A String", # The font family of the text.
4405 # The font family can be any font from the Font menu in Docs or from
4406 # [Google Fonts] (https://fonts.google.com/). If the font name is
4407 # unrecognized, the text is rendered in `Arial`.
4408 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
4409 # `100` between `100` and `900`, inclusive. This range corresponds to the
4410 # numerical values described in the CSS 2.1 Specification,
4414 # The default value is `400` ("normal").
4416 # The font weight makes up just one component of the rendered font weight.
4417 # The rendered weight is determined by a combination of the `weight` and the
4420 # * If the text is bold and the weight is less than `400`, the rendered
4422 # * If the text is bold and the weight is greater than or equal to `400` but
4423 # is less than `700`, the rendered weight is `700`.
4424 # * If the weight is greater than or equal to `700`, the rendered weight is
4425 # equal to the weight.
4426 # * If the text is not bold, the rendered weight is equal to the weight.
4428 "smallCaps": True or False, # Whether or not the text is in small capital letters.
4429 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
4430 "magnitude": 3.14, # The magnitude.
4431 "unit": "A String", # The units for magnitude.
4433 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
4434 # or transparent, depending on the `color` field.
4437 "rgbColor": { # An RGB color. # The RGB color value.
4438 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
4439 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
4440 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
4444 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
4447 # Changing the link in an update request causes some other changes to the
4448 # text style of the range:
4450 # * When setting a link, the text foreground color will be updated to the
4451 # default link color and the text will be underlined. If these fields are
4452 # modified in the same request, those values will be used instead of the
4455 # also update the existing link to point to the new URL.
4458 # will separate the newline character(s) into their own text runs. The
4459 # link will be applied separately to the runs before and after the newline.
4460 # * Removing a link will update the text style of the range to match the
4461 # style of the preceding text (or the default text styles if the preceding
4462 # text is another link) unless different styles are being set in the same
4464 "headingId": "A String", # The ID of a heading in this document.
4466 "bookmarkId": "A String", # The ID of a bookmark in this document.
4468 "underline": True or False, # Whether or not the text is underlined.
4469 "bold": True or False, # Whether or not the text is rendered as bold.
4471 "namedStyleType": "A String", # The type of this named style.
4472 …"paragraphStyle": { # Styles that apply to a whole paragraph. # The paragraph style of this named …
4475 # A paragraph style's parent depends on where the paragraph style is defined:
4477 # * The ParagraphStyle on a Paragraph
4478 # inherits from the paragraph's corresponding named style type.
4479 # * The ParagraphStyle on a named style
4480 # inherits from the normal text named style.
4481 # * The ParagraphStyle of the normal text named style inherits
4482 # from the default paragraph style in the Docs editor.
4483 # * The ParagraphStyle on a Paragraph
4485 # the table style.
4487 # If the paragraph style does not inherit from a parent, unsetting fields will
4488 # revert the style to a value matching the defaults in the Docs editor.
4489 "spacingMode": "A String", # The spacing mode for the paragraph.
4490 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
4493 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
4494 # inherited from the parent.
4495 "magnitude": 3.14, # The magnitude.
4496 "unit": "A String", # The units for magnitude.
4498 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
4499 # page or column as the next paragraph if possible. If unset, the value is
4500 # inherited from the parent.
4501 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
4502 # is represented as 100.0. If unset, the value is inherited from the parent.
4503 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
4504 # is inherited from the parent.
4505 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
4506 # inherited from the parent.
4508 # The bottom border is rendered when the paragraph below has different border
4512 # changes to a paragraph border the new border must be specified in
4514 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
4517 "rgbColor": { # An RGB color. # The RGB color value.
4518 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
4519 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
4520 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
4524 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
4525 "magnitude": 3.14, # The magnitude.
4526 "unit": "A String", # The units for magnitude.
4528 "dashStyle": "A String", # The dash style of the border.
4529 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
4530 "magnitude": 3.14, # The magnitude.
4531 "unit": "A String", # The units for magnitude.
4534 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
4535 # the start of the text, based on the current paragraph direction. If unset,
4536 # the value is inherited from the parent.
4537 "magnitude": 3.14, # The magnitude.
4538 "unit": "A String", # The units for magnitude.
4540 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
4541 # If unset, the value is inherited from the parent.
4543 # The between border is rendered when the adjacent paragraph has the same
4547 # changes to a paragraph border the new border must be specified in
4549 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
4552 "rgbColor": { # An RGB color. # The RGB color value.
4553 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
4554 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
4555 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
4559 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
4560 "magnitude": 3.14, # The magnitude.
4561 "unit": "A String", # The units for magnitude.
4563 "dashStyle": "A String", # The dash style of the border.
4564 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
4565 "magnitude": 3.14, # The magnitude.
4566 "unit": "A String", # The units for magnitude.
4569 "namedStyleType": "A String", # The named style type of the paragraph.
4571 # Since updating the named style type affects other properties within
4572 # ParagraphStyle, the named style type is applied before the other properties
4574 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
4575 # from the parent.
4578 # changes to a paragraph border the new border must be specified in
4580 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
4583 "rgbColor": { # An RGB color. # The RGB color value.
4584 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
4585 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
4586 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
4590 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
4591 "magnitude": 3.14, # The magnitude.
4592 "unit": "A String", # The units for magnitude.
4594 "dashStyle": "A String", # The dash style of the border.
4595 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
4596 "magnitude": 3.14, # The magnitude.
4597 "unit": "A String", # The units for magnitude.
4600 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
4601 # the end of the text, based on the current paragraph direction. If unset,
4602 # the value is inherited from the parent.
4603 "magnitude": 3.14, # The magnitude.
4604 "unit": "A String", # The units for magnitude.
4606 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
4607 # from the parent.
4610 # changes to a paragraph border the new border must be specified in
4612 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
4615 "rgbColor": { # An RGB color. # The RGB color value.
4616 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
4617 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
4618 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
4622 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
4623 "magnitude": 3.14, # The magnitude.
4624 "unit": "A String", # The units for magnitude.
4626 "dashStyle": "A String", # The dash style of the border.
4627 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
4628 "magnitude": 3.14, # The magnitude.
4629 "unit": "A String", # The units for magnitude.
4632 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
4633 # inherited from the parent.
4634 "magnitude": 3.14, # The magnitude.
4635 "unit": "A String", # The units for magnitude.
4637 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
4639 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
4641 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
4644 "rgbColor": { # An RGB color. # The RGB color value.
4645 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
4646 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
4647 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
4652 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
4653 # from the parent.
4655 # The top border is rendered when the paragraph above has different border
4659 # changes to a paragraph border the new border must be specified in
4661 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
4664 "rgbColor": { # An RGB color. # The RGB color value.
4665 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
4666 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
4667 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
4671 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
4672 "magnitude": 3.14, # The magnitude.
4673 "unit": "A String", # The units for magnitude.
4675 "dashStyle": "A String", # The dash style of the border.
4676 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
4677 "magnitude": 3.14, # The magnitude.
4678 "unit": "A String", # The units for magnitude.
4681 … "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
4684 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
4685 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
4686 "magnitude": 3.14, # The magnitude.
4687 "unit": "A String", # The units for magnitude.
4691 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
4692 # the value is inherited from the parent.
4693 "magnitude": 3.14, # The magnitude.
4694 "unit": "A String", # The units for magnitude.
4696 "alignment": "A String", # The text alignment for this paragraph.
4697 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
4698 # column if possible. If unset, the value is inherited from the parent.
4705 "suggestionsViewMode": "A String", # The suggestions view mode applied to the document.
4709 "lists": { # The lists in the document, keyed by list ID.
4710 "a_key": { # A List represents the list attributes for a group of paragraphs that all
4711 # belong to the same list. A paragraph that is part of a list has a reference
4712 # to the list's ID in its bullet.
4713 …"listProperties": { # The properties of a list which describe the look # The properties of the lis…
4715 "nestingLevels": [ # Describes the properties of the bullets at the associated level.
4718 # corresponding to the top-most level and nesting level 8 corresponding to
4719 # the most nested level. The nesting levels are returned in ascending order
4720 # with the least nested returned first.
4721 { # Contains properties describing the look and feel of a list bullet at a given
4723 …"textStyle": { # Represents the styling that can be applied to text. # The text style of bullets a…
4726 # text style's parent depends on where the text style is defined:
4728 # * The TextStyle of text in a Paragraph
4729 # inherits from the paragraph's corresponding named style type.
4730 # * The TextStyle on a named style
4731 # inherits from the normal text named style.
4732 # * The TextStyle of the normal text named style inherits
4733 # from the default text style in the Docs editor.
4734 # * The TextStyle on a Paragraph element
4735 # that is contained in a table may inherit its text style from the table
4738 # If the text style does not inherit from a parent, unsetting fields will
4739 # revert the style to a value matching the defaults in the Docs editor.
4740 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
4741 # or transparent, depending on the `color` field.
4744 "rgbColor": { # An RGB color. # The RGB color value.
4745 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
4746 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
4747 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
4751 "italic": True or False, # Whether or not the text is italicized.
4752 "baselineOffset": "A String", # The text's vertical offset from its normal position.
4755 # rendered in a smaller font size, computed based on the `font_size` field.
4756 # The `font_size` itself is not affected by changes in this field.
4757 "strikethrough": True or False, # Whether or not the text is struck through.
4758 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
4761 # `bold`, the `weighted_font_family` is applied first, then `bold`.
4768 "fontFamily": "A String", # The font family of the text.
4770 # The font family can be any font from the Font menu in Docs or from
4771 # [Google Fonts] (https://fonts.google.com/). If the font name is
4772 # unrecognized, the text is rendered in `Arial`.
4773 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
4774 # `100` between `100` and `900`, inclusive. This range corresponds to the
4775 # numerical values described in the CSS 2.1 Specification,
4779 # The default value is `400` ("normal").
4781 # The font weight makes up just one component of the rendered font weight.
4782 # The rendered weight is determined by a combination of the `weight` and the
4785 # * If the text is bold and the weight is less than `400`, the rendered
4787 # * If the text is bold and the weight is greater than or equal to `400` but
4788 # is less than `700`, the rendered weight is `700`.
4789 # * If the weight is greater than or equal to `700`, the rendered weight is
4790 # equal to the weight.
4791 # * If the text is not bold, the rendered weight is equal to the weight.
4793 "smallCaps": True or False, # Whether or not the text is in small capital letters.
4794 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
4795 "magnitude": 3.14, # The magnitude.
4796 "unit": "A String", # The units for magnitude.
4798 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
4799 # or transparent, depending on the `color` field.
4802 "rgbColor": { # An RGB color. # The RGB color value.
4803 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
4804 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
4805 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
4809 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
4812 # Changing the link in an update request causes some other changes to the
4813 # text style of the range:
4815 # * When setting a link, the text foreground color will be updated to the
4816 # default link color and the text will be underlined. If these fields are
4817 # modified in the same request, those values will be used instead of the
4820 # also update the existing link to point to the new URL.
4823 # will separate the newline character(s) into their own text runs. The
4824 # link will be applied separately to the runs before and after the newline.
4825 # * Removing a link will update the text style of the range to match the
4826 # style of the preceding text (or the default text styles if the preceding
4827 # text is another link) unless different styles are being set in the same
4829 "headingId": "A String", # The ID of a heading in this document.
4831 "bookmarkId": "A String", # The ID of a bookmark in this document.
4833 "underline": True or False, # Whether or not the text is underlined.
4834 "bold": True or False, # Whether or not the text is rendered as bold.
4836 …"indentStart": { # A magnitude in a single direction in the specified units. # The amount of inden…
4837 # to the side that corresponds to the start of the text, based on the
4839 "magnitude": 3.14, # The magnitude.
4840 "unit": "A String", # The units for magnitude.
4842 … "glyphFormat": "A String", # The format string used by bullets at this level of nesting.
4844 # The glyph format contains one or more placeholders, and these placeholder
4845 …# are replaced with the appropriate values depending on the glyph_type or glyph_symbol. The placeh…
4846 # the pattern `%[nesting_level]`. Furthermore, placeholders can have prefixes
4847 # and suffixes. Thus, the glyph format follows the pattern
4848 # `<prefix>%[nesting_level]<suffix>`. Note that the prefix and suffix are
4851 # For example, the glyph format `%0.` indicates that the rendered glyph will
4852 # replace the placeholder with the corresponding glyph for nesting level 0
4853 # followed by a period as the suffix. So a list with a glyph type of
4861 # The glyph format can contain placeholders for the current nesting level as
4873 # For nesting levels that are ordered, the string that replaces a placeholder
4874 # in the glyph format for a particular paragraph depends on the paragraph's
4875 # order within the list.
4876 … "glyphType": "A String", # The type of glyph used by bullets when paragraphs at this level of
4879 # The glyph type determines the type of glyph used to replace placeholders
4880 # within the glyph_format
4881 # when paragraphs at this level of nesting are ordered. For example, if the
4882 # nesting level is 0, the glyph_format is `%0.` and the glyph
4884 # then the rendered glyph would replace the placeholder `%0` in the glyph
4885 # format with a number corresponding to list item's order within the list.
4886 "startNumber": 42, # The number of the first list item at this nesting level.
4893 …"bulletAlignment": "A String", # The alignment of the bullet within the space allotted for renderi…
4898 … # The glyph symbol replaces placeholders within the glyph_format. For example, if the
4899 # glyph_symbol is the solid circle corresponding to Unicode U+25cf code
4900 # point and the glyph_format is `%0`, the rendered
4901 # glyph would be the solid circle.
4902 …Line": { # A magnitude in a single direction in the specified units. # The amount of indentation f…
4904 "magnitude": 3.14, # The magnitude.
4905 "unit": "A String", # The units for magnitude.
4910 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
4914 …"suggestedListPropertiesChanges": { # The suggested changes to the list properties, keyed by sugge…
4917 …"listProperties": { # The properties of a list which describe the look # A ListProperties that onl…
4918 # the changes made in this suggestion. This can be used along with the
4922 "nestingLevels": [ # Describes the properties of the bullets at the associated level.
4925 # corresponding to the top-most level and nesting level 8 corresponding to
4926 # the most nested level. The nesting levels are returned in ascending order
4927 # with the least nested returned first.
4928 { # Contains properties describing the look and feel of a list bullet at a given
4930 …"textStyle": { # Represents the styling that can be applied to text. # The text style of bullets a…
4933 # text style's parent depends on where the text style is defined:
4935 # * The TextStyle of text in a Paragraph
4936 # inherits from the paragraph's corresponding named style type.
4937 # * The TextStyle on a named style
4938 # inherits from the normal text named style.
4939 # * The TextStyle of the normal text named style inherits
4940 # from the default text style in the Docs editor.
4941 # * The TextStyle on a Paragraph element
4942 # that is contained in a table may inherit its text style from the table
4945 # If the text style does not inherit from a parent, unsetting fields will
4946 # revert the style to a value matching the defaults in the Docs editor.
4947 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
4948 # or transparent, depending on the `color` field.
4951 "rgbColor": { # An RGB color. # The RGB color value.
4952 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
4953 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
4954 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
4958 "italic": True or False, # Whether or not the text is italicized.
4959 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
4962 # rendered in a smaller font size, computed based on the `font_size` field.
4963 # The `font_size` itself is not affected by changes in this field.
4964 "strikethrough": True or False, # Whether or not the text is struck through.
4965 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
4968 # `bold`, the `weighted_font_family` is applied first, then `bold`.
4975 "fontFamily": "A String", # The font family of the text.
4977 # The font family can be any font from the Font menu in Docs or from
4978 # [Google Fonts] (https://fonts.google.com/). If the font name is
4979 # unrecognized, the text is rendered in `Arial`.
4980 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
4981 # `100` between `100` and `900`, inclusive. This range corresponds to the
4982 # numerical values described in the CSS 2.1 Specification,
4986 # The default value is `400` ("normal").
4988 # The font weight makes up just one component of the rendered font weight.
4989 … # The rendered weight is determined by a combination of the `weight` and the
4992 # * If the text is bold and the weight is less than `400`, the rendered
4994 … # * If the text is bold and the weight is greater than or equal to `400` but
4995 # is less than `700`, the rendered weight is `700`.
4996 … # * If the weight is greater than or equal to `700`, the rendered weight is
4997 # equal to the weight.
4998 # * If the text is not bold, the rendered weight is equal to the weight.
5000 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
5001 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
5002 "magnitude": 3.14, # The magnitude.
5003 "unit": "A String", # The units for magnitude.
5005 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
5006 # or transparent, depending on the `color` field.
5009 "rgbColor": { # An RGB color. # The RGB color value.
5010 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
5011 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
5012 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
5016 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
5019 # Changing the link in an update request causes some other changes to the
5020 # text style of the range:
5022 # * When setting a link, the text foreground color will be updated to the
5023 # default link color and the text will be underlined. If these fields are
5024 # modified in the same request, those values will be used instead of the
5027 # also update the existing link to point to the new URL.
5030 # will separate the newline character(s) into their own text runs. The
5031 … # link will be applied separately to the runs before and after the newline.
5032 # * Removing a link will update the text style of the range to match the
5033 # style of the preceding text (or the default text styles if the preceding
5034 # text is another link) unless different styles are being set in the same
5036 "headingId": "A String", # The ID of a heading in this document.
5038 "bookmarkId": "A String", # The ID of a bookmark in this document.
5040 "underline": True or False, # Whether or not the text is underlined.
5041 "bold": True or False, # Whether or not the text is rendered as bold.
5043 …"indentStart": { # A magnitude in a single direction in the specified units. # The amount of inden…
5044 # to the side that corresponds to the start of the text, based on the
5046 "magnitude": 3.14, # The magnitude.
5047 "unit": "A String", # The units for magnitude.
5049 … "glyphFormat": "A String", # The format string used by bullets at this level of nesting.
5051 # The glyph format contains one or more placeholders, and these placeholder
5052 …# are replaced with the appropriate values depending on the glyph_type or glyph_symbol. The placeh…
5053 # the pattern `%[nesting_level]`. Furthermore, placeholders can have prefixes
5054 # and suffixes. Thus, the glyph format follows the pattern
5055 # `<prefix>%[nesting_level]<suffix>`. Note that the prefix and suffix are
5058 # For example, the glyph format `%0.` indicates that the rendered glyph will
5059 # replace the placeholder with the corresponding glyph for nesting level 0
5060 # followed by a period as the suffix. So a list with a glyph type of
5068 # The glyph format can contain placeholders for the current nesting level as
5080 # For nesting levels that are ordered, the string that replaces a placeholder
5081 # in the glyph format for a particular paragraph depends on the paragraph's
5082 # order within the list.
5083 … "glyphType": "A String", # The type of glyph used by bullets when paragraphs at this level of
5086 # The glyph type determines the type of glyph used to replace placeholders
5087 # within the glyph_format
5088 # when paragraphs at this level of nesting are ordered. For example, if the
5089 # nesting level is 0, the glyph_format is `%0.` and the glyph
5091 # then the rendered glyph would replace the placeholder `%0` in the glyph
5092 # format with a number corresponding to list item's order within the list.
5093 "startNumber": 42, # The number of the first list item at this nesting level.
5100 …"bulletAlignment": "A String", # The alignment of the bullet within the space allotted for renderi…
5105 … # The glyph symbol replaces placeholders within the glyph_format. For example, if the
5106 # glyph_symbol is the solid circle corresponding to Unicode U+25cf code
5107 # point and the glyph_format is `%0`, the rendered
5108 # glyph would be the solid circle.
5109 …Line": { # A magnitude in a single direction in the specified units. # The amount of indentation f…
5111 "magnitude": 3.14, # The magnitude.
5112 "unit": "A String", # The units for magnitude.
5117 …tes which of the fields on the base ListProperties have been changed in this suggestion. # A mask …
5119 …"nestingLevelsSuggestionStates": [ # A mask that indicates which of the fields on the corresponding
5123 # The nesting level suggestion states are returned in ascending order of the
5124 # nesting level with the least nested returned first.
5125 …{ # A mask that indicates which of the fields on the base NestingLevel have been changed in this s…
5127 …hat indicates which of the fields on the base TextStyle have been changed in this suggestion. # A …
5161 …"suggestedInsertionId": "A String", # The suggested insertion ID. If empty, then this is not a sug…
5165 "headers": { # The headers in the document, keyed by header ID.
5167 "headerId": "A String", # The ID of the header.
5168 "content": [ # The contents of the header.
5170 # The indexes for a header's content begin at zero.
5171 { # A StructuralElement describes content that provides structure to the
5173 … "endIndex": 42, # The zero-based end index of this structural element, exclusive, in UTF-16
5176 # section break. A section is a range of content which has the same
5178 # the start of a new section, and the section style applies to the section
5179 # after the section break.
5181 # The document body always begins with a section break.
5182 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
5186 …"sectionStyle": { # The styling that applies to a section. # The style of the section after this s…
5187 …"contentDirection": "A String", # The content direction of this section. If unset, the value defau…
5189 "columnProperties": [ # The section's columns properties.
5191 # If empty, the section contains one column with the default properties in
5192 # the Docs editor.
5194 … "width": { # A magnitude in a single direction in the specified units. # The width of the column.
5195 "magnitude": 3.14, # The magnitude.
5196 "unit": "A String", # The units for magnitude.
5198 …ingEnd": { # A magnitude in a single direction in the specified units. # The padding at the end of…
5199 "magnitude": 3.14, # The magnitude.
5200 "unit": "A String", # The units for magnitude.
5204 "columnSeparatorStyle": "A String", # The style of column separators.
5206 # This style can be set even when there is one column in the section.
5208 …"suggestedInsertionIds": [ # The suggested insertion IDs. A SectionBreak may have multiple inserti…
5216 "content": [ # The content of the table of contents.
5219 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
5223 …"suggestedInsertionIds": [ # The suggested insertion IDs. A TableOfContents may have multiple inse…
5229 … "startIndex": 42, # The zero-based start index of this structural element, in UTF-16 code
5234 "elements": [ # The content of the paragraph broken down into its component parts.
5237 … "endIndex": 42, # The zero-base end index of this paragraph element, exclusive, in UTF-16
5241 "suggestedInsertionIds": [ # The suggested insertion IDs. A Equation
5246 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
5252 # column break. A column break makes the subsequent text start at the top of
5253 # the next column.
5254 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Colu…
5256 # Similar to text content, like text runs and footnote references, the text
5257 … # style of a column break can affect content layout as well as the styling of
5261 # text style's parent depends on where the text style is defined:
5263 # * The TextStyle of text in a Paragraph
5264 # inherits from the paragraph's corresponding named style type.
5265 # * The TextStyle on a named style
5266 # inherits from the normal text named style.
5267 # * The TextStyle of the normal text named style inherits
5268 # from the default text style in the Docs editor.
5269 # * The TextStyle on a Paragraph element
5270 # that is contained in a table may inherit its text style from the table
5273 # If the text style does not inherit from a parent, unsetting fields will
5274 # revert the style to a value matching the defaults in the Docs editor.
5275 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
5276 # or transparent, depending on the `color` field.
5279 "rgbColor": { # An RGB color. # The RGB color value.
5280 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
5281 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
5282 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
5286 "italic": True or False, # Whether or not the text is italicized.
5287 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
5290 … # rendered in a smaller font size, computed based on the `font_size` field.
5291 # The `font_size` itself is not affected by changes in this field.
5292 "strikethrough": True or False, # Whether or not the text is struck through.
5293 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
5296 # `bold`, the `weighted_font_family` is applied first, then `bold`.
5303 "fontFamily": "A String", # The font family of the text.
5305 # The font family can be any font from the Font menu in Docs or from
5306 # [Google Fonts] (https://fonts.google.com/). If the font name is
5307 # unrecognized, the text is rendered in `Arial`.
5308 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
5309 … # `100` between `100` and `900`, inclusive. This range corresponds to the
5310 # numerical values described in the CSS 2.1 Specification,
5314 # The default value is `400` ("normal").
5316 … # The font weight makes up just one component of the rendered font weight.
5317 … # The rendered weight is determined by a combination of the `weight` and the
5320 # * If the text is bold and the weight is less than `400`, the rendered
5322 … # * If the text is bold and the weight is greater than or equal to `400` but
5323 # is less than `700`, the rendered weight is `700`.
5324 … # * If the weight is greater than or equal to `700`, the rendered weight is
5325 # equal to the weight.
5326 # * If the text is not bold, the rendered weight is equal to the weight.
5328 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
5329 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
5330 "magnitude": 3.14, # The magnitude.
5331 "unit": "A String", # The units for magnitude.
5333 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
5334 # or transparent, depending on the `color` field.
5337 "rgbColor": { # An RGB color. # The RGB color value.
5338 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
5339 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
5340 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
5344 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
5347 # Changing the link in an update request causes some other changes to the
5348 # text style of the range:
5350 # * When setting a link, the text foreground color will be updated to the
5351 … # default link color and the text will be underlined. If these fields are
5352 # modified in the same request, those values will be used instead of the
5355 # also update the existing link to point to the new URL.
5358 # will separate the newline character(s) into their own text runs. The
5359 … # link will be applied separately to the runs before and after the newline.
5360 # * Removing a link will update the text style of the range to match the
5361 … # style of the preceding text (or the default text styles if the preceding
5362 … # text is another link) unless different styles are being set in the same
5364 "headingId": "A String", # The ID of a heading in this document.
5366 "bookmarkId": "A String", # The ID of a bookmark in this document.
5368 "underline": True or False, # Whether or not the text is underlined.
5369 "bold": True or False, # Whether or not the text is rendered as bold.
5371 …"suggestedInsertionIds": [ # The suggested insertion IDs. A ColumnBreak may have multiple insertio…
5376 …"suggestedTextStyleChanges": { # The suggested text style changes to this ColumnBreak, keyed by su…
5379 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
5380 # the changes made in this suggestion. This can be used along with the
5385 # text style's parent depends on where the text style is defined:
5387 # * The TextStyle of text in a Paragraph
5388 # inherits from the paragraph's corresponding named style type.
5389 # * The TextStyle on a named style
5390 # inherits from the normal text named style.
5391 # * The TextStyle of the normal text named style inherits
5392 # from the default text style in the Docs editor.
5393 # * The TextStyle on a Paragraph element
5394 … # that is contained in a table may inherit its text style from the table
5397 … # If the text style does not inherit from a parent, unsetting fields will
5398 # revert the style to a value matching the defaults in the Docs editor.
5399 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
5400 # or transparent, depending on the `color` field.
5403 "rgbColor": { # An RGB color. # The RGB color value.
5404 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
5405 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
5406 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
5410 "italic": True or False, # Whether or not the text is italicized.
5411 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
5414 … # rendered in a smaller font size, computed based on the `font_size` field.
5415 # The `font_size` itself is not affected by changes in this field.
5416 … "strikethrough": True or False, # Whether or not the text is struck through.
5417 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
5420 # `bold`, the `weighted_font_family` is applied first, then `bold`.
5427 "fontFamily": "A String", # The font family of the text.
5429 # The font family can be any font from the Font menu in Docs or from
5430 # [Google Fonts] (https://fonts.google.com/). If the font name is
5431 # unrecognized, the text is rendered in `Arial`.
5432 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
5433 … # `100` between `100` and `900`, inclusive. This range corresponds to the
5434 # numerical values described in the CSS 2.1 Specification,
5438 # The default value is `400` ("normal").
5440 … # The font weight makes up just one component of the rendered font weight.
5441 … # The rendered weight is determined by a combination of the `weight` and the
5444 … # * If the text is bold and the weight is less than `400`, the rendered
5446 … # * If the text is bold and the weight is greater than or equal to `400` but
5447 # is less than `700`, the rendered weight is `700`.
5448 … # * If the weight is greater than or equal to `700`, the rendered weight is
5449 # equal to the weight.
5450 … # * If the text is not bold, the rendered weight is equal to the weight.
5452 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
5453 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
5454 "magnitude": 3.14, # The magnitude.
5455 "unit": "A String", # The units for magnitude.
5457 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
5458 # or transparent, depending on the `color` field.
5461 "rgbColor": { # An RGB color. # The RGB color value.
5462 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
5463 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
5464 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
5468 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
5471 … # Changing the link in an update request causes some other changes to the
5472 # text style of the range:
5474 … # * When setting a link, the text foreground color will be updated to the
5475 … # default link color and the text will be underlined. If these fields are
5476 … # modified in the same request, those values will be used instead of the
5479 # also update the existing link to point to the new URL.
5482 … # will separate the newline character(s) into their own text runs. The
5483 … # link will be applied separately to the runs before and after the newline.
5484 … # * Removing a link will update the text style of the range to match the
5485 … # style of the preceding text (or the default text styles if the preceding
5486 … # text is another link) unless different styles are being set in the same
5488 "headingId": "A String", # The ID of a heading in this document.
5490 "bookmarkId": "A String", # The ID of a bookmark in this document.
5492 "underline": True or False, # Whether or not the text is underlined.
5493 "bold": True or False, # Whether or not the text is rendered as bold.
5495 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
5511 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
5516 … "startIndex": 42, # The zero-based start index of this paragraph element, in UTF-16 code units.
5518 # page break. A page break makes the subsequent text start at the top of the
5520 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Page…
5522 # Similar to text content, like text runs and footnote references, the text
5523 # style of a page break can affect content layout as well as the styling of
5527 # text style's parent depends on where the text style is defined:
5529 # * The TextStyle of text in a Paragraph
5530 # inherits from the paragraph's corresponding named style type.
5531 # * The TextStyle on a named style
5532 # inherits from the normal text named style.
5533 # * The TextStyle of the normal text named style inherits
5534 # from the default text style in the Docs editor.
5535 # * The TextStyle on a Paragraph element
5536 # that is contained in a table may inherit its text style from the table
5539 # If the text style does not inherit from a parent, unsetting fields will
5540 # revert the style to a value matching the defaults in the Docs editor.
5541 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
5542 # or transparent, depending on the `color` field.
5545 "rgbColor": { # An RGB color. # The RGB color value.
5546 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
5547 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
5548 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
5552 "italic": True or False, # Whether or not the text is italicized.
5553 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
5556 … # rendered in a smaller font size, computed based on the `font_size` field.
5557 # The `font_size` itself is not affected by changes in this field.
5558 "strikethrough": True or False, # Whether or not the text is struck through.
5559 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
5562 # `bold`, the `weighted_font_family` is applied first, then `bold`.
5569 "fontFamily": "A String", # The font family of the text.
5571 # The font family can be any font from the Font menu in Docs or from
5572 # [Google Fonts] (https://fonts.google.com/). If the font name is
5573 # unrecognized, the text is rendered in `Arial`.
5574 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
5575 … # `100` between `100` and `900`, inclusive. This range corresponds to the
5576 # numerical values described in the CSS 2.1 Specification,
5580 # The default value is `400` ("normal").
5582 … # The font weight makes up just one component of the rendered font weight.
5583 … # The rendered weight is determined by a combination of the `weight` and the
5586 # * If the text is bold and the weight is less than `400`, the rendered
5588 … # * If the text is bold and the weight is greater than or equal to `400` but
5589 # is less than `700`, the rendered weight is `700`.
5590 … # * If the weight is greater than or equal to `700`, the rendered weight is
5591 # equal to the weight.
5592 # * If the text is not bold, the rendered weight is equal to the weight.
5594 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
5595 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
5596 "magnitude": 3.14, # The magnitude.
5597 "unit": "A String", # The units for magnitude.
5599 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
5600 # or transparent, depending on the `color` field.
5603 "rgbColor": { # An RGB color. # The RGB color value.
5604 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
5605 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
5606 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
5610 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
5613 # Changing the link in an update request causes some other changes to the
5614 # text style of the range:
5616 # * When setting a link, the text foreground color will be updated to the
5617 … # default link color and the text will be underlined. If these fields are
5618 # modified in the same request, those values will be used instead of the
5621 # also update the existing link to point to the new URL.
5624 # will separate the newline character(s) into their own text runs. The
5625 … # link will be applied separately to the runs before and after the newline.
5626 # * Removing a link will update the text style of the range to match the
5627 … # style of the preceding text (or the default text styles if the preceding
5628 … # text is another link) unless different styles are being set in the same
5630 "headingId": "A String", # The ID of a heading in this document.
5632 "bookmarkId": "A String", # The ID of a bookmark in this document.
5634 "underline": True or False, # Whether or not the text is underlined.
5635 "bold": True or False, # Whether or not the text is rendered as bold.
5637 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
5641 …"suggestedTextStyleChanges": { # The suggested text style changes to this PageBreak, keyed by sugg…
5643 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
5644 # the changes made in this suggestion. This can be used along with the
5649 # text style's parent depends on where the text style is defined:
5651 # * The TextStyle of text in a Paragraph
5652 # inherits from the paragraph's corresponding named style type.
5653 # * The TextStyle on a named style
5654 # inherits from the normal text named style.
5655 # * The TextStyle of the normal text named style inherits
5656 # from the default text style in the Docs editor.
5657 # * The TextStyle on a Paragraph element
5658 … # that is contained in a table may inherit its text style from the table
5661 … # If the text style does not inherit from a parent, unsetting fields will
5662 # revert the style to a value matching the defaults in the Docs editor.
5663 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
5664 # or transparent, depending on the `color` field.
5667 "rgbColor": { # An RGB color. # The RGB color value.
5668 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
5669 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
5670 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
5674 "italic": True or False, # Whether or not the text is italicized.
5675 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
5678 … # rendered in a smaller font size, computed based on the `font_size` field.
5679 # The `font_size` itself is not affected by changes in this field.
5680 … "strikethrough": True or False, # Whether or not the text is struck through.
5681 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
5684 # `bold`, the `weighted_font_family` is applied first, then `bold`.
5691 "fontFamily": "A String", # The font family of the text.
5693 # The font family can be any font from the Font menu in Docs or from
5694 # [Google Fonts] (https://fonts.google.com/). If the font name is
5695 # unrecognized, the text is rendered in `Arial`.
5696 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
5697 … # `100` between `100` and `900`, inclusive. This range corresponds to the
5698 # numerical values described in the CSS 2.1 Specification,
5702 # The default value is `400` ("normal").
5704 … # The font weight makes up just one component of the rendered font weight.
5705 … # The rendered weight is determined by a combination of the `weight` and the
5708 … # * If the text is bold and the weight is less than `400`, the rendered
5710 … # * If the text is bold and the weight is greater than or equal to `400` but
5711 # is less than `700`, the rendered weight is `700`.
5712 … # * If the weight is greater than or equal to `700`, the rendered weight is
5713 # equal to the weight.
5714 … # * If the text is not bold, the rendered weight is equal to the weight.
5716 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
5717 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
5718 "magnitude": 3.14, # The magnitude.
5719 "unit": "A String", # The units for magnitude.
5721 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
5722 # or transparent, depending on the `color` field.
5725 "rgbColor": { # An RGB color. # The RGB color value.
5726 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
5727 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
5728 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
5732 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
5735 … # Changing the link in an update request causes some other changes to the
5736 # text style of the range:
5738 … # * When setting a link, the text foreground color will be updated to the
5739 … # default link color and the text will be underlined. If these fields are
5740 … # modified in the same request, those values will be used instead of the
5743 # also update the existing link to point to the new URL.
5746 … # will separate the newline character(s) into their own text runs. The
5747 … # link will be applied separately to the runs before and after the newline.
5748 … # * Removing a link will update the text style of the range to match the
5749 … # style of the preceding text (or the default text styles if the preceding
5750 … # text is another link) unless different styles are being set in the same
5752 "headingId": "A String", # The ID of a heading in this document.
5754 "bookmarkId": "A String", # The ID of a bookmark in this document.
5756 "underline": True or False, # Whether or not the text is underlined.
5757 "bold": True or False, # Whether or not the text is rendered as bold.
5759 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
5775 "suggestedInsertionIds": [ # The suggested insertion IDs. A PageBreak
5783 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Hori…
5785 # Similar to text content, like text runs and footnote references, the text
5786 … # style of a horizontal rule can affect content layout as well as the styling
5790 # text style's parent depends on where the text style is defined:
5792 # * The TextStyle of text in a Paragraph
5793 # inherits from the paragraph's corresponding named style type.
5794 # * The TextStyle on a named style
5795 # inherits from the normal text named style.
5796 # * The TextStyle of the normal text named style inherits
5797 # from the default text style in the Docs editor.
5798 # * The TextStyle on a Paragraph element
5799 # that is contained in a table may inherit its text style from the table
5802 # If the text style does not inherit from a parent, unsetting fields will
5803 # revert the style to a value matching the defaults in the Docs editor.
5804 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
5805 # or transparent, depending on the `color` field.
5808 "rgbColor": { # An RGB color. # The RGB color value.
5809 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
5810 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
5811 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
5815 "italic": True or False, # Whether or not the text is italicized.
5816 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
5819 … # rendered in a smaller font size, computed based on the `font_size` field.
5820 # The `font_size` itself is not affected by changes in this field.
5821 "strikethrough": True or False, # Whether or not the text is struck through.
5822 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
5825 # `bold`, the `weighted_font_family` is applied first, then `bold`.
5832 "fontFamily": "A String", # The font family of the text.
5834 # The font family can be any font from the Font menu in Docs or from
5835 # [Google Fonts] (https://fonts.google.com/). If the font name is
5836 # unrecognized, the text is rendered in `Arial`.
5837 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
5838 … # `100` between `100` and `900`, inclusive. This range corresponds to the
5839 # numerical values described in the CSS 2.1 Specification,
5843 # The default value is `400` ("normal").
5845 … # The font weight makes up just one component of the rendered font weight.
5846 … # The rendered weight is determined by a combination of the `weight` and the
5849 # * If the text is bold and the weight is less than `400`, the rendered
5851 … # * If the text is bold and the weight is greater than or equal to `400` but
5852 # is less than `700`, the rendered weight is `700`.
5853 … # * If the weight is greater than or equal to `700`, the rendered weight is
5854 # equal to the weight.
5855 # * If the text is not bold, the rendered weight is equal to the weight.
5857 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
5858 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
5859 "magnitude": 3.14, # The magnitude.
5860 "unit": "A String", # The units for magnitude.
5862 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
5863 # or transparent, depending on the `color` field.
5866 "rgbColor": { # An RGB color. # The RGB color value.
5867 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
5868 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
5869 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
5873 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
5876 # Changing the link in an update request causes some other changes to the
5877 # text style of the range:
5879 # * When setting a link, the text foreground color will be updated to the
5880 … # default link color and the text will be underlined. If these fields are
5881 # modified in the same request, those values will be used instead of the
5884 # also update the existing link to point to the new URL.
5887 # will separate the newline character(s) into their own text runs. The
5888 … # link will be applied separately to the runs before and after the newline.
5889 # * Removing a link will update the text style of the range to match the
5890 … # style of the preceding text (or the default text styles if the preceding
5891 … # text is another link) unless different styles are being set in the same
5893 "headingId": "A String", # The ID of a heading in this document.
5895 "bookmarkId": "A String", # The ID of a bookmark in this document.
5897 "underline": True or False, # Whether or not the text is underlined.
5898 "bold": True or False, # Whether or not the text is rendered as bold.
5900 …"suggestedInsertionIds": [ # The suggested insertion IDs. A HorizontalRule may have multiple inser…
5905 … "suggestedTextStyleChanges": { # The suggested text style changes to this HorizontalRule, keyed by
5908 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
5909 # the changes made in this suggestion. This can be used along with the
5914 # text style's parent depends on where the text style is defined:
5916 # * The TextStyle of text in a Paragraph
5917 # inherits from the paragraph's corresponding named style type.
5918 # * The TextStyle on a named style
5919 # inherits from the normal text named style.
5920 # * The TextStyle of the normal text named style inherits
5921 # from the default text style in the Docs editor.
5922 # * The TextStyle on a Paragraph element
5923 … # that is contained in a table may inherit its text style from the table
5926 … # If the text style does not inherit from a parent, unsetting fields will
5927 # revert the style to a value matching the defaults in the Docs editor.
5928 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
5929 # or transparent, depending on the `color` field.
5932 "rgbColor": { # An RGB color. # The RGB color value.
5933 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
5934 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
5935 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
5939 "italic": True or False, # Whether or not the text is italicized.
5940 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
5943 … # rendered in a smaller font size, computed based on the `font_size` field.
5944 # The `font_size` itself is not affected by changes in this field.
5945 … "strikethrough": True or False, # Whether or not the text is struck through.
5946 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
5949 # `bold`, the `weighted_font_family` is applied first, then `bold`.
5956 "fontFamily": "A String", # The font family of the text.
5958 # The font family can be any font from the Font menu in Docs or from
5959 # [Google Fonts] (https://fonts.google.com/). If the font name is
5960 # unrecognized, the text is rendered in `Arial`.
5961 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
5962 … # `100` between `100` and `900`, inclusive. This range corresponds to the
5963 # numerical values described in the CSS 2.1 Specification,
5967 # The default value is `400` ("normal").
5969 … # The font weight makes up just one component of the rendered font weight.
5970 … # The rendered weight is determined by a combination of the `weight` and the
5973 … # * If the text is bold and the weight is less than `400`, the rendered
5975 … # * If the text is bold and the weight is greater than or equal to `400` but
5976 # is less than `700`, the rendered weight is `700`.
5977 … # * If the weight is greater than or equal to `700`, the rendered weight is
5978 # equal to the weight.
5979 … # * If the text is not bold, the rendered weight is equal to the weight.
5981 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
5982 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
5983 "magnitude": 3.14, # The magnitude.
5984 "unit": "A String", # The units for magnitude.
5986 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
5987 # or transparent, depending on the `color` field.
5990 "rgbColor": { # An RGB color. # The RGB color value.
5991 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
5992 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
5993 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
5997 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
6000 … # Changing the link in an update request causes some other changes to the
6001 # text style of the range:
6003 … # * When setting a link, the text foreground color will be updated to the
6004 … # default link color and the text will be underlined. If these fields are
6005 … # modified in the same request, those values will be used instead of the
6008 # also update the existing link to point to the new URL.
6011 … # will separate the newline character(s) into their own text runs. The
6012 … # link will be applied separately to the runs before and after the newline.
6013 … # * Removing a link will update the text style of the range to match the
6014 … # style of the preceding text (or the default text styles if the preceding
6015 … # text is another link) unless different styles are being set in the same
6017 "headingId": "A String", # The ID of a heading in this document.
6019 "bookmarkId": "A String", # The ID of a bookmark in this document.
6021 "underline": True or False, # Whether or not the text is underlined.
6022 "bold": True or False, # Whether or not the text is rendered as bold.
6024 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
6040 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
6046 # run of text that all has the same styling.
6047 "content": "A String", # The text of this run.
6049 # Any non-text elements in the run are replaced with the Unicode character
6051 … "textStyle": { # Represents the styling that can be applied to text. # The text style of this run.
6054 # text style's parent depends on where the text style is defined:
6056 # * The TextStyle of text in a Paragraph
6057 # inherits from the paragraph's corresponding named style type.
6058 # * The TextStyle on a named style
6059 # inherits from the normal text named style.
6060 # * The TextStyle of the normal text named style inherits
6061 # from the default text style in the Docs editor.
6062 # * The TextStyle on a Paragraph element
6063 # that is contained in a table may inherit its text style from the table
6066 # If the text style does not inherit from a parent, unsetting fields will
6067 # revert the style to a value matching the defaults in the Docs editor.
6068 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
6069 # or transparent, depending on the `color` field.
6072 "rgbColor": { # An RGB color. # The RGB color value.
6073 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
6074 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
6075 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
6079 "italic": True or False, # Whether or not the text is italicized.
6080 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
6083 … # rendered in a smaller font size, computed based on the `font_size` field.
6084 # The `font_size` itself is not affected by changes in this field.
6085 "strikethrough": True or False, # Whether or not the text is struck through.
6086 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
6089 # `bold`, the `weighted_font_family` is applied first, then `bold`.
6096 "fontFamily": "A String", # The font family of the text.
6098 # The font family can be any font from the Font menu in Docs or from
6099 # [Google Fonts] (https://fonts.google.com/). If the font name is
6100 # unrecognized, the text is rendered in `Arial`.
6101 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
6102 … # `100` between `100` and `900`, inclusive. This range corresponds to the
6103 # numerical values described in the CSS 2.1 Specification,
6107 # The default value is `400` ("normal").
6109 … # The font weight makes up just one component of the rendered font weight.
6110 … # The rendered weight is determined by a combination of the `weight` and the
6113 # * If the text is bold and the weight is less than `400`, the rendered
6115 … # * If the text is bold and the weight is greater than or equal to `400` but
6116 # is less than `700`, the rendered weight is `700`.
6117 … # * If the weight is greater than or equal to `700`, the rendered weight is
6118 # equal to the weight.
6119 # * If the text is not bold, the rendered weight is equal to the weight.
6121 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
6122 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
6123 "magnitude": 3.14, # The magnitude.
6124 "unit": "A String", # The units for magnitude.
6126 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
6127 # or transparent, depending on the `color` field.
6130 "rgbColor": { # An RGB color. # The RGB color value.
6131 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
6132 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
6133 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
6137 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
6140 # Changing the link in an update request causes some other changes to the
6141 # text style of the range:
6143 # * When setting a link, the text foreground color will be updated to the
6144 … # default link color and the text will be underlined. If these fields are
6145 # modified in the same request, those values will be used instead of the
6148 # also update the existing link to point to the new URL.
6151 # will separate the newline character(s) into their own text runs. The
6152 … # link will be applied separately to the runs before and after the newline.
6153 # * Removing a link will update the text style of the range to match the
6154 … # style of the preceding text (or the default text styles if the preceding
6155 … # text is another link) unless different styles are being set in the same
6157 "headingId": "A String", # The ID of a heading in this document.
6159 "bookmarkId": "A String", # The ID of a bookmark in this document.
6161 "underline": True or False, # Whether or not the text is underlined.
6162 "bold": True or False, # Whether or not the text is rendered as bold.
6164 "suggestedInsertionIds": [ # The suggested insertion IDs. A TextRun may
6169 …"suggestedTextStyleChanges": { # The suggested text style changes to this run, keyed by suggestion…
6171 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
6172 # the changes made in this suggestion. This can be used along with the
6177 # text style's parent depends on where the text style is defined:
6179 # * The TextStyle of text in a Paragraph
6180 # inherits from the paragraph's corresponding named style type.
6181 # * The TextStyle on a named style
6182 # inherits from the normal text named style.
6183 # * The TextStyle of the normal text named style inherits
6184 # from the default text style in the Docs editor.
6185 # * The TextStyle on a Paragraph element
6186 … # that is contained in a table may inherit its text style from the table
6189 … # If the text style does not inherit from a parent, unsetting fields will
6190 # revert the style to a value matching the defaults in the Docs editor.
6191 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
6192 # or transparent, depending on the `color` field.
6195 "rgbColor": { # An RGB color. # The RGB color value.
6196 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
6197 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
6198 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
6202 "italic": True or False, # Whether or not the text is italicized.
6203 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
6206 … # rendered in a smaller font size, computed based on the `font_size` field.
6207 # The `font_size` itself is not affected by changes in this field.
6208 … "strikethrough": True or False, # Whether or not the text is struck through.
6209 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
6212 # `bold`, the `weighted_font_family` is applied first, then `bold`.
6219 "fontFamily": "A String", # The font family of the text.
6221 # The font family can be any font from the Font menu in Docs or from
6222 # [Google Fonts] (https://fonts.google.com/). If the font name is
6223 # unrecognized, the text is rendered in `Arial`.
6224 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
6225 … # `100` between `100` and `900`, inclusive. This range corresponds to the
6226 # numerical values described in the CSS 2.1 Specification,
6230 # The default value is `400` ("normal").
6232 … # The font weight makes up just one component of the rendered font weight.
6233 … # The rendered weight is determined by a combination of the `weight` and the
6236 … # * If the text is bold and the weight is less than `400`, the rendered
6238 … # * If the text is bold and the weight is greater than or equal to `400` but
6239 # is less than `700`, the rendered weight is `700`.
6240 … # * If the weight is greater than or equal to `700`, the rendered weight is
6241 # equal to the weight.
6242 … # * If the text is not bold, the rendered weight is equal to the weight.
6244 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
6245 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
6246 "magnitude": 3.14, # The magnitude.
6247 "unit": "A String", # The units for magnitude.
6249 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
6250 # or transparent, depending on the `color` field.
6253 "rgbColor": { # An RGB color. # The RGB color value.
6254 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
6255 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
6256 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
6260 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
6263 … # Changing the link in an update request causes some other changes to the
6264 # text style of the range:
6266 … # * When setting a link, the text foreground color will be updated to the
6267 … # default link color and the text will be underlined. If these fields are
6268 … # modified in the same request, those values will be used instead of the
6271 # also update the existing link to point to the new URL.
6274 … # will separate the newline character(s) into their own text runs. The
6275 … # link will be applied separately to the runs before and after the newline.
6276 … # * Removing a link will update the text style of the range to match the
6277 … # style of the preceding text (or the default text styles if the preceding
6278 … # text is another link) unless different styles are being set in the same
6280 "headingId": "A String", # The ID of a heading in this document.
6282 "bookmarkId": "A String", # The ID of a bookmark in this document.
6284 "underline": True or False, # Whether or not the text is underlined.
6285 "bold": True or False, # Whether or not the text is rendered as bold.
6287 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
6303 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
6309 # spot in the text that is dynamically replaced with content that can change
6311 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Auto…
6314 # text style's parent depends on where the text style is defined:
6316 # * The TextStyle of text in a Paragraph
6317 # inherits from the paragraph's corresponding named style type.
6318 # * The TextStyle on a named style
6319 # inherits from the normal text named style.
6320 # * The TextStyle of the normal text named style inherits
6321 # from the default text style in the Docs editor.
6322 # * The TextStyle on a Paragraph element
6323 # that is contained in a table may inherit its text style from the table
6326 # If the text style does not inherit from a parent, unsetting fields will
6327 # revert the style to a value matching the defaults in the Docs editor.
6328 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
6329 # or transparent, depending on the `color` field.
6332 "rgbColor": { # An RGB color. # The RGB color value.
6333 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
6334 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
6335 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
6339 "italic": True or False, # Whether or not the text is italicized.
6340 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
6343 … # rendered in a smaller font size, computed based on the `font_size` field.
6344 # The `font_size` itself is not affected by changes in this field.
6345 "strikethrough": True or False, # Whether or not the text is struck through.
6346 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
6349 # `bold`, the `weighted_font_family` is applied first, then `bold`.
6356 "fontFamily": "A String", # The font family of the text.
6358 # The font family can be any font from the Font menu in Docs or from
6359 # [Google Fonts] (https://fonts.google.com/). If the font name is
6360 # unrecognized, the text is rendered in `Arial`.
6361 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
6362 … # `100` between `100` and `900`, inclusive. This range corresponds to the
6363 # numerical values described in the CSS 2.1 Specification,
6367 # The default value is `400` ("normal").
6369 … # The font weight makes up just one component of the rendered font weight.
6370 … # The rendered weight is determined by a combination of the `weight` and the
6373 # * If the text is bold and the weight is less than `400`, the rendered
6375 … # * If the text is bold and the weight is greater than or equal to `400` but
6376 # is less than `700`, the rendered weight is `700`.
6377 … # * If the weight is greater than or equal to `700`, the rendered weight is
6378 # equal to the weight.
6379 # * If the text is not bold, the rendered weight is equal to the weight.
6381 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
6382 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
6383 "magnitude": 3.14, # The magnitude.
6384 "unit": "A String", # The units for magnitude.
6386 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
6387 # or transparent, depending on the `color` field.
6390 "rgbColor": { # An RGB color. # The RGB color value.
6391 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
6392 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
6393 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
6397 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
6400 # Changing the link in an update request causes some other changes to the
6401 # text style of the range:
6403 # * When setting a link, the text foreground color will be updated to the
6404 … # default link color and the text will be underlined. If these fields are
6405 # modified in the same request, those values will be used instead of the
6408 # also update the existing link to point to the new URL.
6411 # will separate the newline character(s) into their own text runs. The
6412 … # link will be applied separately to the runs before and after the newline.
6413 # * Removing a link will update the text style of the range to match the
6414 … # style of the preceding text (or the default text styles if the preceding
6415 … # text is another link) unless different styles are being set in the same
6417 "headingId": "A String", # The ID of a heading in this document.
6419 "bookmarkId": "A String", # The ID of a bookmark in this document.
6421 "underline": True or False, # Whether or not the text is underlined.
6422 "bold": True or False, # Whether or not the text is rendered as bold.
6424 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
6428 …"suggestedTextStyleChanges": { # The suggested text style changes to this AutoText, keyed by sugge…
6430 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
6431 # the changes made in this suggestion. This can be used along with the
6436 # text style's parent depends on where the text style is defined:
6438 # * The TextStyle of text in a Paragraph
6439 # inherits from the paragraph's corresponding named style type.
6440 # * The TextStyle on a named style
6441 # inherits from the normal text named style.
6442 # * The TextStyle of the normal text named style inherits
6443 # from the default text style in the Docs editor.
6444 # * The TextStyle on a Paragraph element
6445 … # that is contained in a table may inherit its text style from the table
6448 … # If the text style does not inherit from a parent, unsetting fields will
6449 # revert the style to a value matching the defaults in the Docs editor.
6450 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
6451 # or transparent, depending on the `color` field.
6454 "rgbColor": { # An RGB color. # The RGB color value.
6455 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
6456 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
6457 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
6461 "italic": True or False, # Whether or not the text is italicized.
6462 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
6465 … # rendered in a smaller font size, computed based on the `font_size` field.
6466 # The `font_size` itself is not affected by changes in this field.
6467 … "strikethrough": True or False, # Whether or not the text is struck through.
6468 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
6471 # `bold`, the `weighted_font_family` is applied first, then `bold`.
6478 "fontFamily": "A String", # The font family of the text.
6480 # The font family can be any font from the Font menu in Docs or from
6481 # [Google Fonts] (https://fonts.google.com/). If the font name is
6482 # unrecognized, the text is rendered in `Arial`.
6483 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
6484 … # `100` between `100` and `900`, inclusive. This range corresponds to the
6485 # numerical values described in the CSS 2.1 Specification,
6489 # The default value is `400` ("normal").
6491 … # The font weight makes up just one component of the rendered font weight.
6492 … # The rendered weight is determined by a combination of the `weight` and the
6495 … # * If the text is bold and the weight is less than `400`, the rendered
6497 … # * If the text is bold and the weight is greater than or equal to `400` but
6498 # is less than `700`, the rendered weight is `700`.
6499 … # * If the weight is greater than or equal to `700`, the rendered weight is
6500 # equal to the weight.
6501 … # * If the text is not bold, the rendered weight is equal to the weight.
6503 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
6504 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
6505 "magnitude": 3.14, # The magnitude.
6506 "unit": "A String", # The units for magnitude.
6508 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
6509 # or transparent, depending on the `color` field.
6512 "rgbColor": { # An RGB color. # The RGB color value.
6513 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
6514 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
6515 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
6519 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
6522 … # Changing the link in an update request causes some other changes to the
6523 # text style of the range:
6525 … # * When setting a link, the text foreground color will be updated to the
6526 … # default link color and the text will be underlined. If these fields are
6527 … # modified in the same request, those values will be used instead of the
6530 # also update the existing link to point to the new URL.
6533 … # will separate the newline character(s) into their own text runs. The
6534 … # link will be applied separately to the runs before and after the newline.
6535 … # * Removing a link will update the text style of the range to match the
6536 … # style of the preceding text (or the default text styles if the preceding
6537 … # text is another link) unless different styles are being set in the same
6539 "headingId": "A String", # The ID of a heading in this document.
6541 "bookmarkId": "A String", # The ID of a bookmark in this document.
6543 "underline": True or False, # Whether or not the text is underlined.
6544 "bold": True or False, # Whether or not the text is rendered as bold.
6546 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
6562 "type": "A String", # The type of this auto text.
6563 "suggestedInsertionIds": [ # The suggested insertion IDs. An AutoText
6571 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Inli…
6573 # Similar to text content, like text runs and footnote references, the text
6574 # style of an inline object element can affect content layout as well as the
6578 # text style's parent depends on where the text style is defined:
6580 # * The TextStyle of text in a Paragraph
6581 # inherits from the paragraph's corresponding named style type.
6582 # * The TextStyle on a named style
6583 # inherits from the normal text named style.
6584 # * The TextStyle of the normal text named style inherits
6585 # from the default text style in the Docs editor.
6586 # * The TextStyle on a Paragraph element
6587 # that is contained in a table may inherit its text style from the table
6590 # If the text style does not inherit from a parent, unsetting fields will
6591 # revert the style to a value matching the defaults in the Docs editor.
6592 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
6593 # or transparent, depending on the `color` field.
6596 "rgbColor": { # An RGB color. # The RGB color value.
6597 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
6598 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
6599 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
6603 "italic": True or False, # Whether or not the text is italicized.
6604 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
6607 … # rendered in a smaller font size, computed based on the `font_size` field.
6608 # The `font_size` itself is not affected by changes in this field.
6609 "strikethrough": True or False, # Whether or not the text is struck through.
6610 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
6613 # `bold`, the `weighted_font_family` is applied first, then `bold`.
6620 "fontFamily": "A String", # The font family of the text.
6622 # The font family can be any font from the Font menu in Docs or from
6623 # [Google Fonts] (https://fonts.google.com/). If the font name is
6624 # unrecognized, the text is rendered in `Arial`.
6625 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
6626 … # `100` between `100` and `900`, inclusive. This range corresponds to the
6627 # numerical values described in the CSS 2.1 Specification,
6631 # The default value is `400` ("normal").
6633 … # The font weight makes up just one component of the rendered font weight.
6634 … # The rendered weight is determined by a combination of the `weight` and the
6637 # * If the text is bold and the weight is less than `400`, the rendered
6639 … # * If the text is bold and the weight is greater than or equal to `400` but
6640 # is less than `700`, the rendered weight is `700`.
6641 … # * If the weight is greater than or equal to `700`, the rendered weight is
6642 # equal to the weight.
6643 # * If the text is not bold, the rendered weight is equal to the weight.
6645 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
6646 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
6647 "magnitude": 3.14, # The magnitude.
6648 "unit": "A String", # The units for magnitude.
6650 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
6651 # or transparent, depending on the `color` field.
6654 "rgbColor": { # An RGB color. # The RGB color value.
6655 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
6656 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
6657 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
6661 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
6664 # Changing the link in an update request causes some other changes to the
6665 # text style of the range:
6667 # * When setting a link, the text foreground color will be updated to the
6668 … # default link color and the text will be underlined. If these fields are
6669 # modified in the same request, those values will be used instead of the
6672 # also update the existing link to point to the new URL.
6675 # will separate the newline character(s) into their own text runs. The
6676 … # link will be applied separately to the runs before and after the newline.
6677 # * Removing a link will update the text style of the range to match the
6678 … # style of the preceding text (or the default text styles if the preceding
6679 … # text is another link) unless different styles are being set in the same
6681 "headingId": "A String", # The ID of a heading in this document.
6683 "bookmarkId": "A String", # The ID of a bookmark in this document.
6685 "underline": True or False, # Whether or not the text is underlined.
6686 "bold": True or False, # Whether or not the text is rendered as bold.
6688 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
6692 …"suggestedTextStyleChanges": { # The suggested text style changes to this InlineObject, keyed by s…
6695 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
6696 # the changes made in this suggestion. This can be used along with the
6701 # text style's parent depends on where the text style is defined:
6703 # * The TextStyle of text in a Paragraph
6704 # inherits from the paragraph's corresponding named style type.
6705 # * The TextStyle on a named style
6706 # inherits from the normal text named style.
6707 # * The TextStyle of the normal text named style inherits
6708 # from the default text style in the Docs editor.
6709 # * The TextStyle on a Paragraph element
6710 … # that is contained in a table may inherit its text style from the table
6713 … # If the text style does not inherit from a parent, unsetting fields will
6714 # revert the style to a value matching the defaults in the Docs editor.
6715 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
6716 # or transparent, depending on the `color` field.
6719 "rgbColor": { # An RGB color. # The RGB color value.
6720 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
6721 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
6722 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
6726 "italic": True or False, # Whether or not the text is italicized.
6727 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
6730 … # rendered in a smaller font size, computed based on the `font_size` field.
6731 # The `font_size` itself is not affected by changes in this field.
6732 … "strikethrough": True or False, # Whether or not the text is struck through.
6733 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
6736 # `bold`, the `weighted_font_family` is applied first, then `bold`.
6743 "fontFamily": "A String", # The font family of the text.
6745 # The font family can be any font from the Font menu in Docs or from
6746 # [Google Fonts] (https://fonts.google.com/). If the font name is
6747 # unrecognized, the text is rendered in `Arial`.
6748 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
6749 … # `100` between `100` and `900`, inclusive. This range corresponds to the
6750 # numerical values described in the CSS 2.1 Specification,
6754 # The default value is `400` ("normal").
6756 … # The font weight makes up just one component of the rendered font weight.
6757 … # The rendered weight is determined by a combination of the `weight` and the
6760 … # * If the text is bold and the weight is less than `400`, the rendered
6762 … # * If the text is bold and the weight is greater than or equal to `400` but
6763 # is less than `700`, the rendered weight is `700`.
6764 … # * If the weight is greater than or equal to `700`, the rendered weight is
6765 # equal to the weight.
6766 … # * If the text is not bold, the rendered weight is equal to the weight.
6768 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
6769 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
6770 "magnitude": 3.14, # The magnitude.
6771 "unit": "A String", # The units for magnitude.
6773 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
6774 # or transparent, depending on the `color` field.
6777 "rgbColor": { # An RGB color. # The RGB color value.
6778 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
6779 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
6780 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
6784 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
6787 … # Changing the link in an update request causes some other changes to the
6788 # text style of the range:
6790 … # * When setting a link, the text foreground color will be updated to the
6791 … # default link color and the text will be underlined. If these fields are
6792 … # modified in the same request, those values will be used instead of the
6795 # also update the existing link to point to the new URL.
6798 … # will separate the newline character(s) into their own text runs. The
6799 … # link will be applied separately to the runs before and after the newline.
6800 … # * Removing a link will update the text style of the range to match the
6801 … # style of the preceding text (or the default text styles if the preceding
6802 … # text is another link) unless different styles are being set in the same
6804 "headingId": "A String", # The ID of a heading in this document.
6806 "bookmarkId": "A String", # The ID of a bookmark in this document.
6808 "underline": True or False, # Whether or not the text is underlined.
6809 "bold": True or False, # Whether or not the text is rendered as bold.
6811 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
6827 "inlineObjectId": "A String", # The ID of the InlineObject this
6829 …"suggestedInsertionIds": [ # The suggested insertion IDs. An InlineObjectElement may have multiple…
6836 # footnote reference. A footnote reference is the inline content rendered with
6837 # a number and is used to identify the footnote.
6838 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Foot…
6841 # text style's parent depends on where the text style is defined:
6843 # * The TextStyle of text in a Paragraph
6844 # inherits from the paragraph's corresponding named style type.
6845 # * The TextStyle on a named style
6846 # inherits from the normal text named style.
6847 # * The TextStyle of the normal text named style inherits
6848 # from the default text style in the Docs editor.
6849 # * The TextStyle on a Paragraph element
6850 # that is contained in a table may inherit its text style from the table
6853 # If the text style does not inherit from a parent, unsetting fields will
6854 # revert the style to a value matching the defaults in the Docs editor.
6855 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
6856 # or transparent, depending on the `color` field.
6859 "rgbColor": { # An RGB color. # The RGB color value.
6860 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
6861 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
6862 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
6866 "italic": True or False, # Whether or not the text is italicized.
6867 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
6870 … # rendered in a smaller font size, computed based on the `font_size` field.
6871 # The `font_size` itself is not affected by changes in this field.
6872 "strikethrough": True or False, # Whether or not the text is struck through.
6873 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
6876 # `bold`, the `weighted_font_family` is applied first, then `bold`.
6883 "fontFamily": "A String", # The font family of the text.
6885 # The font family can be any font from the Font menu in Docs or from
6886 # [Google Fonts] (https://fonts.google.com/). If the font name is
6887 # unrecognized, the text is rendered in `Arial`.
6888 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
6889 … # `100` between `100` and `900`, inclusive. This range corresponds to the
6890 # numerical values described in the CSS 2.1 Specification,
6894 # The default value is `400` ("normal").
6896 … # The font weight makes up just one component of the rendered font weight.
6897 … # The rendered weight is determined by a combination of the `weight` and the
6900 # * If the text is bold and the weight is less than `400`, the rendered
6902 … # * If the text is bold and the weight is greater than or equal to `400` but
6903 # is less than `700`, the rendered weight is `700`.
6904 … # * If the weight is greater than or equal to `700`, the rendered weight is
6905 # equal to the weight.
6906 # * If the text is not bold, the rendered weight is equal to the weight.
6908 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
6909 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
6910 "magnitude": 3.14, # The magnitude.
6911 "unit": "A String", # The units for magnitude.
6913 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
6914 # or transparent, depending on the `color` field.
6917 "rgbColor": { # An RGB color. # The RGB color value.
6918 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
6919 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
6920 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
6924 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
6927 # Changing the link in an update request causes some other changes to the
6928 # text style of the range:
6930 # * When setting a link, the text foreground color will be updated to the
6931 … # default link color and the text will be underlined. If these fields are
6932 # modified in the same request, those values will be used instead of the
6935 # also update the existing link to point to the new URL.
6938 # will separate the newline character(s) into their own text runs. The
6939 … # link will be applied separately to the runs before and after the newline.
6940 # * Removing a link will update the text style of the range to match the
6941 … # style of the preceding text (or the default text styles if the preceding
6942 … # text is another link) unless different styles are being set in the same
6944 "headingId": "A String", # The ID of a heading in this document.
6946 "bookmarkId": "A String", # The ID of a bookmark in this document.
6948 "underline": True or False, # Whether or not the text is underlined.
6949 "bold": True or False, # Whether or not the text is rendered as bold.
6951 "footnoteNumber": "A String", # The rendered number of this footnote.
6952 …"suggestedInsertionIds": [ # The suggested insertion IDs. A FootnoteReference may have multiple in…
6957 "footnoteId": "A String", # The ID of the footnote that
6958 # contains the content of this footnote reference.
6959 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
6963 …"suggestedTextStyleChanges": { # The suggested text style changes to this FootnoteReference, keyed…
6966 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
6967 # the changes made in this suggestion. This can be used along with the
6972 # text style's parent depends on where the text style is defined:
6974 # * The TextStyle of text in a Paragraph
6975 # inherits from the paragraph's corresponding named style type.
6976 # * The TextStyle on a named style
6977 # inherits from the normal text named style.
6978 # * The TextStyle of the normal text named style inherits
6979 # from the default text style in the Docs editor.
6980 # * The TextStyle on a Paragraph element
6981 … # that is contained in a table may inherit its text style from the table
6984 … # If the text style does not inherit from a parent, unsetting fields will
6985 # revert the style to a value matching the defaults in the Docs editor.
6986 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
6987 # or transparent, depending on the `color` field.
6990 "rgbColor": { # An RGB color. # The RGB color value.
6991 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
6992 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
6993 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
6997 "italic": True or False, # Whether or not the text is italicized.
6998 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
7001 … # rendered in a smaller font size, computed based on the `font_size` field.
7002 # The `font_size` itself is not affected by changes in this field.
7003 … "strikethrough": True or False, # Whether or not the text is struck through.
7004 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
7007 # `bold`, the `weighted_font_family` is applied first, then `bold`.
7014 "fontFamily": "A String", # The font family of the text.
7016 # The font family can be any font from the Font menu in Docs or from
7017 # [Google Fonts] (https://fonts.google.com/). If the font name is
7018 # unrecognized, the text is rendered in `Arial`.
7019 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
7020 … # `100` between `100` and `900`, inclusive. This range corresponds to the
7021 # numerical values described in the CSS 2.1 Specification,
7025 # The default value is `400` ("normal").
7027 … # The font weight makes up just one component of the rendered font weight.
7028 … # The rendered weight is determined by a combination of the `weight` and the
7031 … # * If the text is bold and the weight is less than `400`, the rendered
7033 … # * If the text is bold and the weight is greater than or equal to `400` but
7034 # is less than `700`, the rendered weight is `700`.
7035 … # * If the weight is greater than or equal to `700`, the rendered weight is
7036 # equal to the weight.
7037 … # * If the text is not bold, the rendered weight is equal to the weight.
7039 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
7040 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
7041 "magnitude": 3.14, # The magnitude.
7042 "unit": "A String", # The units for magnitude.
7044 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
7045 # or transparent, depending on the `color` field.
7048 "rgbColor": { # An RGB color. # The RGB color value.
7049 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
7050 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
7051 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
7055 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
7058 … # Changing the link in an update request causes some other changes to the
7059 # text style of the range:
7061 … # * When setting a link, the text foreground color will be updated to the
7062 … # default link color and the text will be underlined. If these fields are
7063 … # modified in the same request, those values will be used instead of the
7066 # also update the existing link to point to the new URL.
7069 … # will separate the newline character(s) into their own text runs. The
7070 … # link will be applied separately to the runs before and after the newline.
7071 … # * Removing a link will update the text style of the range to match the
7072 … # style of the preceding text (or the default text styles if the preceding
7073 … # text is another link) unless different styles are being set in the same
7075 "headingId": "A String", # The ID of a heading in this document.
7077 "bookmarkId": "A String", # The ID of a bookmark in this document.
7079 "underline": True or False, # Whether or not the text is underlined.
7080 "bold": True or False, # Whether or not the text is rendered as bold.
7082 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
7101 …"suggestedPositionedObjectIds": { # The IDs of the positioned objects that are suggested to be att…
7104 "objectIds": [ # The object IDs.
7109 …"bullet": { # Describes the bullet of a paragraph. # The bullet for this paragraph. If not present…
7111 "nestingLevel": 42, # The nesting level of this paragraph in the list.
7112 "listId": "A String", # The ID of the list this paragraph belongs to.
7113 …"textStyle": { # Represents the styling that can be applied to text. # The paragraph specific text…
7116 # text style's parent depends on where the text style is defined:
7118 # * The TextStyle of text in a Paragraph
7119 # inherits from the paragraph's corresponding named style type.
7120 # * The TextStyle on a named style
7121 # inherits from the normal text named style.
7122 # * The TextStyle of the normal text named style inherits
7123 # from the default text style in the Docs editor.
7124 # * The TextStyle on a Paragraph element
7125 # that is contained in a table may inherit its text style from the table
7128 # If the text style does not inherit from a parent, unsetting fields will
7129 # revert the style to a value matching the defaults in the Docs editor.
7130 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
7131 # or transparent, depending on the `color` field.
7134 "rgbColor": { # An RGB color. # The RGB color value.
7135 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
7136 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
7137 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
7141 "italic": True or False, # Whether or not the text is italicized.
7142 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
7145 # rendered in a smaller font size, computed based on the `font_size` field.
7146 # The `font_size` itself is not affected by changes in this field.
7147 "strikethrough": True or False, # Whether or not the text is struck through.
7148 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
7151 # `bold`, the `weighted_font_family` is applied first, then `bold`.
7158 "fontFamily": "A String", # The font family of the text.
7160 # The font family can be any font from the Font menu in Docs or from
7161 # [Google Fonts] (https://fonts.google.com/). If the font name is
7162 # unrecognized, the text is rendered in `Arial`.
7163 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
7164 # `100` between `100` and `900`, inclusive. This range corresponds to the
7165 # numerical values described in the CSS 2.1 Specification,
7169 # The default value is `400` ("normal").
7171 # The font weight makes up just one component of the rendered font weight.
7172 # The rendered weight is determined by a combination of the `weight` and the
7175 # * If the text is bold and the weight is less than `400`, the rendered
7177 # * If the text is bold and the weight is greater than or equal to `400` but
7178 # is less than `700`, the rendered weight is `700`.
7179 # * If the weight is greater than or equal to `700`, the rendered weight is
7180 # equal to the weight.
7181 # * If the text is not bold, the rendered weight is equal to the weight.
7183 "smallCaps": True or False, # Whether or not the text is in small capital letters.
7184 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
7185 "magnitude": 3.14, # The magnitude.
7186 "unit": "A String", # The units for magnitude.
7188 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
7189 # or transparent, depending on the `color` field.
7192 "rgbColor": { # An RGB color. # The RGB color value.
7193 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
7194 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
7195 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
7199 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
7202 # Changing the link in an update request causes some other changes to the
7203 # text style of the range:
7205 # * When setting a link, the text foreground color will be updated to the
7206 # default link color and the text will be underlined. If these fields are
7207 # modified in the same request, those values will be used instead of the
7210 # also update the existing link to point to the new URL.
7213 # will separate the newline character(s) into their own text runs. The
7214 # link will be applied separately to the runs before and after the newline.
7215 # * Removing a link will update the text style of the range to match the
7216 # style of the preceding text (or the default text styles if the preceding
7217 # text is another link) unless different styles are being set in the same
7219 "headingId": "A String", # The ID of a heading in this document.
7221 "bookmarkId": "A String", # The ID of a bookmark in this document.
7223 "underline": True or False, # Whether or not the text is underlined.
7224 "bold": True or False, # Whether or not the text is rendered as bold.
7227 "suggestedBulletChanges": { # The suggested changes to this paragraph's bullet.
7229 … "bullet": { # Describes the bullet of a paragraph. # A Bullet that only includes the changes made
7230 # in this suggestion. This can be used along with the
7233 "nestingLevel": 42, # The nesting level of this paragraph in the list.
7234 "listId": "A String", # The ID of the list this paragraph belongs to.
7235 …"textStyle": { # Represents the styling that can be applied to text. # The paragraph specific text…
7238 # text style's parent depends on where the text style is defined:
7240 # * The TextStyle of text in a Paragraph
7241 # inherits from the paragraph's corresponding named style type.
7242 # * The TextStyle on a named style
7243 # inherits from the normal text named style.
7244 # * The TextStyle of the normal text named style inherits
7245 # from the default text style in the Docs editor.
7246 # * The TextStyle on a Paragraph element
7247 # that is contained in a table may inherit its text style from the table
7250 # If the text style does not inherit from a parent, unsetting fields will
7251 # revert the style to a value matching the defaults in the Docs editor.
7252 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
7253 # or transparent, depending on the `color` field.
7256 "rgbColor": { # An RGB color. # The RGB color value.
7257 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
7258 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
7259 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
7263 "italic": True or False, # Whether or not the text is italicized.
7264 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
7267 … # rendered in a smaller font size, computed based on the `font_size` field.
7268 # The `font_size` itself is not affected by changes in this field.
7269 "strikethrough": True or False, # Whether or not the text is struck through.
7270 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
7273 # `bold`, the `weighted_font_family` is applied first, then `bold`.
7280 "fontFamily": "A String", # The font family of the text.
7282 # The font family can be any font from the Font menu in Docs or from
7283 # [Google Fonts] (https://fonts.google.com/). If the font name is
7284 # unrecognized, the text is rendered in `Arial`.
7285 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
7286 … # `100` between `100` and `900`, inclusive. This range corresponds to the
7287 # numerical values described in the CSS 2.1 Specification,
7291 # The default value is `400` ("normal").
7293 … # The font weight makes up just one component of the rendered font weight.
7294 … # The rendered weight is determined by a combination of the `weight` and the
7297 # * If the text is bold and the weight is less than `400`, the rendered
7299 … # * If the text is bold and the weight is greater than or equal to `400` but
7300 # is less than `700`, the rendered weight is `700`.
7301 … # * If the weight is greater than or equal to `700`, the rendered weight is
7302 # equal to the weight.
7303 # * If the text is not bold, the rendered weight is equal to the weight.
7305 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
7306 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
7307 "magnitude": 3.14, # The magnitude.
7308 "unit": "A String", # The units for magnitude.
7310 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
7311 # or transparent, depending on the `color` field.
7314 "rgbColor": { # An RGB color. # The RGB color value.
7315 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
7316 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
7317 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
7321 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
7324 # Changing the link in an update request causes some other changes to the
7325 # text style of the range:
7327 # * When setting a link, the text foreground color will be updated to the
7328 … # default link color and the text will be underlined. If these fields are
7329 # modified in the same request, those values will be used instead of the
7332 # also update the existing link to point to the new URL.
7335 # will separate the newline character(s) into their own text runs. The
7336 … # link will be applied separately to the runs before and after the newline.
7337 # * Removing a link will update the text style of the range to match the
7338 … # style of the preceding text (or the default text styles if the preceding
7339 … # text is another link) unless different styles are being set in the same
7341 "headingId": "A String", # The ID of a heading in this document.
7343 "bookmarkId": "A String", # The ID of a bookmark in this document.
7345 "underline": True or False, # Whether or not the text is underlined.
7346 "bold": True or False, # Whether or not the text is rendered as bold.
7349 …te": { # A mask that indicates which of the fields on the base # A mask that indicates which of th…
7353 … "nestingLevelSuggested": True or False, # Indicates if there was a suggested change to the
7355 …hat indicates which of the fields on the base TextStyle have been changed in this suggestion. # A …
7370 … "listIdSuggested": True or False, # Indicates if there was a suggested change to the
7375 … "positionedObjectIds": [ # The IDs of the positioned objects tethered to this paragraph.
7378 …"suggestedParagraphStyleChanges": { # The suggested paragraph style changes to this paragraph, key…
7382 …tes which of the fields on the base ParagraphStyle have been changed in this suggestion. # A mask …
7403 … mask that indicates which of the fields on the base Shading have been changed in this # A mask th…
7406 …ckgroundColorSuggested": True or False, # Indicates if there was a suggested change to the Shading.
7410 # the changes made in this suggestion. This can be used along with the
7415 # A paragraph style's parent depends on where the paragraph style is defined:
7417 # * The ParagraphStyle on a Paragraph
7418 # inherits from the paragraph's corresponding named style type.
7419 # * The ParagraphStyle on a named style
7420 # inherits from the normal text named style.
7421 # * The ParagraphStyle of the normal text named style inherits
7422 # from the default paragraph style in the Docs editor.
7423 # * The ParagraphStyle on a Paragraph
7425 # the table style.
7427 # If the paragraph style does not inherit from a parent, unsetting fields will
7428 # revert the style to a value matching the defaults in the Docs editor.
7429 "spacingMode": "A String", # The spacing mode for the paragraph.
7430 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
7433 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
7434 # inherited from the parent.
7435 "magnitude": 3.14, # The magnitude.
7436 "unit": "A String", # The units for magnitude.
7438 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
7439 # page or column as the next paragraph if possible. If unset, the value is
7440 # inherited from the parent.
7441 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
7442 # is represented as 100.0. If unset, the value is inherited from the parent.
7443 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
7444 # is inherited from the parent.
7445 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
7446 # inherited from the parent.
7448 … # The bottom border is rendered when the paragraph below has different border
7452 # changes to a paragraph border the new border must be specified in
7454 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
7457 "rgbColor": { # An RGB color. # The RGB color value.
7458 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
7459 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
7460 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
7464 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
7465 "magnitude": 3.14, # The magnitude.
7466 "unit": "A String", # The units for magnitude.
7468 "dashStyle": "A String", # The dash style of the border.
7469 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
7470 "magnitude": 3.14, # The magnitude.
7471 "unit": "A String", # The units for magnitude.
7474 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
7475 # the start of the text, based on the current paragraph direction. If unset,
7476 # the value is inherited from the parent.
7477 "magnitude": 3.14, # The magnitude.
7478 "unit": "A String", # The units for magnitude.
7480 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
7481 # If unset, the value is inherited from the parent.
7483 # The between border is rendered when the adjacent paragraph has the same
7487 # changes to a paragraph border the new border must be specified in
7489 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
7492 "rgbColor": { # An RGB color. # The RGB color value.
7493 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
7494 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
7495 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
7499 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
7500 "magnitude": 3.14, # The magnitude.
7501 "unit": "A String", # The units for magnitude.
7503 "dashStyle": "A String", # The dash style of the border.
7504 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
7505 "magnitude": 3.14, # The magnitude.
7506 "unit": "A String", # The units for magnitude.
7509 "namedStyleType": "A String", # The named style type of the paragraph.
7511 # Since updating the named style type affects other properties within
7512 … # ParagraphStyle, the named style type is applied before the other properties
7514 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
7515 # from the parent.
7518 # changes to a paragraph border the new border must be specified in
7520 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
7523 "rgbColor": { # An RGB color. # The RGB color value.
7524 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
7525 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
7526 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
7530 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
7531 "magnitude": 3.14, # The magnitude.
7532 "unit": "A String", # The units for magnitude.
7534 "dashStyle": "A String", # The dash style of the border.
7535 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
7536 "magnitude": 3.14, # The magnitude.
7537 "unit": "A String", # The units for magnitude.
7540 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
7541 # the end of the text, based on the current paragraph direction. If unset,
7542 # the value is inherited from the parent.
7543 "magnitude": 3.14, # The magnitude.
7544 "unit": "A String", # The units for magnitude.
7546 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
7547 # from the parent.
7550 # changes to a paragraph border the new border must be specified in
7552 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
7555 "rgbColor": { # An RGB color. # The RGB color value.
7556 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
7557 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
7558 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
7562 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
7563 "magnitude": 3.14, # The magnitude.
7564 "unit": "A String", # The units for magnitude.
7566 "dashStyle": "A String", # The dash style of the border.
7567 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
7568 "magnitude": 3.14, # The magnitude.
7569 "unit": "A String", # The units for magnitude.
7572 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
7573 # inherited from the parent.
7574 "magnitude": 3.14, # The magnitude.
7575 "unit": "A String", # The units for magnitude.
7577 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
7579 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
7581 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
7584 "rgbColor": { # An RGB color. # The RGB color value.
7585 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
7586 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
7587 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
7592 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
7593 # from the parent.
7595 # The top border is rendered when the paragraph above has different border
7599 # changes to a paragraph border the new border must be specified in
7601 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
7604 "rgbColor": { # An RGB color. # The RGB color value.
7605 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
7606 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
7607 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
7611 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
7612 "magnitude": 3.14, # The magnitude.
7613 "unit": "A String", # The units for magnitude.
7615 "dashStyle": "A String", # The dash style of the border.
7616 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
7617 "magnitude": 3.14, # The magnitude.
7618 "unit": "A String", # The units for magnitude.
7621 … "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
7624 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
7625 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
7626 "magnitude": 3.14, # The magnitude.
7627 "unit": "A String", # The units for magnitude.
7631 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
7632 # the value is inherited from the parent.
7633 "magnitude": 3.14, # The magnitude.
7634 "unit": "A String", # The units for magnitude.
7636 "alignment": "A String", # The text alignment for this paragraph.
7637 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
7638 # column if possible. If unset, the value is inherited from the parent.
7642 … "paragraphStyle": { # Styles that apply to a whole paragraph. # The style of this paragraph.
7645 # A paragraph style's parent depends on where the paragraph style is defined:
7647 # * The ParagraphStyle on a Paragraph
7648 # inherits from the paragraph's corresponding named style type.
7649 # * The ParagraphStyle on a named style
7650 # inherits from the normal text named style.
7651 # * The ParagraphStyle of the normal text named style inherits
7652 # from the default paragraph style in the Docs editor.
7653 # * The ParagraphStyle on a Paragraph
7655 # the table style.
7657 # If the paragraph style does not inherit from a parent, unsetting fields will
7658 # revert the style to a value matching the defaults in the Docs editor.
7659 "spacingMode": "A String", # The spacing mode for the paragraph.
7660 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
7663 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
7664 # inherited from the parent.
7665 "magnitude": 3.14, # The magnitude.
7666 "unit": "A String", # The units for magnitude.
7668 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
7669 # page or column as the next paragraph if possible. If unset, the value is
7670 # inherited from the parent.
7671 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
7672 # is represented as 100.0. If unset, the value is inherited from the parent.
7673 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
7674 # is inherited from the parent.
7675 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
7676 # inherited from the parent.
7678 # The bottom border is rendered when the paragraph below has different border
7682 # changes to a paragraph border the new border must be specified in
7684 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
7687 "rgbColor": { # An RGB color. # The RGB color value.
7688 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
7689 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
7690 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
7694 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
7695 "magnitude": 3.14, # The magnitude.
7696 "unit": "A String", # The units for magnitude.
7698 "dashStyle": "A String", # The dash style of the border.
7699 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
7700 "magnitude": 3.14, # The magnitude.
7701 "unit": "A String", # The units for magnitude.
7704 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
7705 # the start of the text, based on the current paragraph direction. If unset,
7706 # the value is inherited from the parent.
7707 "magnitude": 3.14, # The magnitude.
7708 "unit": "A String", # The units for magnitude.
7710 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
7711 # If unset, the value is inherited from the parent.
7713 # The between border is rendered when the adjacent paragraph has the same
7717 # changes to a paragraph border the new border must be specified in
7719 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
7722 "rgbColor": { # An RGB color. # The RGB color value.
7723 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
7724 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
7725 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
7729 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
7730 "magnitude": 3.14, # The magnitude.
7731 "unit": "A String", # The units for magnitude.
7733 "dashStyle": "A String", # The dash style of the border.
7734 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
7735 "magnitude": 3.14, # The magnitude.
7736 "unit": "A String", # The units for magnitude.
7739 "namedStyleType": "A String", # The named style type of the paragraph.
7741 # Since updating the named style type affects other properties within
7742 # ParagraphStyle, the named style type is applied before the other properties
7744 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
7745 # from the parent.
7748 # changes to a paragraph border the new border must be specified in
7750 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
7753 "rgbColor": { # An RGB color. # The RGB color value.
7754 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
7755 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
7756 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
7760 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
7761 "magnitude": 3.14, # The magnitude.
7762 "unit": "A String", # The units for magnitude.
7764 "dashStyle": "A String", # The dash style of the border.
7765 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
7766 "magnitude": 3.14, # The magnitude.
7767 "unit": "A String", # The units for magnitude.
7770 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
7771 # the end of the text, based on the current paragraph direction. If unset,
7772 # the value is inherited from the parent.
7773 "magnitude": 3.14, # The magnitude.
7774 "unit": "A String", # The units for magnitude.
7776 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
7777 # from the parent.
7780 # changes to a paragraph border the new border must be specified in
7782 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
7785 "rgbColor": { # An RGB color. # The RGB color value.
7786 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
7787 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
7788 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
7792 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
7793 "magnitude": 3.14, # The magnitude.
7794 "unit": "A String", # The units for magnitude.
7796 "dashStyle": "A String", # The dash style of the border.
7797 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
7798 "magnitude": 3.14, # The magnitude.
7799 "unit": "A String", # The units for magnitude.
7802 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
7803 # inherited from the parent.
7804 "magnitude": 3.14, # The magnitude.
7805 "unit": "A String", # The units for magnitude.
7807 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
7809 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
7811 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
7814 "rgbColor": { # An RGB color. # The RGB color value.
7815 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
7816 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
7817 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
7822 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
7823 # from the parent.
7825 # The top border is rendered when the paragraph above has different border
7829 # changes to a paragraph border the new border must be specified in
7831 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
7834 "rgbColor": { # An RGB color. # The RGB color value.
7835 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
7836 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
7837 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
7841 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
7842 "magnitude": 3.14, # The magnitude.
7843 "unit": "A String", # The units for magnitude.
7845 "dashStyle": "A String", # The dash style of the border.
7846 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
7847 "magnitude": 3.14, # The magnitude.
7848 "unit": "A String", # The units for magnitude.
7851 … "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
7854 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
7855 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
7856 "magnitude": 3.14, # The magnitude.
7857 "unit": "A String", # The units for magnitude.
7861 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
7862 # the value is inherited from the parent.
7863 "magnitude": 3.14, # The magnitude.
7864 "unit": "A String", # The units for magnitude.
7866 "alignment": "A String", # The text alignment for this paragraph.
7867 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
7868 # column if possible. If unset, the value is inherited from the parent.
7873 "rows": 42, # Number of rows in the table.
7874 "tableStyle": { # Styles that apply to a table. # The style of the table.
7875 "tableColumnProperties": [ # The properties of each column.
7878 # HTML. So the properties for a row can be found on the row's
7880 { # The properties of a column in a table.
7881 …th": { # A magnitude in a single direction in the specified units. # The width of the column. Set …
7883 "magnitude": 3.14, # The magnitude.
7884 "unit": "A String", # The units for magnitude.
7886 "widthType": "A String", # The width type of the column.
7890 "suggestedInsertionIds": [ # The suggested insertion IDs. A Table may have
7895 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
7899 "tableRows": [ # The contents and style of each row.
7900 { # The contents and style of a row in a Table.
7901 … "endIndex": 42, # The zero-based end index of this row, exclusive, in UTF-16 code units.
7902 "tableCells": [ # The contents and style of each cell in this row.
7905 # different number of cells than other rows in the same table.
7906 { # The contents and style of a cell in a Table.
7907 … "endIndex": 42, # The zero-based end index of this cell, exclusive, in UTF-16 code units.
7908 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
7912 "suggestedInsertionIds": [ # The suggested insertion IDs. A TableCell
7917 "content": [ # The content of the cell.
7920 "tableCellStyle": { # The style of a TableCell. # The style of the cell.
7923 # A table cell style can inherit from the table's style.
7924 …ngBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of t…
7925 "magnitude": 3.14, # The magnitude.
7926 "unit": "A String", # The units for magnitude.
7928 … "borderBottom": { # A border around a table cell. # The bottom border of the cell.
7929 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
7932 "rgbColor": { # An RGB color. # The RGB color value.
7933 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
7934 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
7935 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
7939 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
7940 "magnitude": 3.14, # The magnitude.
7941 "unit": "A String", # The units for magnitude.
7943 "dashStyle": "A String", # The dash style of the border.
7945 …ddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of th…
7946 "magnitude": 3.14, # The magnitude.
7947 "unit": "A String", # The units for magnitude.
7949 …paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of th…
7950 "magnitude": 3.14, # The magnitude.
7951 "unit": "A String", # The units for magnitude.
7953 … "borderLeft": { # A border around a table cell. # The left border of the cell.
7954 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
7957 "rgbColor": { # An RGB color. # The RGB color value.
7958 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
7959 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
7960 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
7964 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
7965 "magnitude": 3.14, # The magnitude.
7966 "unit": "A String", # The units for magnitude.
7968 "dashStyle": "A String", # The dash style of the border.
7970 "columnSpan": 42, # The column span of the cell. This property is read-only.
7971 …# A color that can either be fully opaque or fully transparent. # The background color of the cell.
7974 "rgbColor": { # An RGB color. # The RGB color value.
7975 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
7976 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
7977 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
7981 … "borderRight": { # A border around a table cell. # The right border of the cell.
7982 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
7985 "rgbColor": { # An RGB color. # The RGB color value.
7986 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
7987 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
7988 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
7992 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
7993 "magnitude": 3.14, # The magnitude.
7994 "unit": "A String", # The units for magnitude.
7996 "dashStyle": "A String", # The dash style of the border.
7998 "rowSpan": 42, # The row span of the cell. This property is read-only.
7999 …"contentAlignment": "A String", # The alignment of the content in the table cell. The default alig…
8000 … # matches the alignment for newly created table cells in the Docs editor.
8001 …dingRight": { # A magnitude in a single direction in the specified units. # The right padding of t…
8002 "magnitude": 3.14, # The magnitude.
8003 "unit": "A String", # The units for magnitude.
8005 "borderTop": { # A border around a table cell. # The top border of the cell.
8006 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
8009 "rgbColor": { # An RGB color. # The RGB color value.
8010 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
8011 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
8012 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
8016 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
8017 "magnitude": 3.14, # The magnitude.
8018 "unit": "A String", # The units for magnitude.
8020 "dashStyle": "A String", # The dash style of the border.
8023 … "startIndex": 42, # The zero-based start index of this cell, in UTF-16 code units.
8024 …"suggestedTableCellStyleChanges": { # The suggested changes to the table cell style, keyed by sugg…
8026 … "tableCellStyle": { # The style of a TableCell. # A TableCellStyle that only includes
8027 # the changes made in this suggestion. This can be used along with the
8032 # A table cell style can inherit from the table's style.
8033 …ngBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of t…
8034 "magnitude": 3.14, # The magnitude.
8035 "unit": "A String", # The units for magnitude.
8037 … "borderBottom": { # A border around a table cell. # The bottom border of the cell.
8038 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
8041 "rgbColor": { # An RGB color. # The RGB color value.
8042 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
8043 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
8044 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
8048 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
8049 "magnitude": 3.14, # The magnitude.
8050 "unit": "A String", # The units for magnitude.
8052 "dashStyle": "A String", # The dash style of the border.
8054 …ddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of th…
8055 "magnitude": 3.14, # The magnitude.
8056 "unit": "A String", # The units for magnitude.
8058 …paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of th…
8059 "magnitude": 3.14, # The magnitude.
8060 "unit": "A String", # The units for magnitude.
8062 … "borderLeft": { # A border around a table cell. # The left border of the cell.
8063 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
8066 "rgbColor": { # An RGB color. # The RGB color value.
8067 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
8068 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
8069 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
8073 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
8074 "magnitude": 3.14, # The magnitude.
8075 "unit": "A String", # The units for magnitude.
8077 "dashStyle": "A String", # The dash style of the border.
8079 … "columnSpan": 42, # The column span of the cell. This property is read-only.
8080 …# A color that can either be fully opaque or fully transparent. # The background color of the cell.
8083 "rgbColor": { # An RGB color. # The RGB color value.
8084 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
8085 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
8086 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
8090 … "borderRight": { # A border around a table cell. # The right border of the cell.
8091 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
8094 "rgbColor": { # An RGB color. # The RGB color value.
8095 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
8096 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
8097 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
8101 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
8102 "magnitude": 3.14, # The magnitude.
8103 "unit": "A String", # The units for magnitude.
8105 "dashStyle": "A String", # The dash style of the border.
8107 "rowSpan": 42, # The row span of the cell. This property is read-only.
8108 …"contentAlignment": "A String", # The alignment of the content in the table cell. The default alig…
8109 … # matches the alignment for newly created table cells in the Docs editor.
8110 …dingRight": { # A magnitude in a single direction in the specified units. # The right padding of t…
8111 "magnitude": 3.14, # The magnitude.
8112 "unit": "A String", # The units for magnitude.
8114 … "borderTop": { # A border around a table cell. # The top border of the cell.
8115 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
8118 "rgbColor": { # An RGB color. # The RGB color value.
8119 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
8120 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
8121 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
8125 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
8126 "magnitude": 3.14, # The magnitude.
8127 "unit": "A String", # The units for magnitude.
8129 "dashStyle": "A String", # The dash style of the border.
8132 …tes which of the fields on the base TableCellStyle have been changed in this suggestion. # A mask …
8151 … "tableRowStyle": { # Styles that apply to a table row. # The style of the table row.
8152 …agnitude in a single direction in the specified units. # The minimum height of the row. The row wi…
8153 # at a height equal to or greater than this value in order to show all the
8154 # content in the row's cells.
8155 "magnitude": 3.14, # The magnitude.
8156 "unit": "A String", # The units for magnitude.
8159 "suggestedInsertionIds": [ # The suggested insertion IDs. A TableRow
8164 "startIndex": 42, # The zero-based start index of this row, in UTF-16 code units.
8165 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
8169 …"suggestedTableRowStyleChanges": { # The suggested style changes to this row, keyed by suggestion …
8173 # the changes made in this suggestion. This can be used along with the
8176 …agnitude in a single direction in the specified units. # The minimum height of the row. The row wi…
8177 … # at a height equal to or greater than this value in order to show all the
8178 # content in the row's cells.
8179 "magnitude": 3.14, # The magnitude.
8180 "unit": "A String", # The units for magnitude.
8183 …ates which of the fields on the base TableRowStyle have been changed in this suggestion. # A mask …
8191 "columns": 42, # Number of columns in the table.
8200 …"namedStyles": { # The named styles. Paragraphs in the document can inherit their # The named styl…
8203 "styles": [ # The named styles.
8205 # There is an entry for each of the possible named style types.
8206 { # A named style. Paragraphs in the document can inherit their
8209 # when they have the same named style type.
8210 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this name…
8213 # text style's parent depends on where the text style is defined:
8215 # * The TextStyle of text in a Paragraph
8216 # inherits from the paragraph's corresponding named style type.
8217 # * The TextStyle on a named style
8218 # inherits from the normal text named style.
8219 # * The TextStyle of the normal text named style inherits
8220 # from the default text style in the Docs editor.
8221 # * The TextStyle on a Paragraph element
8222 # that is contained in a table may inherit its text style from the table
8225 # If the text style does not inherit from a parent, unsetting fields will
8226 # revert the style to a value matching the defaults in the Docs editor.
8227 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
8228 # or transparent, depending on the `color` field.
8231 "rgbColor": { # An RGB color. # The RGB color value.
8232 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
8233 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
8234 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
8238 "italic": True or False, # Whether or not the text is italicized.
8239 "baselineOffset": "A String", # The text's vertical offset from its normal position.
8242 # rendered in a smaller font size, computed based on the `font_size` field.
8243 # The `font_size` itself is not affected by changes in this field.
8244 "strikethrough": True or False, # Whether or not the text is struck through.
8245 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
8248 # `bold`, the `weighted_font_family` is applied first, then `bold`.
8255 "fontFamily": "A String", # The font family of the text.
8257 # The font family can be any font from the Font menu in Docs or from
8258 # [Google Fonts] (https://fonts.google.com/). If the font name is
8259 # unrecognized, the text is rendered in `Arial`.
8260 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
8261 # `100` between `100` and `900`, inclusive. This range corresponds to the
8262 # numerical values described in the CSS 2.1 Specification,
8266 # The default value is `400` ("normal").
8268 # The font weight makes up just one component of the rendered font weight.
8269 # The rendered weight is determined by a combination of the `weight` and the
8272 # * If the text is bold and the weight is less than `400`, the rendered
8274 # * If the text is bold and the weight is greater than or equal to `400` but
8275 # is less than `700`, the rendered weight is `700`.
8276 # * If the weight is greater than or equal to `700`, the rendered weight is
8277 # equal to the weight.
8278 # * If the text is not bold, the rendered weight is equal to the weight.
8280 "smallCaps": True or False, # Whether or not the text is in small capital letters.
8281 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
8282 "magnitude": 3.14, # The magnitude.
8283 "unit": "A String", # The units for magnitude.
8285 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
8286 # or transparent, depending on the `color` field.
8289 "rgbColor": { # An RGB color. # The RGB color value.
8290 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
8291 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
8292 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
8296 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
8299 # Changing the link in an update request causes some other changes to the
8300 # text style of the range:
8302 # * When setting a link, the text foreground color will be updated to the
8303 # default link color and the text will be underlined. If these fields are
8304 # modified in the same request, those values will be used instead of the
8307 # also update the existing link to point to the new URL.
8310 # will separate the newline character(s) into their own text runs. The
8311 # link will be applied separately to the runs before and after the newline.
8312 # * Removing a link will update the text style of the range to match the
8313 # style of the preceding text (or the default text styles if the preceding
8314 # text is another link) unless different styles are being set in the same
8316 "headingId": "A String", # The ID of a heading in this document.
8318 "bookmarkId": "A String", # The ID of a bookmark in this document.
8320 "underline": True or False, # Whether or not the text is underlined.
8321 "bold": True or False, # Whether or not the text is rendered as bold.
8323 "namedStyleType": "A String", # The type of this named style.
8324 …"paragraphStyle": { # Styles that apply to a whole paragraph. # The paragraph style of this named …
8327 # A paragraph style's parent depends on where the paragraph style is defined:
8329 # * The ParagraphStyle on a Paragraph
8330 # inherits from the paragraph's corresponding named style type.
8331 # * The ParagraphStyle on a named style
8332 # inherits from the normal text named style.
8333 # * The ParagraphStyle of the normal text named style inherits
8334 # from the default paragraph style in the Docs editor.
8335 # * The ParagraphStyle on a Paragraph
8337 # the table style.
8339 # If the paragraph style does not inherit from a parent, unsetting fields will
8340 # revert the style to a value matching the defaults in the Docs editor.
8341 "spacingMode": "A String", # The spacing mode for the paragraph.
8342 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
8345 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
8346 # inherited from the parent.
8347 "magnitude": 3.14, # The magnitude.
8348 "unit": "A String", # The units for magnitude.
8350 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
8351 # page or column as the next paragraph if possible. If unset, the value is
8352 # inherited from the parent.
8353 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
8354 # is represented as 100.0. If unset, the value is inherited from the parent.
8355 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
8356 # is inherited from the parent.
8357 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
8358 # inherited from the parent.
8360 # The bottom border is rendered when the paragraph below has different border
8364 # changes to a paragraph border the new border must be specified in
8366 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
8369 "rgbColor": { # An RGB color. # The RGB color value.
8370 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
8371 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
8372 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
8376 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
8377 "magnitude": 3.14, # The magnitude.
8378 "unit": "A String", # The units for magnitude.
8380 "dashStyle": "A String", # The dash style of the border.
8381 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
8382 "magnitude": 3.14, # The magnitude.
8383 "unit": "A String", # The units for magnitude.
8386 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
8387 # the start of the text, based on the current paragraph direction. If unset,
8388 # the value is inherited from the parent.
8389 "magnitude": 3.14, # The magnitude.
8390 "unit": "A String", # The units for magnitude.
8392 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
8393 # If unset, the value is inherited from the parent.
8395 # The between border is rendered when the adjacent paragraph has the same
8399 # changes to a paragraph border the new border must be specified in
8401 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
8404 "rgbColor": { # An RGB color. # The RGB color value.
8405 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
8406 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
8407 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
8411 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
8412 "magnitude": 3.14, # The magnitude.
8413 "unit": "A String", # The units for magnitude.
8415 "dashStyle": "A String", # The dash style of the border.
8416 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
8417 "magnitude": 3.14, # The magnitude.
8418 "unit": "A String", # The units for magnitude.
8421 "namedStyleType": "A String", # The named style type of the paragraph.
8423 # Since updating the named style type affects other properties within
8424 # ParagraphStyle, the named style type is applied before the other properties
8426 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
8427 # from the parent.
8430 # changes to a paragraph border the new border must be specified in
8432 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
8435 "rgbColor": { # An RGB color. # The RGB color value.
8436 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
8437 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
8438 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
8442 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
8443 "magnitude": 3.14, # The magnitude.
8444 "unit": "A String", # The units for magnitude.
8446 "dashStyle": "A String", # The dash style of the border.
8447 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
8448 "magnitude": 3.14, # The magnitude.
8449 "unit": "A String", # The units for magnitude.
8452 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
8453 # the end of the text, based on the current paragraph direction. If unset,
8454 # the value is inherited from the parent.
8455 "magnitude": 3.14, # The magnitude.
8456 "unit": "A String", # The units for magnitude.
8458 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
8459 # from the parent.
8462 # changes to a paragraph border the new border must be specified in
8464 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
8467 "rgbColor": { # An RGB color. # The RGB color value.
8468 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
8469 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
8470 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
8474 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
8475 "magnitude": 3.14, # The magnitude.
8476 "unit": "A String", # The units for magnitude.
8478 "dashStyle": "A String", # The dash style of the border.
8479 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
8480 "magnitude": 3.14, # The magnitude.
8481 "unit": "A String", # The units for magnitude.
8484 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
8485 # inherited from the parent.
8486 "magnitude": 3.14, # The magnitude.
8487 "unit": "A String", # The units for magnitude.
8489 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
8491 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
8493 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
8496 "rgbColor": { # An RGB color. # The RGB color value.
8497 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
8498 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
8499 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
8504 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
8505 # from the parent.
8507 # The top border is rendered when the paragraph above has different border
8511 # changes to a paragraph border the new border must be specified in
8513 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
8516 "rgbColor": { # An RGB color. # The RGB color value.
8517 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
8518 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
8519 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
8523 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
8524 "magnitude": 3.14, # The magnitude.
8525 "unit": "A String", # The units for magnitude.
8527 "dashStyle": "A String", # The dash style of the border.
8528 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
8529 "magnitude": 3.14, # The magnitude.
8530 "unit": "A String", # The units for magnitude.
8533 "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
8536 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
8537 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
8538 "magnitude": 3.14, # The magnitude.
8539 "unit": "A String", # The units for magnitude.
8543 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
8544 # the value is inherited from the parent.
8545 "magnitude": 3.14, # The magnitude.
8546 "unit": "A String", # The units for magnitude.
8548 "alignment": "A String", # The text alignment for this paragraph.
8549 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
8550 # column if possible. If unset, the value is inherited from the parent.
8555 "footers": { # The footers in the document, keyed by footer ID.
8557 "content": [ # The contents of the footer.
8559 # The indexes for a footer's content begin at zero.
8560 { # A StructuralElement describes content that provides structure to the
8562 … "endIndex": 42, # The zero-based end index of this structural element, exclusive, in UTF-16
8565 # section break. A section is a range of content which has the same
8567 # the start of a new section, and the section style applies to the section
8568 # after the section break.
8570 # The document body always begins with a section break.
8571 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
8575 …"sectionStyle": { # The styling that applies to a section. # The style of the section after this s…
8576 …"contentDirection": "A String", # The content direction of this section. If unset, the value defau…
8578 "columnProperties": [ # The section's columns properties.
8580 # If empty, the section contains one column with the default properties in
8581 # the Docs editor.
8583 … "width": { # A magnitude in a single direction in the specified units. # The width of the column.
8584 "magnitude": 3.14, # The magnitude.
8585 "unit": "A String", # The units for magnitude.
8587 …ingEnd": { # A magnitude in a single direction in the specified units. # The padding at the end of…
8588 "magnitude": 3.14, # The magnitude.
8589 "unit": "A String", # The units for magnitude.
8593 "columnSeparatorStyle": "A String", # The style of column separators.
8595 # This style can be set even when there is one column in the section.
8597 …"suggestedInsertionIds": [ # The suggested insertion IDs. A SectionBreak may have multiple inserti…
8605 "content": [ # The content of the table of contents.
8608 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
8612 …"suggestedInsertionIds": [ # The suggested insertion IDs. A TableOfContents may have multiple inse…
8618 … "startIndex": 42, # The zero-based start index of this structural element, in UTF-16 code
8623 "elements": [ # The content of the paragraph broken down into its component parts.
8626 … "endIndex": 42, # The zero-base end index of this paragraph element, exclusive, in UTF-16
8630 "suggestedInsertionIds": [ # The suggested insertion IDs. A Equation
8635 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
8641 # column break. A column break makes the subsequent text start at the top of
8642 # the next column.
8643 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Colu…
8645 # Similar to text content, like text runs and footnote references, the text
8646 … # style of a column break can affect content layout as well as the styling of
8650 # text style's parent depends on where the text style is defined:
8652 # * The TextStyle of text in a Paragraph
8653 # inherits from the paragraph's corresponding named style type.
8654 # * The TextStyle on a named style
8655 # inherits from the normal text named style.
8656 # * The TextStyle of the normal text named style inherits
8657 # from the default text style in the Docs editor.
8658 # * The TextStyle on a Paragraph element
8659 # that is contained in a table may inherit its text style from the table
8662 # If the text style does not inherit from a parent, unsetting fields will
8663 # revert the style to a value matching the defaults in the Docs editor.
8664 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
8665 # or transparent, depending on the `color` field.
8668 "rgbColor": { # An RGB color. # The RGB color value.
8669 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
8670 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
8671 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
8675 "italic": True or False, # Whether or not the text is italicized.
8676 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
8679 … # rendered in a smaller font size, computed based on the `font_size` field.
8680 # The `font_size` itself is not affected by changes in this field.
8681 "strikethrough": True or False, # Whether or not the text is struck through.
8682 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
8685 # `bold`, the `weighted_font_family` is applied first, then `bold`.
8692 "fontFamily": "A String", # The font family of the text.
8694 # The font family can be any font from the Font menu in Docs or from
8695 # [Google Fonts] (https://fonts.google.com/). If the font name is
8696 # unrecognized, the text is rendered in `Arial`.
8697 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
8698 … # `100` between `100` and `900`, inclusive. This range corresponds to the
8699 # numerical values described in the CSS 2.1 Specification,
8703 # The default value is `400` ("normal").
8705 … # The font weight makes up just one component of the rendered font weight.
8706 … # The rendered weight is determined by a combination of the `weight` and the
8709 # * If the text is bold and the weight is less than `400`, the rendered
8711 … # * If the text is bold and the weight is greater than or equal to `400` but
8712 # is less than `700`, the rendered weight is `700`.
8713 … # * If the weight is greater than or equal to `700`, the rendered weight is
8714 # equal to the weight.
8715 # * If the text is not bold, the rendered weight is equal to the weight.
8717 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
8718 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
8719 "magnitude": 3.14, # The magnitude.
8720 "unit": "A String", # The units for magnitude.
8722 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
8723 # or transparent, depending on the `color` field.
8726 "rgbColor": { # An RGB color. # The RGB color value.
8727 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
8728 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
8729 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
8733 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
8736 # Changing the link in an update request causes some other changes to the
8737 # text style of the range:
8739 # * When setting a link, the text foreground color will be updated to the
8740 … # default link color and the text will be underlined. If these fields are
8741 # modified in the same request, those values will be used instead of the
8744 # also update the existing link to point to the new URL.
8747 # will separate the newline character(s) into their own text runs. The
8748 … # link will be applied separately to the runs before and after the newline.
8749 # * Removing a link will update the text style of the range to match the
8750 … # style of the preceding text (or the default text styles if the preceding
8751 … # text is another link) unless different styles are being set in the same
8753 "headingId": "A String", # The ID of a heading in this document.
8755 "bookmarkId": "A String", # The ID of a bookmark in this document.
8757 "underline": True or False, # Whether or not the text is underlined.
8758 "bold": True or False, # Whether or not the text is rendered as bold.
8760 …"suggestedInsertionIds": [ # The suggested insertion IDs. A ColumnBreak may have multiple insertio…
8765 …"suggestedTextStyleChanges": { # The suggested text style changes to this ColumnBreak, keyed by su…
8768 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
8769 # the changes made in this suggestion. This can be used along with the
8774 # text style's parent depends on where the text style is defined:
8776 # * The TextStyle of text in a Paragraph
8777 # inherits from the paragraph's corresponding named style type.
8778 # * The TextStyle on a named style
8779 # inherits from the normal text named style.
8780 # * The TextStyle of the normal text named style inherits
8781 # from the default text style in the Docs editor.
8782 # * The TextStyle on a Paragraph element
8783 … # that is contained in a table may inherit its text style from the table
8786 … # If the text style does not inherit from a parent, unsetting fields will
8787 # revert the style to a value matching the defaults in the Docs editor.
8788 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
8789 # or transparent, depending on the `color` field.
8792 "rgbColor": { # An RGB color. # The RGB color value.
8793 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
8794 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
8795 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
8799 "italic": True or False, # Whether or not the text is italicized.
8800 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
8803 … # rendered in a smaller font size, computed based on the `font_size` field.
8804 # The `font_size` itself is not affected by changes in this field.
8805 … "strikethrough": True or False, # Whether or not the text is struck through.
8806 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
8809 # `bold`, the `weighted_font_family` is applied first, then `bold`.
8816 "fontFamily": "A String", # The font family of the text.
8818 # The font family can be any font from the Font menu in Docs or from
8819 # [Google Fonts] (https://fonts.google.com/). If the font name is
8820 # unrecognized, the text is rendered in `Arial`.
8821 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
8822 … # `100` between `100` and `900`, inclusive. This range corresponds to the
8823 # numerical values described in the CSS 2.1 Specification,
8827 # The default value is `400` ("normal").
8829 … # The font weight makes up just one component of the rendered font weight.
8830 … # The rendered weight is determined by a combination of the `weight` and the
8833 … # * If the text is bold and the weight is less than `400`, the rendered
8835 … # * If the text is bold and the weight is greater than or equal to `400` but
8836 # is less than `700`, the rendered weight is `700`.
8837 … # * If the weight is greater than or equal to `700`, the rendered weight is
8838 # equal to the weight.
8839 … # * If the text is not bold, the rendered weight is equal to the weight.
8841 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
8842 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
8843 "magnitude": 3.14, # The magnitude.
8844 "unit": "A String", # The units for magnitude.
8846 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
8847 # or transparent, depending on the `color` field.
8850 "rgbColor": { # An RGB color. # The RGB color value.
8851 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
8852 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
8853 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
8857 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
8860 … # Changing the link in an update request causes some other changes to the
8861 # text style of the range:
8863 … # * When setting a link, the text foreground color will be updated to the
8864 … # default link color and the text will be underlined. If these fields are
8865 … # modified in the same request, those values will be used instead of the
8868 # also update the existing link to point to the new URL.
8871 … # will separate the newline character(s) into their own text runs. The
8872 … # link will be applied separately to the runs before and after the newline.
8873 … # * Removing a link will update the text style of the range to match the
8874 … # style of the preceding text (or the default text styles if the preceding
8875 … # text is another link) unless different styles are being set in the same
8877 "headingId": "A String", # The ID of a heading in this document.
8879 "bookmarkId": "A String", # The ID of a bookmark in this document.
8881 "underline": True or False, # Whether or not the text is underlined.
8882 "bold": True or False, # Whether or not the text is rendered as bold.
8884 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
8900 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
8905 … "startIndex": 42, # The zero-based start index of this paragraph element, in UTF-16 code units.
8907 # page break. A page break makes the subsequent text start at the top of the
8909 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Page…
8911 # Similar to text content, like text runs and footnote references, the text
8912 # style of a page break can affect content layout as well as the styling of
8916 # text style's parent depends on where the text style is defined:
8918 # * The TextStyle of text in a Paragraph
8919 # inherits from the paragraph's corresponding named style type.
8920 # * The TextStyle on a named style
8921 # inherits from the normal text named style.
8922 # * The TextStyle of the normal text named style inherits
8923 # from the default text style in the Docs editor.
8924 # * The TextStyle on a Paragraph element
8925 # that is contained in a table may inherit its text style from the table
8928 # If the text style does not inherit from a parent, unsetting fields will
8929 # revert the style to a value matching the defaults in the Docs editor.
8930 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
8931 # or transparent, depending on the `color` field.
8934 "rgbColor": { # An RGB color. # The RGB color value.
8935 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
8936 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
8937 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
8941 "italic": True or False, # Whether or not the text is italicized.
8942 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
8945 … # rendered in a smaller font size, computed based on the `font_size` field.
8946 # The `font_size` itself is not affected by changes in this field.
8947 "strikethrough": True or False, # Whether or not the text is struck through.
8948 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
8951 # `bold`, the `weighted_font_family` is applied first, then `bold`.
8958 "fontFamily": "A String", # The font family of the text.
8960 # The font family can be any font from the Font menu in Docs or from
8961 # [Google Fonts] (https://fonts.google.com/). If the font name is
8962 # unrecognized, the text is rendered in `Arial`.
8963 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
8964 … # `100` between `100` and `900`, inclusive. This range corresponds to the
8965 # numerical values described in the CSS 2.1 Specification,
8969 # The default value is `400` ("normal").
8971 … # The font weight makes up just one component of the rendered font weight.
8972 … # The rendered weight is determined by a combination of the `weight` and the
8975 # * If the text is bold and the weight is less than `400`, the rendered
8977 … # * If the text is bold and the weight is greater than or equal to `400` but
8978 # is less than `700`, the rendered weight is `700`.
8979 … # * If the weight is greater than or equal to `700`, the rendered weight is
8980 # equal to the weight.
8981 # * If the text is not bold, the rendered weight is equal to the weight.
8983 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
8984 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
8985 "magnitude": 3.14, # The magnitude.
8986 "unit": "A String", # The units for magnitude.
8988 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
8989 # or transparent, depending on the `color` field.
8992 "rgbColor": { # An RGB color. # The RGB color value.
8993 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
8994 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
8995 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
8999 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
9002 # Changing the link in an update request causes some other changes to the
9003 # text style of the range:
9005 # * When setting a link, the text foreground color will be updated to the
9006 … # default link color and the text will be underlined. If these fields are
9007 # modified in the same request, those values will be used instead of the
9010 # also update the existing link to point to the new URL.
9013 # will separate the newline character(s) into their own text runs. The
9014 … # link will be applied separately to the runs before and after the newline.
9015 # * Removing a link will update the text style of the range to match the
9016 … # style of the preceding text (or the default text styles if the preceding
9017 … # text is another link) unless different styles are being set in the same
9019 "headingId": "A String", # The ID of a heading in this document.
9021 "bookmarkId": "A String", # The ID of a bookmark in this document.
9023 "underline": True or False, # Whether or not the text is underlined.
9024 "bold": True or False, # Whether or not the text is rendered as bold.
9026 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
9030 …"suggestedTextStyleChanges": { # The suggested text style changes to this PageBreak, keyed by sugg…
9032 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
9033 # the changes made in this suggestion. This can be used along with the
9038 # text style's parent depends on where the text style is defined:
9040 # * The TextStyle of text in a Paragraph
9041 # inherits from the paragraph's corresponding named style type.
9042 # * The TextStyle on a named style
9043 # inherits from the normal text named style.
9044 # * The TextStyle of the normal text named style inherits
9045 # from the default text style in the Docs editor.
9046 # * The TextStyle on a Paragraph element
9047 … # that is contained in a table may inherit its text style from the table
9050 … # If the text style does not inherit from a parent, unsetting fields will
9051 # revert the style to a value matching the defaults in the Docs editor.
9052 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
9053 # or transparent, depending on the `color` field.
9056 "rgbColor": { # An RGB color. # The RGB color value.
9057 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
9058 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
9059 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
9063 "italic": True or False, # Whether or not the text is italicized.
9064 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
9067 … # rendered in a smaller font size, computed based on the `font_size` field.
9068 # The `font_size` itself is not affected by changes in this field.
9069 … "strikethrough": True or False, # Whether or not the text is struck through.
9070 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
9073 # `bold`, the `weighted_font_family` is applied first, then `bold`.
9080 "fontFamily": "A String", # The font family of the text.
9082 # The font family can be any font from the Font menu in Docs or from
9083 # [Google Fonts] (https://fonts.google.com/). If the font name is
9084 # unrecognized, the text is rendered in `Arial`.
9085 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
9086 … # `100` between `100` and `900`, inclusive. This range corresponds to the
9087 # numerical values described in the CSS 2.1 Specification,
9091 # The default value is `400` ("normal").
9093 … # The font weight makes up just one component of the rendered font weight.
9094 … # The rendered weight is determined by a combination of the `weight` and the
9097 … # * If the text is bold and the weight is less than `400`, the rendered
9099 … # * If the text is bold and the weight is greater than or equal to `400` but
9100 # is less than `700`, the rendered weight is `700`.
9101 … # * If the weight is greater than or equal to `700`, the rendered weight is
9102 # equal to the weight.
9103 … # * If the text is not bold, the rendered weight is equal to the weight.
9105 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
9106 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
9107 "magnitude": 3.14, # The magnitude.
9108 "unit": "A String", # The units for magnitude.
9110 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
9111 # or transparent, depending on the `color` field.
9114 "rgbColor": { # An RGB color. # The RGB color value.
9115 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
9116 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
9117 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
9121 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
9124 … # Changing the link in an update request causes some other changes to the
9125 # text style of the range:
9127 … # * When setting a link, the text foreground color will be updated to the
9128 … # default link color and the text will be underlined. If these fields are
9129 … # modified in the same request, those values will be used instead of the
9132 # also update the existing link to point to the new URL.
9135 … # will separate the newline character(s) into their own text runs. The
9136 … # link will be applied separately to the runs before and after the newline.
9137 … # * Removing a link will update the text style of the range to match the
9138 … # style of the preceding text (or the default text styles if the preceding
9139 … # text is another link) unless different styles are being set in the same
9141 "headingId": "A String", # The ID of a heading in this document.
9143 "bookmarkId": "A String", # The ID of a bookmark in this document.
9145 "underline": True or False, # Whether or not the text is underlined.
9146 "bold": True or False, # Whether or not the text is rendered as bold.
9148 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
9164 "suggestedInsertionIds": [ # The suggested insertion IDs. A PageBreak
9172 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Hori…
9174 # Similar to text content, like text runs and footnote references, the text
9175 … # style of a horizontal rule can affect content layout as well as the styling
9179 # text style's parent depends on where the text style is defined:
9181 # * The TextStyle of text in a Paragraph
9182 # inherits from the paragraph's corresponding named style type.
9183 # * The TextStyle on a named style
9184 # inherits from the normal text named style.
9185 # * The TextStyle of the normal text named style inherits
9186 # from the default text style in the Docs editor.
9187 # * The TextStyle on a Paragraph element
9188 # that is contained in a table may inherit its text style from the table
9191 # If the text style does not inherit from a parent, unsetting fields will
9192 # revert the style to a value matching the defaults in the Docs editor.
9193 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
9194 # or transparent, depending on the `color` field.
9197 "rgbColor": { # An RGB color. # The RGB color value.
9198 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
9199 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
9200 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
9204 "italic": True or False, # Whether or not the text is italicized.
9205 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
9208 … # rendered in a smaller font size, computed based on the `font_size` field.
9209 # The `font_size` itself is not affected by changes in this field.
9210 "strikethrough": True or False, # Whether or not the text is struck through.
9211 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
9214 # `bold`, the `weighted_font_family` is applied first, then `bold`.
9221 "fontFamily": "A String", # The font family of the text.
9223 # The font family can be any font from the Font menu in Docs or from
9224 # [Google Fonts] (https://fonts.google.com/). If the font name is
9225 # unrecognized, the text is rendered in `Arial`.
9226 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
9227 … # `100` between `100` and `900`, inclusive. This range corresponds to the
9228 # numerical values described in the CSS 2.1 Specification,
9232 # The default value is `400` ("normal").
9234 … # The font weight makes up just one component of the rendered font weight.
9235 … # The rendered weight is determined by a combination of the `weight` and the
9238 # * If the text is bold and the weight is less than `400`, the rendered
9240 … # * If the text is bold and the weight is greater than or equal to `400` but
9241 # is less than `700`, the rendered weight is `700`.
9242 … # * If the weight is greater than or equal to `700`, the rendered weight is
9243 # equal to the weight.
9244 # * If the text is not bold, the rendered weight is equal to the weight.
9246 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
9247 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
9248 "magnitude": 3.14, # The magnitude.
9249 "unit": "A String", # The units for magnitude.
9251 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
9252 # or transparent, depending on the `color` field.
9255 "rgbColor": { # An RGB color. # The RGB color value.
9256 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
9257 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
9258 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
9262 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
9265 # Changing the link in an update request causes some other changes to the
9266 # text style of the range:
9268 # * When setting a link, the text foreground color will be updated to the
9269 … # default link color and the text will be underlined. If these fields are
9270 # modified in the same request, those values will be used instead of the
9273 # also update the existing link to point to the new URL.
9276 # will separate the newline character(s) into their own text runs. The
9277 … # link will be applied separately to the runs before and after the newline.
9278 # * Removing a link will update the text style of the range to match the
9279 … # style of the preceding text (or the default text styles if the preceding
9280 … # text is another link) unless different styles are being set in the same
9282 "headingId": "A String", # The ID of a heading in this document.
9284 "bookmarkId": "A String", # The ID of a bookmark in this document.
9286 "underline": True or False, # Whether or not the text is underlined.
9287 "bold": True or False, # Whether or not the text is rendered as bold.
9289 …"suggestedInsertionIds": [ # The suggested insertion IDs. A HorizontalRule may have multiple inser…
9294 … "suggestedTextStyleChanges": { # The suggested text style changes to this HorizontalRule, keyed by
9297 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
9298 # the changes made in this suggestion. This can be used along with the
9303 # text style's parent depends on where the text style is defined:
9305 # * The TextStyle of text in a Paragraph
9306 # inherits from the paragraph's corresponding named style type.
9307 # * The TextStyle on a named style
9308 # inherits from the normal text named style.
9309 # * The TextStyle of the normal text named style inherits
9310 # from the default text style in the Docs editor.
9311 # * The TextStyle on a Paragraph element
9312 … # that is contained in a table may inherit its text style from the table
9315 … # If the text style does not inherit from a parent, unsetting fields will
9316 # revert the style to a value matching the defaults in the Docs editor.
9317 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
9318 # or transparent, depending on the `color` field.
9321 "rgbColor": { # An RGB color. # The RGB color value.
9322 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
9323 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
9324 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
9328 "italic": True or False, # Whether or not the text is italicized.
9329 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
9332 … # rendered in a smaller font size, computed based on the `font_size` field.
9333 # The `font_size` itself is not affected by changes in this field.
9334 … "strikethrough": True or False, # Whether or not the text is struck through.
9335 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
9338 # `bold`, the `weighted_font_family` is applied first, then `bold`.
9345 "fontFamily": "A String", # The font family of the text.
9347 # The font family can be any font from the Font menu in Docs or from
9348 # [Google Fonts] (https://fonts.google.com/). If the font name is
9349 # unrecognized, the text is rendered in `Arial`.
9350 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
9351 … # `100` between `100` and `900`, inclusive. This range corresponds to the
9352 # numerical values described in the CSS 2.1 Specification,
9356 # The default value is `400` ("normal").
9358 … # The font weight makes up just one component of the rendered font weight.
9359 … # The rendered weight is determined by a combination of the `weight` and the
9362 … # * If the text is bold and the weight is less than `400`, the rendered
9364 … # * If the text is bold and the weight is greater than or equal to `400` but
9365 # is less than `700`, the rendered weight is `700`.
9366 … # * If the weight is greater than or equal to `700`, the rendered weight is
9367 # equal to the weight.
9368 … # * If the text is not bold, the rendered weight is equal to the weight.
9370 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
9371 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
9372 "magnitude": 3.14, # The magnitude.
9373 "unit": "A String", # The units for magnitude.
9375 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
9376 # or transparent, depending on the `color` field.
9379 "rgbColor": { # An RGB color. # The RGB color value.
9380 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
9381 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
9382 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
9386 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
9389 … # Changing the link in an update request causes some other changes to the
9390 # text style of the range:
9392 … # * When setting a link, the text foreground color will be updated to the
9393 … # default link color and the text will be underlined. If these fields are
9394 … # modified in the same request, those values will be used instead of the
9397 # also update the existing link to point to the new URL.
9400 … # will separate the newline character(s) into their own text runs. The
9401 … # link will be applied separately to the runs before and after the newline.
9402 … # * Removing a link will update the text style of the range to match the
9403 … # style of the preceding text (or the default text styles if the preceding
9404 … # text is another link) unless different styles are being set in the same
9406 "headingId": "A String", # The ID of a heading in this document.
9408 "bookmarkId": "A String", # The ID of a bookmark in this document.
9410 "underline": True or False, # Whether or not the text is underlined.
9411 "bold": True or False, # Whether or not the text is rendered as bold.
9413 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
9429 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
9435 # run of text that all has the same styling.
9436 "content": "A String", # The text of this run.
9438 # Any non-text elements in the run are replaced with the Unicode character
9440 … "textStyle": { # Represents the styling that can be applied to text. # The text style of this run.
9443 # text style's parent depends on where the text style is defined:
9445 # * The TextStyle of text in a Paragraph
9446 # inherits from the paragraph's corresponding named style type.
9447 # * The TextStyle on a named style
9448 # inherits from the normal text named style.
9449 # * The TextStyle of the normal text named style inherits
9450 # from the default text style in the Docs editor.
9451 # * The TextStyle on a Paragraph element
9452 # that is contained in a table may inherit its text style from the table
9455 # If the text style does not inherit from a parent, unsetting fields will
9456 # revert the style to a value matching the defaults in the Docs editor.
9457 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
9458 # or transparent, depending on the `color` field.
9461 "rgbColor": { # An RGB color. # The RGB color value.
9462 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
9463 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
9464 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
9468 "italic": True or False, # Whether or not the text is italicized.
9469 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
9472 … # rendered in a smaller font size, computed based on the `font_size` field.
9473 # The `font_size` itself is not affected by changes in this field.
9474 "strikethrough": True or False, # Whether or not the text is struck through.
9475 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
9478 # `bold`, the `weighted_font_family` is applied first, then `bold`.
9485 "fontFamily": "A String", # The font family of the text.
9487 # The font family can be any font from the Font menu in Docs or from
9488 # [Google Fonts] (https://fonts.google.com/). If the font name is
9489 # unrecognized, the text is rendered in `Arial`.
9490 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
9491 … # `100` between `100` and `900`, inclusive. This range corresponds to the
9492 # numerical values described in the CSS 2.1 Specification,
9496 # The default value is `400` ("normal").
9498 … # The font weight makes up just one component of the rendered font weight.
9499 … # The rendered weight is determined by a combination of the `weight` and the
9502 # * If the text is bold and the weight is less than `400`, the rendered
9504 … # * If the text is bold and the weight is greater than or equal to `400` but
9505 # is less than `700`, the rendered weight is `700`.
9506 … # * If the weight is greater than or equal to `700`, the rendered weight is
9507 # equal to the weight.
9508 # * If the text is not bold, the rendered weight is equal to the weight.
9510 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
9511 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
9512 "magnitude": 3.14, # The magnitude.
9513 "unit": "A String", # The units for magnitude.
9515 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
9516 # or transparent, depending on the `color` field.
9519 "rgbColor": { # An RGB color. # The RGB color value.
9520 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
9521 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
9522 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
9526 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
9529 # Changing the link in an update request causes some other changes to the
9530 # text style of the range:
9532 # * When setting a link, the text foreground color will be updated to the
9533 … # default link color and the text will be underlined. If these fields are
9534 # modified in the same request, those values will be used instead of the
9537 # also update the existing link to point to the new URL.
9540 # will separate the newline character(s) into their own text runs. The
9541 … # link will be applied separately to the runs before and after the newline.
9542 # * Removing a link will update the text style of the range to match the
9543 … # style of the preceding text (or the default text styles if the preceding
9544 … # text is another link) unless different styles are being set in the same
9546 "headingId": "A String", # The ID of a heading in this document.
9548 "bookmarkId": "A String", # The ID of a bookmark in this document.
9550 "underline": True or False, # Whether or not the text is underlined.
9551 "bold": True or False, # Whether or not the text is rendered as bold.
9553 "suggestedInsertionIds": [ # The suggested insertion IDs. A TextRun may
9558 …"suggestedTextStyleChanges": { # The suggested text style changes to this run, keyed by suggestion…
9560 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
9561 # the changes made in this suggestion. This can be used along with the
9566 # text style's parent depends on where the text style is defined:
9568 # * The TextStyle of text in a Paragraph
9569 # inherits from the paragraph's corresponding named style type.
9570 # * The TextStyle on a named style
9571 # inherits from the normal text named style.
9572 # * The TextStyle of the normal text named style inherits
9573 # from the default text style in the Docs editor.
9574 # * The TextStyle on a Paragraph element
9575 … # that is contained in a table may inherit its text style from the table
9578 … # If the text style does not inherit from a parent, unsetting fields will
9579 # revert the style to a value matching the defaults in the Docs editor.
9580 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
9581 # or transparent, depending on the `color` field.
9584 "rgbColor": { # An RGB color. # The RGB color value.
9585 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
9586 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
9587 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
9591 "italic": True or False, # Whether or not the text is italicized.
9592 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
9595 … # rendered in a smaller font size, computed based on the `font_size` field.
9596 # The `font_size` itself is not affected by changes in this field.
9597 … "strikethrough": True or False, # Whether or not the text is struck through.
9598 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
9601 # `bold`, the `weighted_font_family` is applied first, then `bold`.
9608 "fontFamily": "A String", # The font family of the text.
9610 # The font family can be any font from the Font menu in Docs or from
9611 # [Google Fonts] (https://fonts.google.com/). If the font name is
9612 # unrecognized, the text is rendered in `Arial`.
9613 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
9614 … # `100` between `100` and `900`, inclusive. This range corresponds to the
9615 # numerical values described in the CSS 2.1 Specification,
9619 # The default value is `400` ("normal").
9621 … # The font weight makes up just one component of the rendered font weight.
9622 … # The rendered weight is determined by a combination of the `weight` and the
9625 … # * If the text is bold and the weight is less than `400`, the rendered
9627 … # * If the text is bold and the weight is greater than or equal to `400` but
9628 # is less than `700`, the rendered weight is `700`.
9629 … # * If the weight is greater than or equal to `700`, the rendered weight is
9630 # equal to the weight.
9631 … # * If the text is not bold, the rendered weight is equal to the weight.
9633 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
9634 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
9635 "magnitude": 3.14, # The magnitude.
9636 "unit": "A String", # The units for magnitude.
9638 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
9639 # or transparent, depending on the `color` field.
9642 "rgbColor": { # An RGB color. # The RGB color value.
9643 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
9644 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
9645 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
9649 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
9652 … # Changing the link in an update request causes some other changes to the
9653 # text style of the range:
9655 … # * When setting a link, the text foreground color will be updated to the
9656 … # default link color and the text will be underlined. If these fields are
9657 … # modified in the same request, those values will be used instead of the
9660 # also update the existing link to point to the new URL.
9663 … # will separate the newline character(s) into their own text runs. The
9664 … # link will be applied separately to the runs before and after the newline.
9665 … # * Removing a link will update the text style of the range to match the
9666 … # style of the preceding text (or the default text styles if the preceding
9667 … # text is another link) unless different styles are being set in the same
9669 "headingId": "A String", # The ID of a heading in this document.
9671 "bookmarkId": "A String", # The ID of a bookmark in this document.
9673 "underline": True or False, # Whether or not the text is underlined.
9674 "bold": True or False, # Whether or not the text is rendered as bold.
9676 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
9692 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
9698 # spot in the text that is dynamically replaced with content that can change
9700 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Auto…
9703 # text style's parent depends on where the text style is defined:
9705 # * The TextStyle of text in a Paragraph
9706 # inherits from the paragraph's corresponding named style type.
9707 # * The TextStyle on a named style
9708 # inherits from the normal text named style.
9709 # * The TextStyle of the normal text named style inherits
9710 # from the default text style in the Docs editor.
9711 # * The TextStyle on a Paragraph element
9712 # that is contained in a table may inherit its text style from the table
9715 # If the text style does not inherit from a parent, unsetting fields will
9716 # revert the style to a value matching the defaults in the Docs editor.
9717 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
9718 # or transparent, depending on the `color` field.
9721 "rgbColor": { # An RGB color. # The RGB color value.
9722 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
9723 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
9724 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
9728 "italic": True or False, # Whether or not the text is italicized.
9729 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
9732 … # rendered in a smaller font size, computed based on the `font_size` field.
9733 # The `font_size` itself is not affected by changes in this field.
9734 "strikethrough": True or False, # Whether or not the text is struck through.
9735 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
9738 # `bold`, the `weighted_font_family` is applied first, then `bold`.
9745 "fontFamily": "A String", # The font family of the text.
9747 # The font family can be any font from the Font menu in Docs or from
9748 # [Google Fonts] (https://fonts.google.com/). If the font name is
9749 # unrecognized, the text is rendered in `Arial`.
9750 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
9751 … # `100` between `100` and `900`, inclusive. This range corresponds to the
9752 # numerical values described in the CSS 2.1 Specification,
9756 # The default value is `400` ("normal").
9758 … # The font weight makes up just one component of the rendered font weight.
9759 … # The rendered weight is determined by a combination of the `weight` and the
9762 # * If the text is bold and the weight is less than `400`, the rendered
9764 … # * If the text is bold and the weight is greater than or equal to `400` but
9765 # is less than `700`, the rendered weight is `700`.
9766 … # * If the weight is greater than or equal to `700`, the rendered weight is
9767 # equal to the weight.
9768 # * If the text is not bold, the rendered weight is equal to the weight.
9770 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
9771 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
9772 "magnitude": 3.14, # The magnitude.
9773 "unit": "A String", # The units for magnitude.
9775 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
9776 # or transparent, depending on the `color` field.
9779 "rgbColor": { # An RGB color. # The RGB color value.
9780 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
9781 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
9782 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
9786 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
9789 # Changing the link in an update request causes some other changes to the
9790 # text style of the range:
9792 # * When setting a link, the text foreground color will be updated to the
9793 … # default link color and the text will be underlined. If these fields are
9794 # modified in the same request, those values will be used instead of the
9797 # also update the existing link to point to the new URL.
9800 # will separate the newline character(s) into their own text runs. The
9801 … # link will be applied separately to the runs before and after the newline.
9802 # * Removing a link will update the text style of the range to match the
9803 … # style of the preceding text (or the default text styles if the preceding
9804 … # text is another link) unless different styles are being set in the same
9806 "headingId": "A String", # The ID of a heading in this document.
9808 "bookmarkId": "A String", # The ID of a bookmark in this document.
9810 "underline": True or False, # Whether or not the text is underlined.
9811 "bold": True or False, # Whether or not the text is rendered as bold.
9813 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
9817 …"suggestedTextStyleChanges": { # The suggested text style changes to this AutoText, keyed by sugge…
9819 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
9820 # the changes made in this suggestion. This can be used along with the
9825 # text style's parent depends on where the text style is defined:
9827 # * The TextStyle of text in a Paragraph
9828 # inherits from the paragraph's corresponding named style type.
9829 # * The TextStyle on a named style
9830 # inherits from the normal text named style.
9831 # * The TextStyle of the normal text named style inherits
9832 # from the default text style in the Docs editor.
9833 # * The TextStyle on a Paragraph element
9834 … # that is contained in a table may inherit its text style from the table
9837 … # If the text style does not inherit from a parent, unsetting fields will
9838 # revert the style to a value matching the defaults in the Docs editor.
9839 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
9840 # or transparent, depending on the `color` field.
9843 "rgbColor": { # An RGB color. # The RGB color value.
9844 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
9845 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
9846 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
9850 "italic": True or False, # Whether or not the text is italicized.
9851 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
9854 … # rendered in a smaller font size, computed based on the `font_size` field.
9855 # The `font_size` itself is not affected by changes in this field.
9856 … "strikethrough": True or False, # Whether or not the text is struck through.
9857 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
9860 # `bold`, the `weighted_font_family` is applied first, then `bold`.
9867 "fontFamily": "A String", # The font family of the text.
9869 # The font family can be any font from the Font menu in Docs or from
9870 # [Google Fonts] (https://fonts.google.com/). If the font name is
9871 # unrecognized, the text is rendered in `Arial`.
9872 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
9873 … # `100` between `100` and `900`, inclusive. This range corresponds to the
9874 # numerical values described in the CSS 2.1 Specification,
9878 # The default value is `400` ("normal").
9880 … # The font weight makes up just one component of the rendered font weight.
9881 … # The rendered weight is determined by a combination of the `weight` and the
9884 … # * If the text is bold and the weight is less than `400`, the rendered
9886 … # * If the text is bold and the weight is greater than or equal to `400` but
9887 # is less than `700`, the rendered weight is `700`.
9888 … # * If the weight is greater than or equal to `700`, the rendered weight is
9889 # equal to the weight.
9890 … # * If the text is not bold, the rendered weight is equal to the weight.
9892 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
9893 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
9894 "magnitude": 3.14, # The magnitude.
9895 "unit": "A String", # The units for magnitude.
9897 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
9898 # or transparent, depending on the `color` field.
9901 "rgbColor": { # An RGB color. # The RGB color value.
9902 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
9903 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
9904 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
9908 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
9911 … # Changing the link in an update request causes some other changes to the
9912 # text style of the range:
9914 … # * When setting a link, the text foreground color will be updated to the
9915 … # default link color and the text will be underlined. If these fields are
9916 … # modified in the same request, those values will be used instead of the
9919 # also update the existing link to point to the new URL.
9922 … # will separate the newline character(s) into their own text runs. The
9923 … # link will be applied separately to the runs before and after the newline.
9924 … # * Removing a link will update the text style of the range to match the
9925 … # style of the preceding text (or the default text styles if the preceding
9926 … # text is another link) unless different styles are being set in the same
9928 "headingId": "A String", # The ID of a heading in this document.
9930 "bookmarkId": "A String", # The ID of a bookmark in this document.
9932 "underline": True or False, # Whether or not the text is underlined.
9933 "bold": True or False, # Whether or not the text is rendered as bold.
9935 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
9951 "type": "A String", # The type of this auto text.
9952 "suggestedInsertionIds": [ # The suggested insertion IDs. An AutoText
9960 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Inli…
9962 # Similar to text content, like text runs and footnote references, the text
9963 # style of an inline object element can affect content layout as well as the
9967 # text style's parent depends on where the text style is defined:
9969 # * The TextStyle of text in a Paragraph
9970 # inherits from the paragraph's corresponding named style type.
9971 # * The TextStyle on a named style
9972 # inherits from the normal text named style.
9973 # * The TextStyle of the normal text named style inherits
9974 # from the default text style in the Docs editor.
9975 # * The TextStyle on a Paragraph element
9976 # that is contained in a table may inherit its text style from the table
9979 # If the text style does not inherit from a parent, unsetting fields will
9980 # revert the style to a value matching the defaults in the Docs editor.
9981 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
9982 # or transparent, depending on the `color` field.
9985 "rgbColor": { # An RGB color. # The RGB color value.
9986 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
9987 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
9988 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
9992 "italic": True or False, # Whether or not the text is italicized.
9993 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
9996 … # rendered in a smaller font size, computed based on the `font_size` field.
9997 # The `font_size` itself is not affected by changes in this field.
9998 "strikethrough": True or False, # Whether or not the text is struck through.
9999 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
10002 # `bold`, the `weighted_font_family` is applied first, then `bold`.
10009 "fontFamily": "A String", # The font family of the text.
10011 # The font family can be any font from the Font menu in Docs or from
10012 # [Google Fonts] (https://fonts.google.com/). If the font name is
10013 # unrecognized, the text is rendered in `Arial`.
10014 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
10015 … # `100` between `100` and `900`, inclusive. This range corresponds to the
10016 # numerical values described in the CSS 2.1 Specification,
10020 # The default value is `400` ("normal").
10022 … # The font weight makes up just one component of the rendered font weight.
10023 … # The rendered weight is determined by a combination of the `weight` and the
10026 # * If the text is bold and the weight is less than `400`, the rendered
10028 … # * If the text is bold and the weight is greater than or equal to `400` but
10029 # is less than `700`, the rendered weight is `700`.
10030 … # * If the weight is greater than or equal to `700`, the rendered weight is
10031 # equal to the weight.
10032 # * If the text is not bold, the rendered weight is equal to the weight.
10034 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
10035 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
10036 "magnitude": 3.14, # The magnitude.
10037 "unit": "A String", # The units for magnitude.
10039 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
10040 # or transparent, depending on the `color` field.
10043 "rgbColor": { # An RGB color. # The RGB color value.
10044 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
10045 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
10046 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
10050 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
10053 # Changing the link in an update request causes some other changes to the
10054 # text style of the range:
10056 # * When setting a link, the text foreground color will be updated to the
10057 … # default link color and the text will be underlined. If these fields are
10058 # modified in the same request, those values will be used instead of the
10061 # also update the existing link to point to the new URL.
10064 # will separate the newline character(s) into their own text runs. The
10065 … # link will be applied separately to the runs before and after the newline.
10066 # * Removing a link will update the text style of the range to match the
10067 … # style of the preceding text (or the default text styles if the preceding
10068 … # text is another link) unless different styles are being set in the same
10070 "headingId": "A String", # The ID of a heading in this document.
10072 "bookmarkId": "A String", # The ID of a bookmark in this document.
10074 "underline": True or False, # Whether or not the text is underlined.
10075 "bold": True or False, # Whether or not the text is rendered as bold.
10077 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
10081 …"suggestedTextStyleChanges": { # The suggested text style changes to this InlineObject, keyed by s…
10084 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
10085 # the changes made in this suggestion. This can be used along with the
10090 # text style's parent depends on where the text style is defined:
10092 # * The TextStyle of text in a Paragraph
10093 # inherits from the paragraph's corresponding named style type.
10094 # * The TextStyle on a named style
10095 # inherits from the normal text named style.
10096 # * The TextStyle of the normal text named style inherits
10097 # from the default text style in the Docs editor.
10098 # * The TextStyle on a Paragraph element
10099 … # that is contained in a table may inherit its text style from the table
10102 … # If the text style does not inherit from a parent, unsetting fields will
10103 # revert the style to a value matching the defaults in the Docs editor.
10104 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
10105 # or transparent, depending on the `color` field.
10108 "rgbColor": { # An RGB color. # The RGB color value.
10109 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
10110 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
10111 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
10115 "italic": True or False, # Whether or not the text is italicized.
10116 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
10119 … # rendered in a smaller font size, computed based on the `font_size` field.
10120 # The `font_size` itself is not affected by changes in this field.
10121 … "strikethrough": True or False, # Whether or not the text is struck through.
10122 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
10125 # `bold`, the `weighted_font_family` is applied first, then `bold`.
10132 "fontFamily": "A String", # The font family of the text.
10134 # The font family can be any font from the Font menu in Docs or from
10135 # [Google Fonts] (https://fonts.google.com/). If the font name is
10136 # unrecognized, the text is rendered in `Arial`.
10137 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
10138 … # `100` between `100` and `900`, inclusive. This range corresponds to the
10139 # numerical values described in the CSS 2.1 Specification,
10143 # The default value is `400` ("normal").
10145 … # The font weight makes up just one component of the rendered font weight.
10146 … # The rendered weight is determined by a combination of the `weight` and the
10149 … # * If the text is bold and the weight is less than `400`, the rendered
10151 … # * If the text is bold and the weight is greater than or equal to `400` but
10152 # is less than `700`, the rendered weight is `700`.
10153 … # * If the weight is greater than or equal to `700`, the rendered weight is
10154 # equal to the weight.
10155 … # * If the text is not bold, the rendered weight is equal to the weight.
10157 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
10158 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
10159 "magnitude": 3.14, # The magnitude.
10160 "unit": "A String", # The units for magnitude.
10162 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
10163 # or transparent, depending on the `color` field.
10166 "rgbColor": { # An RGB color. # The RGB color value.
10167 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
10168 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
10169 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
10173 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
10176 … # Changing the link in an update request causes some other changes to the
10177 # text style of the range:
10179 … # * When setting a link, the text foreground color will be updated to the
10180 … # default link color and the text will be underlined. If these fields are
10181 … # modified in the same request, those values will be used instead of the
10184 # also update the existing link to point to the new URL.
10187 … # will separate the newline character(s) into their own text runs. The
10188 … # link will be applied separately to the runs before and after the newline.
10189 … # * Removing a link will update the text style of the range to match the
10190 … # style of the preceding text (or the default text styles if the preceding
10191 … # text is another link) unless different styles are being set in the same
10193 "headingId": "A String", # The ID of a heading in this document.
10195 "bookmarkId": "A String", # The ID of a bookmark in this document.
10197 "underline": True or False, # Whether or not the text is underlined.
10198 "bold": True or False, # Whether or not the text is rendered as bold.
10200 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
10216 "inlineObjectId": "A String", # The ID of the InlineObject this
10218 …"suggestedInsertionIds": [ # The suggested insertion IDs. An InlineObjectElement may have multiple…
10225 # footnote reference. A footnote reference is the inline content rendered with
10226 # a number and is used to identify the footnote.
10227 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Foot…
10230 # text style's parent depends on where the text style is defined:
10232 # * The TextStyle of text in a Paragraph
10233 # inherits from the paragraph's corresponding named style type.
10234 # * The TextStyle on a named style
10235 # inherits from the normal text named style.
10236 # * The TextStyle of the normal text named style inherits
10237 # from the default text style in the Docs editor.
10238 # * The TextStyle on a Paragraph element
10239 # that is contained in a table may inherit its text style from the table
10242 # If the text style does not inherit from a parent, unsetting fields will
10243 # revert the style to a value matching the defaults in the Docs editor.
10244 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
10245 # or transparent, depending on the `color` field.
10248 "rgbColor": { # An RGB color. # The RGB color value.
10249 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
10250 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
10251 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
10255 "italic": True or False, # Whether or not the text is italicized.
10256 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
10259 … # rendered in a smaller font size, computed based on the `font_size` field.
10260 # The `font_size` itself is not affected by changes in this field.
10261 "strikethrough": True or False, # Whether or not the text is struck through.
10262 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
10265 # `bold`, the `weighted_font_family` is applied first, then `bold`.
10272 "fontFamily": "A String", # The font family of the text.
10274 # The font family can be any font from the Font menu in Docs or from
10275 # [Google Fonts] (https://fonts.google.com/). If the font name is
10276 # unrecognized, the text is rendered in `Arial`.
10277 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
10278 … # `100` between `100` and `900`, inclusive. This range corresponds to the
10279 # numerical values described in the CSS 2.1 Specification,
10283 # The default value is `400` ("normal").
10285 … # The font weight makes up just one component of the rendered font weight.
10286 … # The rendered weight is determined by a combination of the `weight` and the
10289 # * If the text is bold and the weight is less than `400`, the rendered
10291 … # * If the text is bold and the weight is greater than or equal to `400` but
10292 # is less than `700`, the rendered weight is `700`.
10293 … # * If the weight is greater than or equal to `700`, the rendered weight is
10294 # equal to the weight.
10295 # * If the text is not bold, the rendered weight is equal to the weight.
10297 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
10298 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
10299 "magnitude": 3.14, # The magnitude.
10300 "unit": "A String", # The units for magnitude.
10302 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
10303 # or transparent, depending on the `color` field.
10306 "rgbColor": { # An RGB color. # The RGB color value.
10307 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
10308 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
10309 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
10313 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
10316 # Changing the link in an update request causes some other changes to the
10317 # text style of the range:
10319 # * When setting a link, the text foreground color will be updated to the
10320 … # default link color and the text will be underlined. If these fields are
10321 # modified in the same request, those values will be used instead of the
10324 # also update the existing link to point to the new URL.
10327 # will separate the newline character(s) into their own text runs. The
10328 … # link will be applied separately to the runs before and after the newline.
10329 # * Removing a link will update the text style of the range to match the
10330 … # style of the preceding text (or the default text styles if the preceding
10331 … # text is another link) unless different styles are being set in the same
10333 "headingId": "A String", # The ID of a heading in this document.
10335 "bookmarkId": "A String", # The ID of a bookmark in this document.
10337 "underline": True or False, # Whether or not the text is underlined.
10338 "bold": True or False, # Whether or not the text is rendered as bold.
10340 "footnoteNumber": "A String", # The rendered number of this footnote.
10341 …"suggestedInsertionIds": [ # The suggested insertion IDs. A FootnoteReference may have multiple in…
10346 "footnoteId": "A String", # The ID of the footnote that
10347 # contains the content of this footnote reference.
10348 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
10352 …"suggestedTextStyleChanges": { # The suggested text style changes to this FootnoteReference, keyed…
10355 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
10356 # the changes made in this suggestion. This can be used along with the
10361 # text style's parent depends on where the text style is defined:
10363 # * The TextStyle of text in a Paragraph
10364 # inherits from the paragraph's corresponding named style type.
10365 # * The TextStyle on a named style
10366 # inherits from the normal text named style.
10367 # * The TextStyle of the normal text named style inherits
10368 # from the default text style in the Docs editor.
10369 # * The TextStyle on a Paragraph element
10370 … # that is contained in a table may inherit its text style from the table
10373 … # If the text style does not inherit from a parent, unsetting fields will
10374 # revert the style to a value matching the defaults in the Docs editor.
10375 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
10376 # or transparent, depending on the `color` field.
10379 "rgbColor": { # An RGB color. # The RGB color value.
10380 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
10381 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
10382 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
10386 "italic": True or False, # Whether or not the text is italicized.
10387 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
10390 … # rendered in a smaller font size, computed based on the `font_size` field.
10391 # The `font_size` itself is not affected by changes in this field.
10392 … "strikethrough": True or False, # Whether or not the text is struck through.
10393 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
10396 # `bold`, the `weighted_font_family` is applied first, then `bold`.
10403 "fontFamily": "A String", # The font family of the text.
10405 # The font family can be any font from the Font menu in Docs or from
10406 # [Google Fonts] (https://fonts.google.com/). If the font name is
10407 # unrecognized, the text is rendered in `Arial`.
10408 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
10409 … # `100` between `100` and `900`, inclusive. This range corresponds to the
10410 # numerical values described in the CSS 2.1 Specification,
10414 # The default value is `400` ("normal").
10416 … # The font weight makes up just one component of the rendered font weight.
10417 … # The rendered weight is determined by a combination of the `weight` and the
10420 … # * If the text is bold and the weight is less than `400`, the rendered
10422 … # * If the text is bold and the weight is greater than or equal to `400` but
10423 # is less than `700`, the rendered weight is `700`.
10424 … # * If the weight is greater than or equal to `700`, the rendered weight is
10425 # equal to the weight.
10426 … # * If the text is not bold, the rendered weight is equal to the weight.
10428 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
10429 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
10430 "magnitude": 3.14, # The magnitude.
10431 "unit": "A String", # The units for magnitude.
10433 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
10434 # or transparent, depending on the `color` field.
10437 "rgbColor": { # An RGB color. # The RGB color value.
10438 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
10439 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
10440 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
10444 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
10447 … # Changing the link in an update request causes some other changes to the
10448 # text style of the range:
10450 … # * When setting a link, the text foreground color will be updated to the
10451 … # default link color and the text will be underlined. If these fields are
10452 … # modified in the same request, those values will be used instead of the
10455 # also update the existing link to point to the new URL.
10458 … # will separate the newline character(s) into their own text runs. The
10459 … # link will be applied separately to the runs before and after the newline.
10460 … # * Removing a link will update the text style of the range to match the
10461 … # style of the preceding text (or the default text styles if the preceding
10462 … # text is another link) unless different styles are being set in the same
10464 "headingId": "A String", # The ID of a heading in this document.
10466 "bookmarkId": "A String", # The ID of a bookmark in this document.
10468 "underline": True or False, # Whether or not the text is underlined.
10469 "bold": True or False, # Whether or not the text is rendered as bold.
10471 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
10490 …"suggestedPositionedObjectIds": { # The IDs of the positioned objects that are suggested to be att…
10493 "objectIds": [ # The object IDs.
10498 …"bullet": { # Describes the bullet of a paragraph. # The bullet for this paragraph. If not present…
10500 "nestingLevel": 42, # The nesting level of this paragraph in the list.
10501 "listId": "A String", # The ID of the list this paragraph belongs to.
10502 …"textStyle": { # Represents the styling that can be applied to text. # The paragraph specific text…
10505 # text style's parent depends on where the text style is defined:
10507 # * The TextStyle of text in a Paragraph
10508 # inherits from the paragraph's corresponding named style type.
10509 # * The TextStyle on a named style
10510 # inherits from the normal text named style.
10511 # * The TextStyle of the normal text named style inherits
10512 # from the default text style in the Docs editor.
10513 # * The TextStyle on a Paragraph element
10514 # that is contained in a table may inherit its text style from the table
10517 # If the text style does not inherit from a parent, unsetting fields will
10518 # revert the style to a value matching the defaults in the Docs editor.
10519 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
10520 # or transparent, depending on the `color` field.
10523 "rgbColor": { # An RGB color. # The RGB color value.
10524 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
10525 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
10526 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
10530 "italic": True or False, # Whether or not the text is italicized.
10531 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
10534 # rendered in a smaller font size, computed based on the `font_size` field.
10535 # The `font_size` itself is not affected by changes in this field.
10536 "strikethrough": True or False, # Whether or not the text is struck through.
10537 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
10540 # `bold`, the `weighted_font_family` is applied first, then `bold`.
10547 "fontFamily": "A String", # The font family of the text.
10549 # The font family can be any font from the Font menu in Docs or from
10550 # [Google Fonts] (https://fonts.google.com/). If the font name is
10551 # unrecognized, the text is rendered in `Arial`.
10552 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
10553 # `100` between `100` and `900`, inclusive. This range corresponds to the
10554 # numerical values described in the CSS 2.1 Specification,
10558 # The default value is `400` ("normal").
10560 # The font weight makes up just one component of the rendered font weight.
10561 # The rendered weight is determined by a combination of the `weight` and the
10564 # * If the text is bold and the weight is less than `400`, the rendered
10566 # * If the text is bold and the weight is greater than or equal to `400` but
10567 # is less than `700`, the rendered weight is `700`.
10568 # * If the weight is greater than or equal to `700`, the rendered weight is
10569 # equal to the weight.
10570 # * If the text is not bold, the rendered weight is equal to the weight.
10572 "smallCaps": True or False, # Whether or not the text is in small capital letters.
10573 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
10574 "magnitude": 3.14, # The magnitude.
10575 "unit": "A String", # The units for magnitude.
10577 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
10578 # or transparent, depending on the `color` field.
10581 "rgbColor": { # An RGB color. # The RGB color value.
10582 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
10583 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
10584 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
10588 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
10591 # Changing the link in an update request causes some other changes to the
10592 # text style of the range:
10594 # * When setting a link, the text foreground color will be updated to the
10595 # default link color and the text will be underlined. If these fields are
10596 # modified in the same request, those values will be used instead of the
10599 # also update the existing link to point to the new URL.
10602 # will separate the newline character(s) into their own text runs. The
10603 # link will be applied separately to the runs before and after the newline.
10604 # * Removing a link will update the text style of the range to match the
10605 # style of the preceding text (or the default text styles if the preceding
10606 # text is another link) unless different styles are being set in the same
10608 "headingId": "A String", # The ID of a heading in this document.
10610 "bookmarkId": "A String", # The ID of a bookmark in this document.
10612 "underline": True or False, # Whether or not the text is underlined.
10613 "bold": True or False, # Whether or not the text is rendered as bold.
10616 "suggestedBulletChanges": { # The suggested changes to this paragraph's bullet.
10618 … "bullet": { # Describes the bullet of a paragraph. # A Bullet that only includes the changes made
10619 # in this suggestion. This can be used along with the
10622 "nestingLevel": 42, # The nesting level of this paragraph in the list.
10623 "listId": "A String", # The ID of the list this paragraph belongs to.
10624 …"textStyle": { # Represents the styling that can be applied to text. # The paragraph specific text…
10627 # text style's parent depends on where the text style is defined:
10629 # * The TextStyle of text in a Paragraph
10630 # inherits from the paragraph's corresponding named style type.
10631 # * The TextStyle on a named style
10632 # inherits from the normal text named style.
10633 # * The TextStyle of the normal text named style inherits
10634 # from the default text style in the Docs editor.
10635 # * The TextStyle on a Paragraph element
10636 # that is contained in a table may inherit its text style from the table
10639 # If the text style does not inherit from a parent, unsetting fields will
10640 # revert the style to a value matching the defaults in the Docs editor.
10641 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
10642 # or transparent, depending on the `color` field.
10645 "rgbColor": { # An RGB color. # The RGB color value.
10646 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
10647 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
10648 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
10652 "italic": True or False, # Whether or not the text is italicized.
10653 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
10656 … # rendered in a smaller font size, computed based on the `font_size` field.
10657 # The `font_size` itself is not affected by changes in this field.
10658 "strikethrough": True or False, # Whether or not the text is struck through.
10659 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
10662 # `bold`, the `weighted_font_family` is applied first, then `bold`.
10669 "fontFamily": "A String", # The font family of the text.
10671 # The font family can be any font from the Font menu in Docs or from
10672 # [Google Fonts] (https://fonts.google.com/). If the font name is
10673 # unrecognized, the text is rendered in `Arial`.
10674 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
10675 … # `100` between `100` and `900`, inclusive. This range corresponds to the
10676 # numerical values described in the CSS 2.1 Specification,
10680 # The default value is `400` ("normal").
10682 … # The font weight makes up just one component of the rendered font weight.
10683 … # The rendered weight is determined by a combination of the `weight` and the
10686 # * If the text is bold and the weight is less than `400`, the rendered
10688 … # * If the text is bold and the weight is greater than or equal to `400` but
10689 # is less than `700`, the rendered weight is `700`.
10690 … # * If the weight is greater than or equal to `700`, the rendered weight is
10691 # equal to the weight.
10692 # * If the text is not bold, the rendered weight is equal to the weight.
10694 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
10695 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
10696 "magnitude": 3.14, # The magnitude.
10697 "unit": "A String", # The units for magnitude.
10699 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
10700 # or transparent, depending on the `color` field.
10703 "rgbColor": { # An RGB color. # The RGB color value.
10704 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
10705 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
10706 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
10710 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
10713 # Changing the link in an update request causes some other changes to the
10714 # text style of the range:
10716 # * When setting a link, the text foreground color will be updated to the
10717 … # default link color and the text will be underlined. If these fields are
10718 # modified in the same request, those values will be used instead of the
10721 # also update the existing link to point to the new URL.
10724 # will separate the newline character(s) into their own text runs. The
10725 … # link will be applied separately to the runs before and after the newline.
10726 # * Removing a link will update the text style of the range to match the
10727 … # style of the preceding text (or the default text styles if the preceding
10728 … # text is another link) unless different styles are being set in the same
10730 "headingId": "A String", # The ID of a heading in this document.
10732 "bookmarkId": "A String", # The ID of a bookmark in this document.
10734 "underline": True or False, # Whether or not the text is underlined.
10735 "bold": True or False, # Whether or not the text is rendered as bold.
10738 …te": { # A mask that indicates which of the fields on the base # A mask that indicates which of th…
10742 … "nestingLevelSuggested": True or False, # Indicates if there was a suggested change to the
10744 …hat indicates which of the fields on the base TextStyle have been changed in this suggestion. # A …
10759 … "listIdSuggested": True or False, # Indicates if there was a suggested change to the
10764 … "positionedObjectIds": [ # The IDs of the positioned objects tethered to this paragraph.
10767 …"suggestedParagraphStyleChanges": { # The suggested paragraph style changes to this paragraph, key…
10771 …tes which of the fields on the base ParagraphStyle have been changed in this suggestion. # A mask …
10792 … mask that indicates which of the fields on the base Shading have been changed in this # A mask th…
10795 …ckgroundColorSuggested": True or False, # Indicates if there was a suggested change to the Shading.
10799 # the changes made in this suggestion. This can be used along with the
10804 # A paragraph style's parent depends on where the paragraph style is defined:
10806 # * The ParagraphStyle on a Paragraph
10807 # inherits from the paragraph's corresponding named style type.
10808 # * The ParagraphStyle on a named style
10809 # inherits from the normal text named style.
10810 # * The ParagraphStyle of the normal text named style inherits
10811 # from the default paragraph style in the Docs editor.
10812 # * The ParagraphStyle on a Paragraph
10814 # the table style.
10816 # If the paragraph style does not inherit from a parent, unsetting fields will
10817 # revert the style to a value matching the defaults in the Docs editor.
10818 "spacingMode": "A String", # The spacing mode for the paragraph.
10819 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
10822 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
10823 # inherited from the parent.
10824 "magnitude": 3.14, # The magnitude.
10825 "unit": "A String", # The units for magnitude.
10827 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
10828 # page or column as the next paragraph if possible. If unset, the value is
10829 # inherited from the parent.
10830 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
10831 # is represented as 100.0. If unset, the value is inherited from the parent.
10832 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
10833 # is inherited from the parent.
10834 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
10835 # inherited from the parent.
10837 … # The bottom border is rendered when the paragraph below has different border
10841 # changes to a paragraph border the new border must be specified in
10843 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
10846 "rgbColor": { # An RGB color. # The RGB color value.
10847 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
10848 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
10849 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
10853 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
10854 "magnitude": 3.14, # The magnitude.
10855 "unit": "A String", # The units for magnitude.
10857 "dashStyle": "A String", # The dash style of the border.
10858 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
10859 "magnitude": 3.14, # The magnitude.
10860 "unit": "A String", # The units for magnitude.
10863 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
10864 # the start of the text, based on the current paragraph direction. If unset,
10865 # the value is inherited from the parent.
10866 "magnitude": 3.14, # The magnitude.
10867 "unit": "A String", # The units for magnitude.
10869 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
10870 # If unset, the value is inherited from the parent.
10872 # The between border is rendered when the adjacent paragraph has the same
10876 # changes to a paragraph border the new border must be specified in
10878 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
10881 "rgbColor": { # An RGB color. # The RGB color value.
10882 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
10883 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
10884 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
10888 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
10889 "magnitude": 3.14, # The magnitude.
10890 "unit": "A String", # The units for magnitude.
10892 "dashStyle": "A String", # The dash style of the border.
10893 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
10894 "magnitude": 3.14, # The magnitude.
10895 "unit": "A String", # The units for magnitude.
10898 "namedStyleType": "A String", # The named style type of the paragraph.
10900 # Since updating the named style type affects other properties within
10901 … # ParagraphStyle, the named style type is applied before the other properties
10903 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
10904 # from the parent.
10907 # changes to a paragraph border the new border must be specified in
10909 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
10912 "rgbColor": { # An RGB color. # The RGB color value.
10913 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
10914 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
10915 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
10919 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
10920 "magnitude": 3.14, # The magnitude.
10921 "unit": "A String", # The units for magnitude.
10923 "dashStyle": "A String", # The dash style of the border.
10924 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
10925 "magnitude": 3.14, # The magnitude.
10926 "unit": "A String", # The units for magnitude.
10929 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
10930 # the end of the text, based on the current paragraph direction. If unset,
10931 # the value is inherited from the parent.
10932 "magnitude": 3.14, # The magnitude.
10933 "unit": "A String", # The units for magnitude.
10935 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
10936 # from the parent.
10939 # changes to a paragraph border the new border must be specified in
10941 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
10944 "rgbColor": { # An RGB color. # The RGB color value.
10945 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
10946 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
10947 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
10951 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
10952 "magnitude": 3.14, # The magnitude.
10953 "unit": "A String", # The units for magnitude.
10955 "dashStyle": "A String", # The dash style of the border.
10956 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
10957 "magnitude": 3.14, # The magnitude.
10958 "unit": "A String", # The units for magnitude.
10961 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
10962 # inherited from the parent.
10963 "magnitude": 3.14, # The magnitude.
10964 "unit": "A String", # The units for magnitude.
10966 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
10968 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
10970 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
10973 "rgbColor": { # An RGB color. # The RGB color value.
10974 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
10975 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
10976 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
10981 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
10982 # from the parent.
10984 # The top border is rendered when the paragraph above has different border
10988 # changes to a paragraph border the new border must be specified in
10990 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
10993 "rgbColor": { # An RGB color. # The RGB color value.
10994 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
10995 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
10996 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
11000 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
11001 "magnitude": 3.14, # The magnitude.
11002 "unit": "A String", # The units for magnitude.
11004 "dashStyle": "A String", # The dash style of the border.
11005 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
11006 "magnitude": 3.14, # The magnitude.
11007 "unit": "A String", # The units for magnitude.
11010 … "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
11013 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
11014 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
11015 "magnitude": 3.14, # The magnitude.
11016 "unit": "A String", # The units for magnitude.
11020 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
11021 # the value is inherited from the parent.
11022 "magnitude": 3.14, # The magnitude.
11023 "unit": "A String", # The units for magnitude.
11025 "alignment": "A String", # The text alignment for this paragraph.
11026 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
11027 # column if possible. If unset, the value is inherited from the parent.
11031 … "paragraphStyle": { # Styles that apply to a whole paragraph. # The style of this paragraph.
11034 # A paragraph style's parent depends on where the paragraph style is defined:
11036 # * The ParagraphStyle on a Paragraph
11037 # inherits from the paragraph's corresponding named style type.
11038 # * The ParagraphStyle on a named style
11039 # inherits from the normal text named style.
11040 # * The ParagraphStyle of the normal text named style inherits
11041 # from the default paragraph style in the Docs editor.
11042 # * The ParagraphStyle on a Paragraph
11044 # the table style.
11046 # If the paragraph style does not inherit from a parent, unsetting fields will
11047 # revert the style to a value matching the defaults in the Docs editor.
11048 "spacingMode": "A String", # The spacing mode for the paragraph.
11049 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
11052 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
11053 # inherited from the parent.
11054 "magnitude": 3.14, # The magnitude.
11055 "unit": "A String", # The units for magnitude.
11057 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
11058 # page or column as the next paragraph if possible. If unset, the value is
11059 # inherited from the parent.
11060 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
11061 # is represented as 100.0. If unset, the value is inherited from the parent.
11062 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
11063 # is inherited from the parent.
11064 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
11065 # inherited from the parent.
11067 # The bottom border is rendered when the paragraph below has different border
11071 # changes to a paragraph border the new border must be specified in
11073 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
11076 "rgbColor": { # An RGB color. # The RGB color value.
11077 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
11078 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
11079 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
11083 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
11084 "magnitude": 3.14, # The magnitude.
11085 "unit": "A String", # The units for magnitude.
11087 "dashStyle": "A String", # The dash style of the border.
11088 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
11089 "magnitude": 3.14, # The magnitude.
11090 "unit": "A String", # The units for magnitude.
11093 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
11094 # the start of the text, based on the current paragraph direction. If unset,
11095 # the value is inherited from the parent.
11096 "magnitude": 3.14, # The magnitude.
11097 "unit": "A String", # The units for magnitude.
11099 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
11100 # If unset, the value is inherited from the parent.
11102 # The between border is rendered when the adjacent paragraph has the same
11106 # changes to a paragraph border the new border must be specified in
11108 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
11111 "rgbColor": { # An RGB color. # The RGB color value.
11112 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
11113 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
11114 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
11118 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
11119 "magnitude": 3.14, # The magnitude.
11120 "unit": "A String", # The units for magnitude.
11122 "dashStyle": "A String", # The dash style of the border.
11123 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
11124 "magnitude": 3.14, # The magnitude.
11125 "unit": "A String", # The units for magnitude.
11128 "namedStyleType": "A String", # The named style type of the paragraph.
11130 # Since updating the named style type affects other properties within
11131 # ParagraphStyle, the named style type is applied before the other properties
11133 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
11134 # from the parent.
11137 # changes to a paragraph border the new border must be specified in
11139 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
11142 "rgbColor": { # An RGB color. # The RGB color value.
11143 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
11144 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
11145 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
11149 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
11150 "magnitude": 3.14, # The magnitude.
11151 "unit": "A String", # The units for magnitude.
11153 "dashStyle": "A String", # The dash style of the border.
11154 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
11155 "magnitude": 3.14, # The magnitude.
11156 "unit": "A String", # The units for magnitude.
11159 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
11160 # the end of the text, based on the current paragraph direction. If unset,
11161 # the value is inherited from the parent.
11162 "magnitude": 3.14, # The magnitude.
11163 "unit": "A String", # The units for magnitude.
11165 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
11166 # from the parent.
11169 # changes to a paragraph border the new border must be specified in
11171 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
11174 "rgbColor": { # An RGB color. # The RGB color value.
11175 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
11176 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
11177 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
11181 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
11182 "magnitude": 3.14, # The magnitude.
11183 "unit": "A String", # The units for magnitude.
11185 "dashStyle": "A String", # The dash style of the border.
11186 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
11187 "magnitude": 3.14, # The magnitude.
11188 "unit": "A String", # The units for magnitude.
11191 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
11192 # inherited from the parent.
11193 "magnitude": 3.14, # The magnitude.
11194 "unit": "A String", # The units for magnitude.
11196 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
11198 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
11200 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
11203 "rgbColor": { # An RGB color. # The RGB color value.
11204 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
11205 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
11206 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
11211 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
11212 # from the parent.
11214 # The top border is rendered when the paragraph above has different border
11218 # changes to a paragraph border the new border must be specified in
11220 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
11223 "rgbColor": { # An RGB color. # The RGB color value.
11224 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
11225 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
11226 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
11230 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
11231 "magnitude": 3.14, # The magnitude.
11232 "unit": "A String", # The units for magnitude.
11234 "dashStyle": "A String", # The dash style of the border.
11235 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
11236 "magnitude": 3.14, # The magnitude.
11237 "unit": "A String", # The units for magnitude.
11240 … "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
11243 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
11244 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
11245 "magnitude": 3.14, # The magnitude.
11246 "unit": "A String", # The units for magnitude.
11250 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
11251 # the value is inherited from the parent.
11252 "magnitude": 3.14, # The magnitude.
11253 "unit": "A String", # The units for magnitude.
11255 "alignment": "A String", # The text alignment for this paragraph.
11256 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
11257 # column if possible. If unset, the value is inherited from the parent.
11262 "rows": 42, # Number of rows in the table.
11263 "tableStyle": { # Styles that apply to a table. # The style of the table.
11264 "tableColumnProperties": [ # The properties of each column.
11267 # HTML. So the properties for a row can be found on the row's
11269 { # The properties of a column in a table.
11270 …th": { # A magnitude in a single direction in the specified units. # The width of the column. Set …
11272 "magnitude": 3.14, # The magnitude.
11273 "unit": "A String", # The units for magnitude.
11275 "widthType": "A String", # The width type of the column.
11279 "suggestedInsertionIds": [ # The suggested insertion IDs. A Table may have
11284 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
11288 "tableRows": [ # The contents and style of each row.
11289 { # The contents and style of a row in a Table.
11290 … "endIndex": 42, # The zero-based end index of this row, exclusive, in UTF-16 code units.
11291 "tableCells": [ # The contents and style of each cell in this row.
11294 # different number of cells than other rows in the same table.
11295 { # The contents and style of a cell in a Table.
11296 … "endIndex": 42, # The zero-based end index of this cell, exclusive, in UTF-16 code units.
11297 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
11301 "suggestedInsertionIds": [ # The suggested insertion IDs. A TableCell
11306 "content": [ # The content of the cell.
11309 "tableCellStyle": { # The style of a TableCell. # The style of the cell.
11312 # A table cell style can inherit from the table's style.
11313 …ngBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of t…
11314 "magnitude": 3.14, # The magnitude.
11315 "unit": "A String", # The units for magnitude.
11317 … "borderBottom": { # A border around a table cell. # The bottom border of the cell.
11318 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
11321 "rgbColor": { # An RGB color. # The RGB color value.
11322 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
11323 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
11324 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
11328 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
11329 "magnitude": 3.14, # The magnitude.
11330 "unit": "A String", # The units for magnitude.
11332 "dashStyle": "A String", # The dash style of the border.
11334 …ddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of th…
11335 "magnitude": 3.14, # The magnitude.
11336 "unit": "A String", # The units for magnitude.
11338 …paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of th…
11339 "magnitude": 3.14, # The magnitude.
11340 "unit": "A String", # The units for magnitude.
11342 … "borderLeft": { # A border around a table cell. # The left border of the cell.
11343 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
11346 "rgbColor": { # An RGB color. # The RGB color value.
11347 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
11348 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
11349 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
11353 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
11354 "magnitude": 3.14, # The magnitude.
11355 "unit": "A String", # The units for magnitude.
11357 "dashStyle": "A String", # The dash style of the border.
11359 "columnSpan": 42, # The column span of the cell. This property is read-only.
11360 …# A color that can either be fully opaque or fully transparent. # The background color of the cell.
11363 "rgbColor": { # An RGB color. # The RGB color value.
11364 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
11365 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
11366 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
11370 … "borderRight": { # A border around a table cell. # The right border of the cell.
11371 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
11374 "rgbColor": { # An RGB color. # The RGB color value.
11375 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
11376 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
11377 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
11381 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
11382 "magnitude": 3.14, # The magnitude.
11383 "unit": "A String", # The units for magnitude.
11385 "dashStyle": "A String", # The dash style of the border.
11387 "rowSpan": 42, # The row span of the cell. This property is read-only.
11388 …"contentAlignment": "A String", # The alignment of the content in the table cell. The default alig…
11389 … # matches the alignment for newly created table cells in the Docs editor.
11390 …dingRight": { # A magnitude in a single direction in the specified units. # The right padding of t…
11391 "magnitude": 3.14, # The magnitude.
11392 "unit": "A String", # The units for magnitude.
11394 "borderTop": { # A border around a table cell. # The top border of the cell.
11395 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
11398 "rgbColor": { # An RGB color. # The RGB color value.
11399 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
11400 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
11401 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
11405 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
11406 "magnitude": 3.14, # The magnitude.
11407 "unit": "A String", # The units for magnitude.
11409 "dashStyle": "A String", # The dash style of the border.
11412 … "startIndex": 42, # The zero-based start index of this cell, in UTF-16 code units.
11413 …"suggestedTableCellStyleChanges": { # The suggested changes to the table cell style, keyed by sugg…
11415 … "tableCellStyle": { # The style of a TableCell. # A TableCellStyle that only includes
11416 # the changes made in this suggestion. This can be used along with the
11421 # A table cell style can inherit from the table's style.
11422 …ngBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of t…
11423 "magnitude": 3.14, # The magnitude.
11424 "unit": "A String", # The units for magnitude.
11426 … "borderBottom": { # A border around a table cell. # The bottom border of the cell.
11427 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
11430 "rgbColor": { # An RGB color. # The RGB color value.
11431 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
11432 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
11433 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
11437 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
11438 "magnitude": 3.14, # The magnitude.
11439 "unit": "A String", # The units for magnitude.
11441 "dashStyle": "A String", # The dash style of the border.
11443 …ddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of th…
11444 "magnitude": 3.14, # The magnitude.
11445 "unit": "A String", # The units for magnitude.
11447 …paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of th…
11448 "magnitude": 3.14, # The magnitude.
11449 "unit": "A String", # The units for magnitude.
11451 … "borderLeft": { # A border around a table cell. # The left border of the cell.
11452 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
11455 "rgbColor": { # An RGB color. # The RGB color value.
11456 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
11457 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
11458 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
11462 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
11463 "magnitude": 3.14, # The magnitude.
11464 "unit": "A String", # The units for magnitude.
11466 "dashStyle": "A String", # The dash style of the border.
11468 … "columnSpan": 42, # The column span of the cell. This property is read-only.
11469 …# A color that can either be fully opaque or fully transparent. # The background color of the cell.
11472 "rgbColor": { # An RGB color. # The RGB color value.
11473 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
11474 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
11475 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
11479 … "borderRight": { # A border around a table cell. # The right border of the cell.
11480 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
11483 "rgbColor": { # An RGB color. # The RGB color value.
11484 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
11485 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
11486 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
11490 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
11491 "magnitude": 3.14, # The magnitude.
11492 "unit": "A String", # The units for magnitude.
11494 "dashStyle": "A String", # The dash style of the border.
11496 "rowSpan": 42, # The row span of the cell. This property is read-only.
11497 …"contentAlignment": "A String", # The alignment of the content in the table cell. The default alig…
11498 … # matches the alignment for newly created table cells in the Docs editor.
11499 …dingRight": { # A magnitude in a single direction in the specified units. # The right padding of t…
11500 "magnitude": 3.14, # The magnitude.
11501 "unit": "A String", # The units for magnitude.
11503 … "borderTop": { # A border around a table cell. # The top border of the cell.
11504 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
11507 "rgbColor": { # An RGB color. # The RGB color value.
11508 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
11509 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
11510 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
11514 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
11515 "magnitude": 3.14, # The magnitude.
11516 "unit": "A String", # The units for magnitude.
11518 "dashStyle": "A String", # The dash style of the border.
11521 …tes which of the fields on the base TableCellStyle have been changed in this suggestion. # A mask …
11540 … "tableRowStyle": { # Styles that apply to a table row. # The style of the table row.
11541 …agnitude in a single direction in the specified units. # The minimum height of the row. The row wi…
11542 # at a height equal to or greater than this value in order to show all the
11543 # content in the row's cells.
11544 "magnitude": 3.14, # The magnitude.
11545 "unit": "A String", # The units for magnitude.
11548 "suggestedInsertionIds": [ # The suggested insertion IDs. A TableRow
11553 "startIndex": 42, # The zero-based start index of this row, in UTF-16 code units.
11554 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
11558 …"suggestedTableRowStyleChanges": { # The suggested style changes to this row, keyed by suggestion …
11562 # the changes made in this suggestion. This can be used along with the
11565 …agnitude in a single direction in the specified units. # The minimum height of the row. The row wi…
11566 … # at a height equal to or greater than this value in order to show all the
11567 # content in the row's cells.
11568 "magnitude": 3.14, # The magnitude.
11569 "unit": "A String", # The units for magnitude.
11572 …ates which of the fields on the base TableRowStyle have been changed in this suggestion. # A mask …
11580 "columns": 42, # Number of columns in the table.
11587 "footerId": "A String", # The ID of the footer.
11590 "footnotes": { # The footnotes in the document, keyed by footnote ID.
11592 "content": [ # The contents of the footnote.
11594 # The indexes for a footnote's content begin at zero.
11595 { # A StructuralElement describes content that provides structure to the
11597 … "endIndex": 42, # The zero-based end index of this structural element, exclusive, in UTF-16
11600 # section break. A section is a range of content which has the same
11602 # the start of a new section, and the section style applies to the section
11603 # after the section break.
11605 # The document body always begins with a section break.
11606 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
11610 …"sectionStyle": { # The styling that applies to a section. # The style of the section after this s…
11611 …"contentDirection": "A String", # The content direction of this section. If unset, the value defau…
11613 "columnProperties": [ # The section's columns properties.
11615 # If empty, the section contains one column with the default properties in
11616 # the Docs editor.
11618 … "width": { # A magnitude in a single direction in the specified units. # The width of the column.
11619 "magnitude": 3.14, # The magnitude.
11620 "unit": "A String", # The units for magnitude.
11622 …ingEnd": { # A magnitude in a single direction in the specified units. # The padding at the end of…
11623 "magnitude": 3.14, # The magnitude.
11624 "unit": "A String", # The units for magnitude.
11628 "columnSeparatorStyle": "A String", # The style of column separators.
11630 # This style can be set even when there is one column in the section.
11632 …"suggestedInsertionIds": [ # The suggested insertion IDs. A SectionBreak may have multiple inserti…
11640 "content": [ # The content of the table of contents.
11643 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
11647 …"suggestedInsertionIds": [ # The suggested insertion IDs. A TableOfContents may have multiple inse…
11653 … "startIndex": 42, # The zero-based start index of this structural element, in UTF-16 code
11658 "elements": [ # The content of the paragraph broken down into its component parts.
11661 … "endIndex": 42, # The zero-base end index of this paragraph element, exclusive, in UTF-16
11665 "suggestedInsertionIds": [ # The suggested insertion IDs. A Equation
11670 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
11676 # column break. A column break makes the subsequent text start at the top of
11677 # the next column.
11678 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Colu…
11680 # Similar to text content, like text runs and footnote references, the text
11681 … # style of a column break can affect content layout as well as the styling of
11685 # text style's parent depends on where the text style is defined:
11687 # * The TextStyle of text in a Paragraph
11688 # inherits from the paragraph's corresponding named style type.
11689 # * The TextStyle on a named style
11690 # inherits from the normal text named style.
11691 # * The TextStyle of the normal text named style inherits
11692 # from the default text style in the Docs editor.
11693 # * The TextStyle on a Paragraph element
11694 # that is contained in a table may inherit its text style from the table
11697 # If the text style does not inherit from a parent, unsetting fields will
11698 # revert the style to a value matching the defaults in the Docs editor.
11699 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
11700 # or transparent, depending on the `color` field.
11703 "rgbColor": { # An RGB color. # The RGB color value.
11704 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
11705 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
11706 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
11710 "italic": True or False, # Whether or not the text is italicized.
11711 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
11714 … # rendered in a smaller font size, computed based on the `font_size` field.
11715 # The `font_size` itself is not affected by changes in this field.
11716 "strikethrough": True or False, # Whether or not the text is struck through.
11717 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
11720 # `bold`, the `weighted_font_family` is applied first, then `bold`.
11727 "fontFamily": "A String", # The font family of the text.
11729 # The font family can be any font from the Font menu in Docs or from
11730 # [Google Fonts] (https://fonts.google.com/). If the font name is
11731 # unrecognized, the text is rendered in `Arial`.
11732 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
11733 … # `100` between `100` and `900`, inclusive. This range corresponds to the
11734 # numerical values described in the CSS 2.1 Specification,
11738 # The default value is `400` ("normal").
11740 … # The font weight makes up just one component of the rendered font weight.
11741 … # The rendered weight is determined by a combination of the `weight` and the
11744 # * If the text is bold and the weight is less than `400`, the rendered
11746 … # * If the text is bold and the weight is greater than or equal to `400` but
11747 # is less than `700`, the rendered weight is `700`.
11748 … # * If the weight is greater than or equal to `700`, the rendered weight is
11749 # equal to the weight.
11750 # * If the text is not bold, the rendered weight is equal to the weight.
11752 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
11753 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
11754 "magnitude": 3.14, # The magnitude.
11755 "unit": "A String", # The units for magnitude.
11757 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
11758 # or transparent, depending on the `color` field.
11761 "rgbColor": { # An RGB color. # The RGB color value.
11762 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
11763 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
11764 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
11768 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
11771 # Changing the link in an update request causes some other changes to the
11772 # text style of the range:
11774 # * When setting a link, the text foreground color will be updated to the
11775 … # default link color and the text will be underlined. If these fields are
11776 # modified in the same request, those values will be used instead of the
11779 # also update the existing link to point to the new URL.
11782 # will separate the newline character(s) into their own text runs. The
11783 … # link will be applied separately to the runs before and after the newline.
11784 # * Removing a link will update the text style of the range to match the
11785 … # style of the preceding text (or the default text styles if the preceding
11786 … # text is another link) unless different styles are being set in the same
11788 "headingId": "A String", # The ID of a heading in this document.
11790 "bookmarkId": "A String", # The ID of a bookmark in this document.
11792 "underline": True or False, # Whether or not the text is underlined.
11793 "bold": True or False, # Whether or not the text is rendered as bold.
11795 …"suggestedInsertionIds": [ # The suggested insertion IDs. A ColumnBreak may have multiple insertio…
11800 …"suggestedTextStyleChanges": { # The suggested text style changes to this ColumnBreak, keyed by su…
11803 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
11804 # the changes made in this suggestion. This can be used along with the
11809 # text style's parent depends on where the text style is defined:
11811 # * The TextStyle of text in a Paragraph
11812 # inherits from the paragraph's corresponding named style type.
11813 # * The TextStyle on a named style
11814 # inherits from the normal text named style.
11815 # * The TextStyle of the normal text named style inherits
11816 # from the default text style in the Docs editor.
11817 # * The TextStyle on a Paragraph element
11818 … # that is contained in a table may inherit its text style from the table
11821 … # If the text style does not inherit from a parent, unsetting fields will
11822 # revert the style to a value matching the defaults in the Docs editor.
11823 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
11824 # or transparent, depending on the `color` field.
11827 "rgbColor": { # An RGB color. # The RGB color value.
11828 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
11829 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
11830 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
11834 "italic": True or False, # Whether or not the text is italicized.
11835 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
11838 … # rendered in a smaller font size, computed based on the `font_size` field.
11839 # The `font_size` itself is not affected by changes in this field.
11840 … "strikethrough": True or False, # Whether or not the text is struck through.
11841 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
11844 # `bold`, the `weighted_font_family` is applied first, then `bold`.
11851 "fontFamily": "A String", # The font family of the text.
11853 # The font family can be any font from the Font menu in Docs or from
11854 # [Google Fonts] (https://fonts.google.com/). If the font name is
11855 # unrecognized, the text is rendered in `Arial`.
11856 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
11857 … # `100` between `100` and `900`, inclusive. This range corresponds to the
11858 # numerical values described in the CSS 2.1 Specification,
11862 # The default value is `400` ("normal").
11864 … # The font weight makes up just one component of the rendered font weight.
11865 … # The rendered weight is determined by a combination of the `weight` and the
11868 … # * If the text is bold and the weight is less than `400`, the rendered
11870 … # * If the text is bold and the weight is greater than or equal to `400` but
11871 # is less than `700`, the rendered weight is `700`.
11872 … # * If the weight is greater than or equal to `700`, the rendered weight is
11873 # equal to the weight.
11874 … # * If the text is not bold, the rendered weight is equal to the weight.
11876 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
11877 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
11878 "magnitude": 3.14, # The magnitude.
11879 "unit": "A String", # The units for magnitude.
11881 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
11882 # or transparent, depending on the `color` field.
11885 "rgbColor": { # An RGB color. # The RGB color value.
11886 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
11887 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
11888 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
11892 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
11895 … # Changing the link in an update request causes some other changes to the
11896 # text style of the range:
11898 … # * When setting a link, the text foreground color will be updated to the
11899 … # default link color and the text will be underlined. If these fields are
11900 … # modified in the same request, those values will be used instead of the
11903 # also update the existing link to point to the new URL.
11906 … # will separate the newline character(s) into their own text runs. The
11907 … # link will be applied separately to the runs before and after the newline.
11908 … # * Removing a link will update the text style of the range to match the
11909 … # style of the preceding text (or the default text styles if the preceding
11910 … # text is another link) unless different styles are being set in the same
11912 "headingId": "A String", # The ID of a heading in this document.
11914 "bookmarkId": "A String", # The ID of a bookmark in this document.
11916 "underline": True or False, # Whether or not the text is underlined.
11917 "bold": True or False, # Whether or not the text is rendered as bold.
11919 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
11935 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
11940 … "startIndex": 42, # The zero-based start index of this paragraph element, in UTF-16 code units.
11942 # page break. A page break makes the subsequent text start at the top of the
11944 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Page…
11946 # Similar to text content, like text runs and footnote references, the text
11947 # style of a page break can affect content layout as well as the styling of
11951 # text style's parent depends on where the text style is defined:
11953 # * The TextStyle of text in a Paragraph
11954 # inherits from the paragraph's corresponding named style type.
11955 # * The TextStyle on a named style
11956 # inherits from the normal text named style.
11957 # * The TextStyle of the normal text named style inherits
11958 # from the default text style in the Docs editor.
11959 # * The TextStyle on a Paragraph element
11960 # that is contained in a table may inherit its text style from the table
11963 # If the text style does not inherit from a parent, unsetting fields will
11964 # revert the style to a value matching the defaults in the Docs editor.
11965 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
11966 # or transparent, depending on the `color` field.
11969 "rgbColor": { # An RGB color. # The RGB color value.
11970 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
11971 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
11972 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
11976 "italic": True or False, # Whether or not the text is italicized.
11977 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
11980 … # rendered in a smaller font size, computed based on the `font_size` field.
11981 # The `font_size` itself is not affected by changes in this field.
11982 "strikethrough": True or False, # Whether or not the text is struck through.
11983 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
11986 # `bold`, the `weighted_font_family` is applied first, then `bold`.
11993 "fontFamily": "A String", # The font family of the text.
11995 # The font family can be any font from the Font menu in Docs or from
11996 # [Google Fonts] (https://fonts.google.com/). If the font name is
11997 # unrecognized, the text is rendered in `Arial`.
11998 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
11999 … # `100` between `100` and `900`, inclusive. This range corresponds to the
12000 # numerical values described in the CSS 2.1 Specification,
12004 # The default value is `400` ("normal").
12006 … # The font weight makes up just one component of the rendered font weight.
12007 … # The rendered weight is determined by a combination of the `weight` and the
12010 # * If the text is bold and the weight is less than `400`, the rendered
12012 … # * If the text is bold and the weight is greater than or equal to `400` but
12013 # is less than `700`, the rendered weight is `700`.
12014 … # * If the weight is greater than or equal to `700`, the rendered weight is
12015 # equal to the weight.
12016 # * If the text is not bold, the rendered weight is equal to the weight.
12018 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
12019 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
12020 "magnitude": 3.14, # The magnitude.
12021 "unit": "A String", # The units for magnitude.
12023 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
12024 # or transparent, depending on the `color` field.
12027 "rgbColor": { # An RGB color. # The RGB color value.
12028 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
12029 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
12030 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
12034 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
12037 # Changing the link in an update request causes some other changes to the
12038 # text style of the range:
12040 # * When setting a link, the text foreground color will be updated to the
12041 … # default link color and the text will be underlined. If these fields are
12042 # modified in the same request, those values will be used instead of the
12045 # also update the existing link to point to the new URL.
12048 # will separate the newline character(s) into their own text runs. The
12049 … # link will be applied separately to the runs before and after the newline.
12050 # * Removing a link will update the text style of the range to match the
12051 … # style of the preceding text (or the default text styles if the preceding
12052 … # text is another link) unless different styles are being set in the same
12054 "headingId": "A String", # The ID of a heading in this document.
12056 "bookmarkId": "A String", # The ID of a bookmark in this document.
12058 "underline": True or False, # Whether or not the text is underlined.
12059 "bold": True or False, # Whether or not the text is rendered as bold.
12061 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
12065 …"suggestedTextStyleChanges": { # The suggested text style changes to this PageBreak, keyed by sugg…
12067 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
12068 # the changes made in this suggestion. This can be used along with the
12073 # text style's parent depends on where the text style is defined:
12075 # * The TextStyle of text in a Paragraph
12076 # inherits from the paragraph's corresponding named style type.
12077 # * The TextStyle on a named style
12078 # inherits from the normal text named style.
12079 # * The TextStyle of the normal text named style inherits
12080 # from the default text style in the Docs editor.
12081 # * The TextStyle on a Paragraph element
12082 … # that is contained in a table may inherit its text style from the table
12085 … # If the text style does not inherit from a parent, unsetting fields will
12086 # revert the style to a value matching the defaults in the Docs editor.
12087 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
12088 # or transparent, depending on the `color` field.
12091 "rgbColor": { # An RGB color. # The RGB color value.
12092 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
12093 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
12094 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
12098 "italic": True or False, # Whether or not the text is italicized.
12099 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
12102 … # rendered in a smaller font size, computed based on the `font_size` field.
12103 # The `font_size` itself is not affected by changes in this field.
12104 … "strikethrough": True or False, # Whether or not the text is struck through.
12105 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
12108 # `bold`, the `weighted_font_family` is applied first, then `bold`.
12115 "fontFamily": "A String", # The font family of the text.
12117 # The font family can be any font from the Font menu in Docs or from
12118 # [Google Fonts] (https://fonts.google.com/). If the font name is
12119 # unrecognized, the text is rendered in `Arial`.
12120 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
12121 … # `100` between `100` and `900`, inclusive. This range corresponds to the
12122 # numerical values described in the CSS 2.1 Specification,
12126 # The default value is `400` ("normal").
12128 … # The font weight makes up just one component of the rendered font weight.
12129 … # The rendered weight is determined by a combination of the `weight` and the
12132 … # * If the text is bold and the weight is less than `400`, the rendered
12134 … # * If the text is bold and the weight is greater than or equal to `400` but
12135 # is less than `700`, the rendered weight is `700`.
12136 … # * If the weight is greater than or equal to `700`, the rendered weight is
12137 # equal to the weight.
12138 … # * If the text is not bold, the rendered weight is equal to the weight.
12140 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
12141 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
12142 "magnitude": 3.14, # The magnitude.
12143 "unit": "A String", # The units for magnitude.
12145 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
12146 # or transparent, depending on the `color` field.
12149 "rgbColor": { # An RGB color. # The RGB color value.
12150 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
12151 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
12152 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
12156 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
12159 … # Changing the link in an update request causes some other changes to the
12160 # text style of the range:
12162 … # * When setting a link, the text foreground color will be updated to the
12163 … # default link color and the text will be underlined. If these fields are
12164 … # modified in the same request, those values will be used instead of the
12167 # also update the existing link to point to the new URL.
12170 … # will separate the newline character(s) into their own text runs. The
12171 … # link will be applied separately to the runs before and after the newline.
12172 … # * Removing a link will update the text style of the range to match the
12173 … # style of the preceding text (or the default text styles if the preceding
12174 … # text is another link) unless different styles are being set in the same
12176 "headingId": "A String", # The ID of a heading in this document.
12178 "bookmarkId": "A String", # The ID of a bookmark in this document.
12180 "underline": True or False, # Whether or not the text is underlined.
12181 "bold": True or False, # Whether or not the text is rendered as bold.
12183 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
12199 "suggestedInsertionIds": [ # The suggested insertion IDs. A PageBreak
12207 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Hori…
12209 # Similar to text content, like text runs and footnote references, the text
12210 … # style of a horizontal rule can affect content layout as well as the styling
12214 # text style's parent depends on where the text style is defined:
12216 # * The TextStyle of text in a Paragraph
12217 # inherits from the paragraph's corresponding named style type.
12218 # * The TextStyle on a named style
12219 # inherits from the normal text named style.
12220 # * The TextStyle of the normal text named style inherits
12221 # from the default text style in the Docs editor.
12222 # * The TextStyle on a Paragraph element
12223 # that is contained in a table may inherit its text style from the table
12226 # If the text style does not inherit from a parent, unsetting fields will
12227 # revert the style to a value matching the defaults in the Docs editor.
12228 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
12229 # or transparent, depending on the `color` field.
12232 "rgbColor": { # An RGB color. # The RGB color value.
12233 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
12234 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
12235 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
12239 "italic": True or False, # Whether or not the text is italicized.
12240 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
12243 … # rendered in a smaller font size, computed based on the `font_size` field.
12244 # The `font_size` itself is not affected by changes in this field.
12245 "strikethrough": True or False, # Whether or not the text is struck through.
12246 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
12249 # `bold`, the `weighted_font_family` is applied first, then `bold`.
12256 "fontFamily": "A String", # The font family of the text.
12258 # The font family can be any font from the Font menu in Docs or from
12259 # [Google Fonts] (https://fonts.google.com/). If the font name is
12260 # unrecognized, the text is rendered in `Arial`.
12261 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
12262 … # `100` between `100` and `900`, inclusive. This range corresponds to the
12263 # numerical values described in the CSS 2.1 Specification,
12267 # The default value is `400` ("normal").
12269 … # The font weight makes up just one component of the rendered font weight.
12270 … # The rendered weight is determined by a combination of the `weight` and the
12273 # * If the text is bold and the weight is less than `400`, the rendered
12275 … # * If the text is bold and the weight is greater than or equal to `400` but
12276 # is less than `700`, the rendered weight is `700`.
12277 … # * If the weight is greater than or equal to `700`, the rendered weight is
12278 # equal to the weight.
12279 # * If the text is not bold, the rendered weight is equal to the weight.
12281 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
12282 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
12283 "magnitude": 3.14, # The magnitude.
12284 "unit": "A String", # The units for magnitude.
12286 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
12287 # or transparent, depending on the `color` field.
12290 "rgbColor": { # An RGB color. # The RGB color value.
12291 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
12292 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
12293 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
12297 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
12300 # Changing the link in an update request causes some other changes to the
12301 # text style of the range:
12303 # * When setting a link, the text foreground color will be updated to the
12304 … # default link color and the text will be underlined. If these fields are
12305 # modified in the same request, those values will be used instead of the
12308 # also update the existing link to point to the new URL.
12311 # will separate the newline character(s) into their own text runs. The
12312 … # link will be applied separately to the runs before and after the newline.
12313 # * Removing a link will update the text style of the range to match the
12314 … # style of the preceding text (or the default text styles if the preceding
12315 … # text is another link) unless different styles are being set in the same
12317 "headingId": "A String", # The ID of a heading in this document.
12319 "bookmarkId": "A String", # The ID of a bookmark in this document.
12321 "underline": True or False, # Whether or not the text is underlined.
12322 "bold": True or False, # Whether or not the text is rendered as bold.
12324 …"suggestedInsertionIds": [ # The suggested insertion IDs. A HorizontalRule may have multiple inser…
12329 … "suggestedTextStyleChanges": { # The suggested text style changes to this HorizontalRule, keyed by
12332 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
12333 # the changes made in this suggestion. This can be used along with the
12338 # text style's parent depends on where the text style is defined:
12340 # * The TextStyle of text in a Paragraph
12341 # inherits from the paragraph's corresponding named style type.
12342 # * The TextStyle on a named style
12343 # inherits from the normal text named style.
12344 # * The TextStyle of the normal text named style inherits
12345 # from the default text style in the Docs editor.
12346 # * The TextStyle on a Paragraph element
12347 … # that is contained in a table may inherit its text style from the table
12350 … # If the text style does not inherit from a parent, unsetting fields will
12351 # revert the style to a value matching the defaults in the Docs editor.
12352 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
12353 # or transparent, depending on the `color` field.
12356 "rgbColor": { # An RGB color. # The RGB color value.
12357 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
12358 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
12359 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
12363 "italic": True or False, # Whether or not the text is italicized.
12364 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
12367 … # rendered in a smaller font size, computed based on the `font_size` field.
12368 # The `font_size` itself is not affected by changes in this field.
12369 … "strikethrough": True or False, # Whether or not the text is struck through.
12370 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
12373 # `bold`, the `weighted_font_family` is applied first, then `bold`.
12380 "fontFamily": "A String", # The font family of the text.
12382 # The font family can be any font from the Font menu in Docs or from
12383 # [Google Fonts] (https://fonts.google.com/). If the font name is
12384 # unrecognized, the text is rendered in `Arial`.
12385 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
12386 … # `100` between `100` and `900`, inclusive. This range corresponds to the
12387 # numerical values described in the CSS 2.1 Specification,
12391 # The default value is `400` ("normal").
12393 … # The font weight makes up just one component of the rendered font weight.
12394 … # The rendered weight is determined by a combination of the `weight` and the
12397 … # * If the text is bold and the weight is less than `400`, the rendered
12399 … # * If the text is bold and the weight is greater than or equal to `400` but
12400 # is less than `700`, the rendered weight is `700`.
12401 … # * If the weight is greater than or equal to `700`, the rendered weight is
12402 # equal to the weight.
12403 … # * If the text is not bold, the rendered weight is equal to the weight.
12405 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
12406 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
12407 "magnitude": 3.14, # The magnitude.
12408 "unit": "A String", # The units for magnitude.
12410 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
12411 # or transparent, depending on the `color` field.
12414 "rgbColor": { # An RGB color. # The RGB color value.
12415 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
12416 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
12417 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
12421 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
12424 … # Changing the link in an update request causes some other changes to the
12425 # text style of the range:
12427 … # * When setting a link, the text foreground color will be updated to the
12428 … # default link color and the text will be underlined. If these fields are
12429 … # modified in the same request, those values will be used instead of the
12432 # also update the existing link to point to the new URL.
12435 … # will separate the newline character(s) into their own text runs. The
12436 … # link will be applied separately to the runs before and after the newline.
12437 … # * Removing a link will update the text style of the range to match the
12438 … # style of the preceding text (or the default text styles if the preceding
12439 … # text is another link) unless different styles are being set in the same
12441 "headingId": "A String", # The ID of a heading in this document.
12443 "bookmarkId": "A String", # The ID of a bookmark in this document.
12445 "underline": True or False, # Whether or not the text is underlined.
12446 "bold": True or False, # Whether or not the text is rendered as bold.
12448 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
12464 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
12470 # run of text that all has the same styling.
12471 "content": "A String", # The text of this run.
12473 # Any non-text elements in the run are replaced with the Unicode character
12475 … "textStyle": { # Represents the styling that can be applied to text. # The text style of this run.
12478 # text style's parent depends on where the text style is defined:
12480 # * The TextStyle of text in a Paragraph
12481 # inherits from the paragraph's corresponding named style type.
12482 # * The TextStyle on a named style
12483 # inherits from the normal text named style.
12484 # * The TextStyle of the normal text named style inherits
12485 # from the default text style in the Docs editor.
12486 # * The TextStyle on a Paragraph element
12487 # that is contained in a table may inherit its text style from the table
12490 # If the text style does not inherit from a parent, unsetting fields will
12491 # revert the style to a value matching the defaults in the Docs editor.
12492 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
12493 # or transparent, depending on the `color` field.
12496 "rgbColor": { # An RGB color. # The RGB color value.
12497 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
12498 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
12499 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
12503 "italic": True or False, # Whether or not the text is italicized.
12504 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
12507 … # rendered in a smaller font size, computed based on the `font_size` field.
12508 # The `font_size` itself is not affected by changes in this field.
12509 "strikethrough": True or False, # Whether or not the text is struck through.
12510 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
12513 # `bold`, the `weighted_font_family` is applied first, then `bold`.
12520 "fontFamily": "A String", # The font family of the text.
12522 # The font family can be any font from the Font menu in Docs or from
12523 # [Google Fonts] (https://fonts.google.com/). If the font name is
12524 # unrecognized, the text is rendered in `Arial`.
12525 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
12526 … # `100` between `100` and `900`, inclusive. This range corresponds to the
12527 # numerical values described in the CSS 2.1 Specification,
12531 # The default value is `400` ("normal").
12533 … # The font weight makes up just one component of the rendered font weight.
12534 … # The rendered weight is determined by a combination of the `weight` and the
12537 # * If the text is bold and the weight is less than `400`, the rendered
12539 … # * If the text is bold and the weight is greater than or equal to `400` but
12540 # is less than `700`, the rendered weight is `700`.
12541 … # * If the weight is greater than or equal to `700`, the rendered weight is
12542 # equal to the weight.
12543 # * If the text is not bold, the rendered weight is equal to the weight.
12545 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
12546 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
12547 "magnitude": 3.14, # The magnitude.
12548 "unit": "A String", # The units for magnitude.
12550 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
12551 # or transparent, depending on the `color` field.
12554 "rgbColor": { # An RGB color. # The RGB color value.
12555 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
12556 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
12557 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
12561 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
12564 # Changing the link in an update request causes some other changes to the
12565 # text style of the range:
12567 # * When setting a link, the text foreground color will be updated to the
12568 … # default link color and the text will be underlined. If these fields are
12569 # modified in the same request, those values will be used instead of the
12572 # also update the existing link to point to the new URL.
12575 # will separate the newline character(s) into their own text runs. The
12576 … # link will be applied separately to the runs before and after the newline.
12577 # * Removing a link will update the text style of the range to match the
12578 … # style of the preceding text (or the default text styles if the preceding
12579 … # text is another link) unless different styles are being set in the same
12581 "headingId": "A String", # The ID of a heading in this document.
12583 "bookmarkId": "A String", # The ID of a bookmark in this document.
12585 "underline": True or False, # Whether or not the text is underlined.
12586 "bold": True or False, # Whether or not the text is rendered as bold.
12588 "suggestedInsertionIds": [ # The suggested insertion IDs. A TextRun may
12593 …"suggestedTextStyleChanges": { # The suggested text style changes to this run, keyed by suggestion…
12595 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
12596 # the changes made in this suggestion. This can be used along with the
12601 # text style's parent depends on where the text style is defined:
12603 # * The TextStyle of text in a Paragraph
12604 # inherits from the paragraph's corresponding named style type.
12605 # * The TextStyle on a named style
12606 # inherits from the normal text named style.
12607 # * The TextStyle of the normal text named style inherits
12608 # from the default text style in the Docs editor.
12609 # * The TextStyle on a Paragraph element
12610 … # that is contained in a table may inherit its text style from the table
12613 … # If the text style does not inherit from a parent, unsetting fields will
12614 # revert the style to a value matching the defaults in the Docs editor.
12615 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
12616 # or transparent, depending on the `color` field.
12619 "rgbColor": { # An RGB color. # The RGB color value.
12620 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
12621 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
12622 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
12626 "italic": True or False, # Whether or not the text is italicized.
12627 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
12630 … # rendered in a smaller font size, computed based on the `font_size` field.
12631 # The `font_size` itself is not affected by changes in this field.
12632 … "strikethrough": True or False, # Whether or not the text is struck through.
12633 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
12636 # `bold`, the `weighted_font_family` is applied first, then `bold`.
12643 "fontFamily": "A String", # The font family of the text.
12645 # The font family can be any font from the Font menu in Docs or from
12646 # [Google Fonts] (https://fonts.google.com/). If the font name is
12647 # unrecognized, the text is rendered in `Arial`.
12648 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
12649 … # `100` between `100` and `900`, inclusive. This range corresponds to the
12650 # numerical values described in the CSS 2.1 Specification,
12654 # The default value is `400` ("normal").
12656 … # The font weight makes up just one component of the rendered font weight.
12657 … # The rendered weight is determined by a combination of the `weight` and the
12660 … # * If the text is bold and the weight is less than `400`, the rendered
12662 … # * If the text is bold and the weight is greater than or equal to `400` but
12663 # is less than `700`, the rendered weight is `700`.
12664 … # * If the weight is greater than or equal to `700`, the rendered weight is
12665 # equal to the weight.
12666 … # * If the text is not bold, the rendered weight is equal to the weight.
12668 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
12669 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
12670 "magnitude": 3.14, # The magnitude.
12671 "unit": "A String", # The units for magnitude.
12673 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
12674 # or transparent, depending on the `color` field.
12677 "rgbColor": { # An RGB color. # The RGB color value.
12678 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
12679 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
12680 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
12684 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
12687 … # Changing the link in an update request causes some other changes to the
12688 # text style of the range:
12690 … # * When setting a link, the text foreground color will be updated to the
12691 … # default link color and the text will be underlined. If these fields are
12692 … # modified in the same request, those values will be used instead of the
12695 # also update the existing link to point to the new URL.
12698 … # will separate the newline character(s) into their own text runs. The
12699 … # link will be applied separately to the runs before and after the newline.
12700 … # * Removing a link will update the text style of the range to match the
12701 … # style of the preceding text (or the default text styles if the preceding
12702 … # text is another link) unless different styles are being set in the same
12704 "headingId": "A String", # The ID of a heading in this document.
12706 "bookmarkId": "A String", # The ID of a bookmark in this document.
12708 "underline": True or False, # Whether or not the text is underlined.
12709 "bold": True or False, # Whether or not the text is rendered as bold.
12711 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
12727 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
12733 # spot in the text that is dynamically replaced with content that can change
12735 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Auto…
12738 # text style's parent depends on where the text style is defined:
12740 # * The TextStyle of text in a Paragraph
12741 # inherits from the paragraph's corresponding named style type.
12742 # * The TextStyle on a named style
12743 # inherits from the normal text named style.
12744 # * The TextStyle of the normal text named style inherits
12745 # from the default text style in the Docs editor.
12746 # * The TextStyle on a Paragraph element
12747 # that is contained in a table may inherit its text style from the table
12750 # If the text style does not inherit from a parent, unsetting fields will
12751 # revert the style to a value matching the defaults in the Docs editor.
12752 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
12753 # or transparent, depending on the `color` field.
12756 "rgbColor": { # An RGB color. # The RGB color value.
12757 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
12758 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
12759 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
12763 "italic": True or False, # Whether or not the text is italicized.
12764 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
12767 … # rendered in a smaller font size, computed based on the `font_size` field.
12768 # The `font_size` itself is not affected by changes in this field.
12769 "strikethrough": True or False, # Whether or not the text is struck through.
12770 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
12773 # `bold`, the `weighted_font_family` is applied first, then `bold`.
12780 "fontFamily": "A String", # The font family of the text.
12782 # The font family can be any font from the Font menu in Docs or from
12783 # [Google Fonts] (https://fonts.google.com/). If the font name is
12784 # unrecognized, the text is rendered in `Arial`.
12785 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
12786 … # `100` between `100` and `900`, inclusive. This range corresponds to the
12787 # numerical values described in the CSS 2.1 Specification,
12791 # The default value is `400` ("normal").
12793 … # The font weight makes up just one component of the rendered font weight.
12794 … # The rendered weight is determined by a combination of the `weight` and the
12797 # * If the text is bold and the weight is less than `400`, the rendered
12799 … # * If the text is bold and the weight is greater than or equal to `400` but
12800 # is less than `700`, the rendered weight is `700`.
12801 … # * If the weight is greater than or equal to `700`, the rendered weight is
12802 # equal to the weight.
12803 # * If the text is not bold, the rendered weight is equal to the weight.
12805 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
12806 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
12807 "magnitude": 3.14, # The magnitude.
12808 "unit": "A String", # The units for magnitude.
12810 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
12811 # or transparent, depending on the `color` field.
12814 "rgbColor": { # An RGB color. # The RGB color value.
12815 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
12816 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
12817 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
12821 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
12824 # Changing the link in an update request causes some other changes to the
12825 # text style of the range:
12827 # * When setting a link, the text foreground color will be updated to the
12828 … # default link color and the text will be underlined. If these fields are
12829 # modified in the same request, those values will be used instead of the
12832 # also update the existing link to point to the new URL.
12835 # will separate the newline character(s) into their own text runs. The
12836 … # link will be applied separately to the runs before and after the newline.
12837 # * Removing a link will update the text style of the range to match the
12838 … # style of the preceding text (or the default text styles if the preceding
12839 … # text is another link) unless different styles are being set in the same
12841 "headingId": "A String", # The ID of a heading in this document.
12843 "bookmarkId": "A String", # The ID of a bookmark in this document.
12845 "underline": True or False, # Whether or not the text is underlined.
12846 "bold": True or False, # Whether or not the text is rendered as bold.
12848 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
12852 …"suggestedTextStyleChanges": { # The suggested text style changes to this AutoText, keyed by sugge…
12854 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
12855 # the changes made in this suggestion. This can be used along with the
12860 # text style's parent depends on where the text style is defined:
12862 # * The TextStyle of text in a Paragraph
12863 # inherits from the paragraph's corresponding named style type.
12864 # * The TextStyle on a named style
12865 # inherits from the normal text named style.
12866 # * The TextStyle of the normal text named style inherits
12867 # from the default text style in the Docs editor.
12868 # * The TextStyle on a Paragraph element
12869 … # that is contained in a table may inherit its text style from the table
12872 … # If the text style does not inherit from a parent, unsetting fields will
12873 # revert the style to a value matching the defaults in the Docs editor.
12874 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
12875 # or transparent, depending on the `color` field.
12878 "rgbColor": { # An RGB color. # The RGB color value.
12879 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
12880 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
12881 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
12885 "italic": True or False, # Whether or not the text is italicized.
12886 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
12889 … # rendered in a smaller font size, computed based on the `font_size` field.
12890 # The `font_size` itself is not affected by changes in this field.
12891 … "strikethrough": True or False, # Whether or not the text is struck through.
12892 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
12895 # `bold`, the `weighted_font_family` is applied first, then `bold`.
12902 "fontFamily": "A String", # The font family of the text.
12904 # The font family can be any font from the Font menu in Docs or from
12905 # [Google Fonts] (https://fonts.google.com/). If the font name is
12906 # unrecognized, the text is rendered in `Arial`.
12907 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
12908 … # `100` between `100` and `900`, inclusive. This range corresponds to the
12909 # numerical values described in the CSS 2.1 Specification,
12913 # The default value is `400` ("normal").
12915 … # The font weight makes up just one component of the rendered font weight.
12916 … # The rendered weight is determined by a combination of the `weight` and the
12919 … # * If the text is bold and the weight is less than `400`, the rendered
12921 … # * If the text is bold and the weight is greater than or equal to `400` but
12922 # is less than `700`, the rendered weight is `700`.
12923 … # * If the weight is greater than or equal to `700`, the rendered weight is
12924 # equal to the weight.
12925 … # * If the text is not bold, the rendered weight is equal to the weight.
12927 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
12928 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
12929 "magnitude": 3.14, # The magnitude.
12930 "unit": "A String", # The units for magnitude.
12932 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
12933 # or transparent, depending on the `color` field.
12936 "rgbColor": { # An RGB color. # The RGB color value.
12937 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
12938 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
12939 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
12943 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
12946 … # Changing the link in an update request causes some other changes to the
12947 # text style of the range:
12949 … # * When setting a link, the text foreground color will be updated to the
12950 … # default link color and the text will be underlined. If these fields are
12951 … # modified in the same request, those values will be used instead of the
12954 # also update the existing link to point to the new URL.
12957 … # will separate the newline character(s) into their own text runs. The
12958 … # link will be applied separately to the runs before and after the newline.
12959 … # * Removing a link will update the text style of the range to match the
12960 … # style of the preceding text (or the default text styles if the preceding
12961 … # text is another link) unless different styles are being set in the same
12963 "headingId": "A String", # The ID of a heading in this document.
12965 "bookmarkId": "A String", # The ID of a bookmark in this document.
12967 "underline": True or False, # Whether or not the text is underlined.
12968 "bold": True or False, # Whether or not the text is rendered as bold.
12970 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
12986 "type": "A String", # The type of this auto text.
12987 "suggestedInsertionIds": [ # The suggested insertion IDs. An AutoText
12995 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Inli…
12997 # Similar to text content, like text runs and footnote references, the text
12998 # style of an inline object element can affect content layout as well as the
13002 # text style's parent depends on where the text style is defined:
13004 # * The TextStyle of text in a Paragraph
13005 # inherits from the paragraph's corresponding named style type.
13006 # * The TextStyle on a named style
13007 # inherits from the normal text named style.
13008 # * The TextStyle of the normal text named style inherits
13009 # from the default text style in the Docs editor.
13010 # * The TextStyle on a Paragraph element
13011 # that is contained in a table may inherit its text style from the table
13014 # If the text style does not inherit from a parent, unsetting fields will
13015 # revert the style to a value matching the defaults in the Docs editor.
13016 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
13017 # or transparent, depending on the `color` field.
13020 "rgbColor": { # An RGB color. # The RGB color value.
13021 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
13022 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
13023 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
13027 "italic": True or False, # Whether or not the text is italicized.
13028 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
13031 … # rendered in a smaller font size, computed based on the `font_size` field.
13032 # The `font_size` itself is not affected by changes in this field.
13033 "strikethrough": True or False, # Whether or not the text is struck through.
13034 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
13037 # `bold`, the `weighted_font_family` is applied first, then `bold`.
13044 "fontFamily": "A String", # The font family of the text.
13046 # The font family can be any font from the Font menu in Docs or from
13047 # [Google Fonts] (https://fonts.google.com/). If the font name is
13048 # unrecognized, the text is rendered in `Arial`.
13049 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
13050 … # `100` between `100` and `900`, inclusive. This range corresponds to the
13051 # numerical values described in the CSS 2.1 Specification,
13055 # The default value is `400` ("normal").
13057 … # The font weight makes up just one component of the rendered font weight.
13058 … # The rendered weight is determined by a combination of the `weight` and the
13061 # * If the text is bold and the weight is less than `400`, the rendered
13063 … # * If the text is bold and the weight is greater than or equal to `400` but
13064 # is less than `700`, the rendered weight is `700`.
13065 … # * If the weight is greater than or equal to `700`, the rendered weight is
13066 # equal to the weight.
13067 # * If the text is not bold, the rendered weight is equal to the weight.
13069 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
13070 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
13071 "magnitude": 3.14, # The magnitude.
13072 "unit": "A String", # The units for magnitude.
13074 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
13075 # or transparent, depending on the `color` field.
13078 "rgbColor": { # An RGB color. # The RGB color value.
13079 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
13080 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
13081 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
13085 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
13088 # Changing the link in an update request causes some other changes to the
13089 # text style of the range:
13091 # * When setting a link, the text foreground color will be updated to the
13092 … # default link color and the text will be underlined. If these fields are
13093 # modified in the same request, those values will be used instead of the
13096 # also update the existing link to point to the new URL.
13099 # will separate the newline character(s) into their own text runs. The
13100 … # link will be applied separately to the runs before and after the newline.
13101 # * Removing a link will update the text style of the range to match the
13102 … # style of the preceding text (or the default text styles if the preceding
13103 … # text is another link) unless different styles are being set in the same
13105 "headingId": "A String", # The ID of a heading in this document.
13107 "bookmarkId": "A String", # The ID of a bookmark in this document.
13109 "underline": True or False, # Whether or not the text is underlined.
13110 "bold": True or False, # Whether or not the text is rendered as bold.
13112 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
13116 …"suggestedTextStyleChanges": { # The suggested text style changes to this InlineObject, keyed by s…
13119 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
13120 # the changes made in this suggestion. This can be used along with the
13125 # text style's parent depends on where the text style is defined:
13127 # * The TextStyle of text in a Paragraph
13128 # inherits from the paragraph's corresponding named style type.
13129 # * The TextStyle on a named style
13130 # inherits from the normal text named style.
13131 # * The TextStyle of the normal text named style inherits
13132 # from the default text style in the Docs editor.
13133 # * The TextStyle on a Paragraph element
13134 … # that is contained in a table may inherit its text style from the table
13137 … # If the text style does not inherit from a parent, unsetting fields will
13138 # revert the style to a value matching the defaults in the Docs editor.
13139 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
13140 # or transparent, depending on the `color` field.
13143 "rgbColor": { # An RGB color. # The RGB color value.
13144 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
13145 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
13146 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
13150 "italic": True or False, # Whether or not the text is italicized.
13151 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
13154 … # rendered in a smaller font size, computed based on the `font_size` field.
13155 # The `font_size` itself is not affected by changes in this field.
13156 … "strikethrough": True or False, # Whether or not the text is struck through.
13157 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
13160 # `bold`, the `weighted_font_family` is applied first, then `bold`.
13167 "fontFamily": "A String", # The font family of the text.
13169 # The font family can be any font from the Font menu in Docs or from
13170 # [Google Fonts] (https://fonts.google.com/). If the font name is
13171 # unrecognized, the text is rendered in `Arial`.
13172 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
13173 … # `100` between `100` and `900`, inclusive. This range corresponds to the
13174 # numerical values described in the CSS 2.1 Specification,
13178 # The default value is `400` ("normal").
13180 … # The font weight makes up just one component of the rendered font weight.
13181 … # The rendered weight is determined by a combination of the `weight` and the
13184 … # * If the text is bold and the weight is less than `400`, the rendered
13186 … # * If the text is bold and the weight is greater than or equal to `400` but
13187 # is less than `700`, the rendered weight is `700`.
13188 … # * If the weight is greater than or equal to `700`, the rendered weight is
13189 # equal to the weight.
13190 … # * If the text is not bold, the rendered weight is equal to the weight.
13192 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
13193 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
13194 "magnitude": 3.14, # The magnitude.
13195 "unit": "A String", # The units for magnitude.
13197 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
13198 # or transparent, depending on the `color` field.
13201 "rgbColor": { # An RGB color. # The RGB color value.
13202 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
13203 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
13204 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
13208 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
13211 … # Changing the link in an update request causes some other changes to the
13212 # text style of the range:
13214 … # * When setting a link, the text foreground color will be updated to the
13215 … # default link color and the text will be underlined. If these fields are
13216 … # modified in the same request, those values will be used instead of the
13219 # also update the existing link to point to the new URL.
13222 … # will separate the newline character(s) into their own text runs. The
13223 … # link will be applied separately to the runs before and after the newline.
13224 … # * Removing a link will update the text style of the range to match the
13225 … # style of the preceding text (or the default text styles if the preceding
13226 … # text is another link) unless different styles are being set in the same
13228 "headingId": "A String", # The ID of a heading in this document.
13230 "bookmarkId": "A String", # The ID of a bookmark in this document.
13232 "underline": True or False, # Whether or not the text is underlined.
13233 "bold": True or False, # Whether or not the text is rendered as bold.
13235 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
13251 "inlineObjectId": "A String", # The ID of the InlineObject this
13253 …"suggestedInsertionIds": [ # The suggested insertion IDs. An InlineObjectElement may have multiple…
13260 # footnote reference. A footnote reference is the inline content rendered with
13261 # a number and is used to identify the footnote.
13262 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Foot…
13265 # text style's parent depends on where the text style is defined:
13267 # * The TextStyle of text in a Paragraph
13268 # inherits from the paragraph's corresponding named style type.
13269 # * The TextStyle on a named style
13270 # inherits from the normal text named style.
13271 # * The TextStyle of the normal text named style inherits
13272 # from the default text style in the Docs editor.
13273 # * The TextStyle on a Paragraph element
13274 # that is contained in a table may inherit its text style from the table
13277 # If the text style does not inherit from a parent, unsetting fields will
13278 # revert the style to a value matching the defaults in the Docs editor.
13279 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
13280 # or transparent, depending on the `color` field.
13283 "rgbColor": { # An RGB color. # The RGB color value.
13284 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
13285 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
13286 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
13290 "italic": True or False, # Whether or not the text is italicized.
13291 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
13294 … # rendered in a smaller font size, computed based on the `font_size` field.
13295 # The `font_size` itself is not affected by changes in this field.
13296 "strikethrough": True or False, # Whether or not the text is struck through.
13297 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
13300 # `bold`, the `weighted_font_family` is applied first, then `bold`.
13307 "fontFamily": "A String", # The font family of the text.
13309 # The font family can be any font from the Font menu in Docs or from
13310 # [Google Fonts] (https://fonts.google.com/). If the font name is
13311 # unrecognized, the text is rendered in `Arial`.
13312 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
13313 … # `100` between `100` and `900`, inclusive. This range corresponds to the
13314 # numerical values described in the CSS 2.1 Specification,
13318 # The default value is `400` ("normal").
13320 … # The font weight makes up just one component of the rendered font weight.
13321 … # The rendered weight is determined by a combination of the `weight` and the
13324 # * If the text is bold and the weight is less than `400`, the rendered
13326 … # * If the text is bold and the weight is greater than or equal to `400` but
13327 # is less than `700`, the rendered weight is `700`.
13328 … # * If the weight is greater than or equal to `700`, the rendered weight is
13329 # equal to the weight.
13330 # * If the text is not bold, the rendered weight is equal to the weight.
13332 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
13333 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
13334 "magnitude": 3.14, # The magnitude.
13335 "unit": "A String", # The units for magnitude.
13337 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
13338 # or transparent, depending on the `color` field.
13341 "rgbColor": { # An RGB color. # The RGB color value.
13342 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
13343 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
13344 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
13348 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
13351 # Changing the link in an update request causes some other changes to the
13352 # text style of the range:
13354 # * When setting a link, the text foreground color will be updated to the
13355 … # default link color and the text will be underlined. If these fields are
13356 # modified in the same request, those values will be used instead of the
13359 # also update the existing link to point to the new URL.
13362 # will separate the newline character(s) into their own text runs. The
13363 … # link will be applied separately to the runs before and after the newline.
13364 # * Removing a link will update the text style of the range to match the
13365 … # style of the preceding text (or the default text styles if the preceding
13366 … # text is another link) unless different styles are being set in the same
13368 "headingId": "A String", # The ID of a heading in this document.
13370 "bookmarkId": "A String", # The ID of a bookmark in this document.
13372 "underline": True or False, # Whether or not the text is underlined.
13373 "bold": True or False, # Whether or not the text is rendered as bold.
13375 "footnoteNumber": "A String", # The rendered number of this footnote.
13376 …"suggestedInsertionIds": [ # The suggested insertion IDs. A FootnoteReference may have multiple in…
13381 "footnoteId": "A String", # The ID of the footnote that
13382 # contains the content of this footnote reference.
13383 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
13387 …"suggestedTextStyleChanges": { # The suggested text style changes to this FootnoteReference, keyed…
13390 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
13391 # the changes made in this suggestion. This can be used along with the
13396 # text style's parent depends on where the text style is defined:
13398 # * The TextStyle of text in a Paragraph
13399 # inherits from the paragraph's corresponding named style type.
13400 # * The TextStyle on a named style
13401 # inherits from the normal text named style.
13402 # * The TextStyle of the normal text named style inherits
13403 # from the default text style in the Docs editor.
13404 # * The TextStyle on a Paragraph element
13405 … # that is contained in a table may inherit its text style from the table
13408 … # If the text style does not inherit from a parent, unsetting fields will
13409 # revert the style to a value matching the defaults in the Docs editor.
13410 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
13411 # or transparent, depending on the `color` field.
13414 "rgbColor": { # An RGB color. # The RGB color value.
13415 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
13416 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
13417 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
13421 "italic": True or False, # Whether or not the text is italicized.
13422 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
13425 … # rendered in a smaller font size, computed based on the `font_size` field.
13426 # The `font_size` itself is not affected by changes in this field.
13427 … "strikethrough": True or False, # Whether or not the text is struck through.
13428 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
13431 # `bold`, the `weighted_font_family` is applied first, then `bold`.
13438 "fontFamily": "A String", # The font family of the text.
13440 # The font family can be any font from the Font menu in Docs or from
13441 # [Google Fonts] (https://fonts.google.com/). If the font name is
13442 # unrecognized, the text is rendered in `Arial`.
13443 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
13444 … # `100` between `100` and `900`, inclusive. This range corresponds to the
13445 # numerical values described in the CSS 2.1 Specification,
13449 # The default value is `400` ("normal").
13451 … # The font weight makes up just one component of the rendered font weight.
13452 … # The rendered weight is determined by a combination of the `weight` and the
13455 … # * If the text is bold and the weight is less than `400`, the rendered
13457 … # * If the text is bold and the weight is greater than or equal to `400` but
13458 # is less than `700`, the rendered weight is `700`.
13459 … # * If the weight is greater than or equal to `700`, the rendered weight is
13460 # equal to the weight.
13461 … # * If the text is not bold, the rendered weight is equal to the weight.
13463 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
13464 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
13465 "magnitude": 3.14, # The magnitude.
13466 "unit": "A String", # The units for magnitude.
13468 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
13469 # or transparent, depending on the `color` field.
13472 "rgbColor": { # An RGB color. # The RGB color value.
13473 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
13474 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
13475 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
13479 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
13482 … # Changing the link in an update request causes some other changes to the
13483 # text style of the range:
13485 … # * When setting a link, the text foreground color will be updated to the
13486 … # default link color and the text will be underlined. If these fields are
13487 … # modified in the same request, those values will be used instead of the
13490 # also update the existing link to point to the new URL.
13493 … # will separate the newline character(s) into their own text runs. The
13494 … # link will be applied separately to the runs before and after the newline.
13495 … # * Removing a link will update the text style of the range to match the
13496 … # style of the preceding text (or the default text styles if the preceding
13497 … # text is another link) unless different styles are being set in the same
13499 "headingId": "A String", # The ID of a heading in this document.
13501 "bookmarkId": "A String", # The ID of a bookmark in this document.
13503 "underline": True or False, # Whether or not the text is underlined.
13504 "bold": True or False, # Whether or not the text is rendered as bold.
13506 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
13525 …"suggestedPositionedObjectIds": { # The IDs of the positioned objects that are suggested to be att…
13528 "objectIds": [ # The object IDs.
13533 …"bullet": { # Describes the bullet of a paragraph. # The bullet for this paragraph. If not present…
13535 "nestingLevel": 42, # The nesting level of this paragraph in the list.
13536 "listId": "A String", # The ID of the list this paragraph belongs to.
13537 …"textStyle": { # Represents the styling that can be applied to text. # The paragraph specific text…
13540 # text style's parent depends on where the text style is defined:
13542 # * The TextStyle of text in a Paragraph
13543 # inherits from the paragraph's corresponding named style type.
13544 # * The TextStyle on a named style
13545 # inherits from the normal text named style.
13546 # * The TextStyle of the normal text named style inherits
13547 # from the default text style in the Docs editor.
13548 # * The TextStyle on a Paragraph element
13549 # that is contained in a table may inherit its text style from the table
13552 # If the text style does not inherit from a parent, unsetting fields will
13553 # revert the style to a value matching the defaults in the Docs editor.
13554 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
13555 # or transparent, depending on the `color` field.
13558 "rgbColor": { # An RGB color. # The RGB color value.
13559 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
13560 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
13561 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
13565 "italic": True or False, # Whether or not the text is italicized.
13566 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
13569 # rendered in a smaller font size, computed based on the `font_size` field.
13570 # The `font_size` itself is not affected by changes in this field.
13571 "strikethrough": True or False, # Whether or not the text is struck through.
13572 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
13575 # `bold`, the `weighted_font_family` is applied first, then `bold`.
13582 "fontFamily": "A String", # The font family of the text.
13584 # The font family can be any font from the Font menu in Docs or from
13585 # [Google Fonts] (https://fonts.google.com/). If the font name is
13586 # unrecognized, the text is rendered in `Arial`.
13587 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
13588 # `100` between `100` and `900`, inclusive. This range corresponds to the
13589 # numerical values described in the CSS 2.1 Specification,
13593 # The default value is `400` ("normal").
13595 # The font weight makes up just one component of the rendered font weight.
13596 # The rendered weight is determined by a combination of the `weight` and the
13599 # * If the text is bold and the weight is less than `400`, the rendered
13601 # * If the text is bold and the weight is greater than or equal to `400` but
13602 # is less than `700`, the rendered weight is `700`.
13603 # * If the weight is greater than or equal to `700`, the rendered weight is
13604 # equal to the weight.
13605 # * If the text is not bold, the rendered weight is equal to the weight.
13607 "smallCaps": True or False, # Whether or not the text is in small capital letters.
13608 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
13609 "magnitude": 3.14, # The magnitude.
13610 "unit": "A String", # The units for magnitude.
13612 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
13613 # or transparent, depending on the `color` field.
13616 "rgbColor": { # An RGB color. # The RGB color value.
13617 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
13618 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
13619 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
13623 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
13626 # Changing the link in an update request causes some other changes to the
13627 # text style of the range:
13629 # * When setting a link, the text foreground color will be updated to the
13630 # default link color and the text will be underlined. If these fields are
13631 # modified in the same request, those values will be used instead of the
13634 # also update the existing link to point to the new URL.
13637 # will separate the newline character(s) into their own text runs. The
13638 # link will be applied separately to the runs before and after the newline.
13639 # * Removing a link will update the text style of the range to match the
13640 # style of the preceding text (or the default text styles if the preceding
13641 # text is another link) unless different styles are being set in the same
13643 "headingId": "A String", # The ID of a heading in this document.
13645 "bookmarkId": "A String", # The ID of a bookmark in this document.
13647 "underline": True or False, # Whether or not the text is underlined.
13648 "bold": True or False, # Whether or not the text is rendered as bold.
13651 "suggestedBulletChanges": { # The suggested changes to this paragraph's bullet.
13653 … "bullet": { # Describes the bullet of a paragraph. # A Bullet that only includes the changes made
13654 # in this suggestion. This can be used along with the
13657 "nestingLevel": 42, # The nesting level of this paragraph in the list.
13658 "listId": "A String", # The ID of the list this paragraph belongs to.
13659 …"textStyle": { # Represents the styling that can be applied to text. # The paragraph specific text…
13662 # text style's parent depends on where the text style is defined:
13664 # * The TextStyle of text in a Paragraph
13665 # inherits from the paragraph's corresponding named style type.
13666 # * The TextStyle on a named style
13667 # inherits from the normal text named style.
13668 # * The TextStyle of the normal text named style inherits
13669 # from the default text style in the Docs editor.
13670 # * The TextStyle on a Paragraph element
13671 # that is contained in a table may inherit its text style from the table
13674 # If the text style does not inherit from a parent, unsetting fields will
13675 # revert the style to a value matching the defaults in the Docs editor.
13676 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
13677 # or transparent, depending on the `color` field.
13680 "rgbColor": { # An RGB color. # The RGB color value.
13681 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
13682 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
13683 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
13687 "italic": True or False, # Whether or not the text is italicized.
13688 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
13691 … # rendered in a smaller font size, computed based on the `font_size` field.
13692 # The `font_size` itself is not affected by changes in this field.
13693 "strikethrough": True or False, # Whether or not the text is struck through.
13694 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
13697 # `bold`, the `weighted_font_family` is applied first, then `bold`.
13704 "fontFamily": "A String", # The font family of the text.
13706 # The font family can be any font from the Font menu in Docs or from
13707 # [Google Fonts] (https://fonts.google.com/). If the font name is
13708 # unrecognized, the text is rendered in `Arial`.
13709 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
13710 … # `100` between `100` and `900`, inclusive. This range corresponds to the
13711 # numerical values described in the CSS 2.1 Specification,
13715 # The default value is `400` ("normal").
13717 … # The font weight makes up just one component of the rendered font weight.
13718 … # The rendered weight is determined by a combination of the `weight` and the
13721 # * If the text is bold and the weight is less than `400`, the rendered
13723 … # * If the text is bold and the weight is greater than or equal to `400` but
13724 # is less than `700`, the rendered weight is `700`.
13725 … # * If the weight is greater than or equal to `700`, the rendered weight is
13726 # equal to the weight.
13727 # * If the text is not bold, the rendered weight is equal to the weight.
13729 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
13730 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
13731 "magnitude": 3.14, # The magnitude.
13732 "unit": "A String", # The units for magnitude.
13734 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
13735 # or transparent, depending on the `color` field.
13738 "rgbColor": { # An RGB color. # The RGB color value.
13739 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
13740 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
13741 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
13745 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
13748 # Changing the link in an update request causes some other changes to the
13749 # text style of the range:
13751 # * When setting a link, the text foreground color will be updated to the
13752 … # default link color and the text will be underlined. If these fields are
13753 # modified in the same request, those values will be used instead of the
13756 # also update the existing link to point to the new URL.
13759 # will separate the newline character(s) into their own text runs. The
13760 … # link will be applied separately to the runs before and after the newline.
13761 # * Removing a link will update the text style of the range to match the
13762 … # style of the preceding text (or the default text styles if the preceding
13763 … # text is another link) unless different styles are being set in the same
13765 "headingId": "A String", # The ID of a heading in this document.
13767 "bookmarkId": "A String", # The ID of a bookmark in this document.
13769 "underline": True or False, # Whether or not the text is underlined.
13770 "bold": True or False, # Whether or not the text is rendered as bold.
13773 …te": { # A mask that indicates which of the fields on the base # A mask that indicates which of th…
13777 … "nestingLevelSuggested": True or False, # Indicates if there was a suggested change to the
13779 …hat indicates which of the fields on the base TextStyle have been changed in this suggestion. # A …
13794 … "listIdSuggested": True or False, # Indicates if there was a suggested change to the
13799 … "positionedObjectIds": [ # The IDs of the positioned objects tethered to this paragraph.
13802 …"suggestedParagraphStyleChanges": { # The suggested paragraph style changes to this paragraph, key…
13806 …tes which of the fields on the base ParagraphStyle have been changed in this suggestion. # A mask …
13827 … mask that indicates which of the fields on the base Shading have been changed in this # A mask th…
13830 …ckgroundColorSuggested": True or False, # Indicates if there was a suggested change to the Shading.
13834 # the changes made in this suggestion. This can be used along with the
13839 # A paragraph style's parent depends on where the paragraph style is defined:
13841 # * The ParagraphStyle on a Paragraph
13842 # inherits from the paragraph's corresponding named style type.
13843 # * The ParagraphStyle on a named style
13844 # inherits from the normal text named style.
13845 # * The ParagraphStyle of the normal text named style inherits
13846 # from the default paragraph style in the Docs editor.
13847 # * The ParagraphStyle on a Paragraph
13849 # the table style.
13851 # If the paragraph style does not inherit from a parent, unsetting fields will
13852 # revert the style to a value matching the defaults in the Docs editor.
13853 "spacingMode": "A String", # The spacing mode for the paragraph.
13854 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
13857 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
13858 # inherited from the parent.
13859 "magnitude": 3.14, # The magnitude.
13860 "unit": "A String", # The units for magnitude.
13862 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
13863 # page or column as the next paragraph if possible. If unset, the value is
13864 # inherited from the parent.
13865 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
13866 # is represented as 100.0. If unset, the value is inherited from the parent.
13867 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
13868 # is inherited from the parent.
13869 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
13870 # inherited from the parent.
13872 … # The bottom border is rendered when the paragraph below has different border
13876 # changes to a paragraph border the new border must be specified in
13878 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
13881 "rgbColor": { # An RGB color. # The RGB color value.
13882 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
13883 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
13884 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
13888 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
13889 "magnitude": 3.14, # The magnitude.
13890 "unit": "A String", # The units for magnitude.
13892 "dashStyle": "A String", # The dash style of the border.
13893 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
13894 "magnitude": 3.14, # The magnitude.
13895 "unit": "A String", # The units for magnitude.
13898 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
13899 # the start of the text, based on the current paragraph direction. If unset,
13900 # the value is inherited from the parent.
13901 "magnitude": 3.14, # The magnitude.
13902 "unit": "A String", # The units for magnitude.
13904 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
13905 # If unset, the value is inherited from the parent.
13907 # The between border is rendered when the adjacent paragraph has the same
13911 # changes to a paragraph border the new border must be specified in
13913 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
13916 "rgbColor": { # An RGB color. # The RGB color value.
13917 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
13918 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
13919 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
13923 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
13924 "magnitude": 3.14, # The magnitude.
13925 "unit": "A String", # The units for magnitude.
13927 "dashStyle": "A String", # The dash style of the border.
13928 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
13929 "magnitude": 3.14, # The magnitude.
13930 "unit": "A String", # The units for magnitude.
13933 "namedStyleType": "A String", # The named style type of the paragraph.
13935 # Since updating the named style type affects other properties within
13936 … # ParagraphStyle, the named style type is applied before the other properties
13938 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
13939 # from the parent.
13942 # changes to a paragraph border the new border must be specified in
13944 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
13947 "rgbColor": { # An RGB color. # The RGB color value.
13948 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
13949 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
13950 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
13954 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
13955 "magnitude": 3.14, # The magnitude.
13956 "unit": "A String", # The units for magnitude.
13958 "dashStyle": "A String", # The dash style of the border.
13959 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
13960 "magnitude": 3.14, # The magnitude.
13961 "unit": "A String", # The units for magnitude.
13964 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
13965 # the end of the text, based on the current paragraph direction. If unset,
13966 # the value is inherited from the parent.
13967 "magnitude": 3.14, # The magnitude.
13968 "unit": "A String", # The units for magnitude.
13970 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
13971 # from the parent.
13974 # changes to a paragraph border the new border must be specified in
13976 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
13979 "rgbColor": { # An RGB color. # The RGB color value.
13980 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
13981 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
13982 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
13986 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
13987 "magnitude": 3.14, # The magnitude.
13988 "unit": "A String", # The units for magnitude.
13990 "dashStyle": "A String", # The dash style of the border.
13991 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
13992 "magnitude": 3.14, # The magnitude.
13993 "unit": "A String", # The units for magnitude.
13996 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
13997 # inherited from the parent.
13998 "magnitude": 3.14, # The magnitude.
13999 "unit": "A String", # The units for magnitude.
14001 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
14003 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
14005 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
14008 "rgbColor": { # An RGB color. # The RGB color value.
14009 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
14010 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
14011 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
14016 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
14017 # from the parent.
14019 # The top border is rendered when the paragraph above has different border
14023 # changes to a paragraph border the new border must be specified in
14025 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
14028 "rgbColor": { # An RGB color. # The RGB color value.
14029 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
14030 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
14031 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
14035 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
14036 "magnitude": 3.14, # The magnitude.
14037 "unit": "A String", # The units for magnitude.
14039 "dashStyle": "A String", # The dash style of the border.
14040 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
14041 "magnitude": 3.14, # The magnitude.
14042 "unit": "A String", # The units for magnitude.
14045 … "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
14048 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
14049 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
14050 "magnitude": 3.14, # The magnitude.
14051 "unit": "A String", # The units for magnitude.
14055 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
14056 # the value is inherited from the parent.
14057 "magnitude": 3.14, # The magnitude.
14058 "unit": "A String", # The units for magnitude.
14060 "alignment": "A String", # The text alignment for this paragraph.
14061 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
14062 # column if possible. If unset, the value is inherited from the parent.
14066 … "paragraphStyle": { # Styles that apply to a whole paragraph. # The style of this paragraph.
14069 # A paragraph style's parent depends on where the paragraph style is defined:
14071 # * The ParagraphStyle on a Paragraph
14072 # inherits from the paragraph's corresponding named style type.
14073 # * The ParagraphStyle on a named style
14074 # inherits from the normal text named style.
14075 # * The ParagraphStyle of the normal text named style inherits
14076 # from the default paragraph style in the Docs editor.
14077 # * The ParagraphStyle on a Paragraph
14079 # the table style.
14081 # If the paragraph style does not inherit from a parent, unsetting fields will
14082 # revert the style to a value matching the defaults in the Docs editor.
14083 "spacingMode": "A String", # The spacing mode for the paragraph.
14084 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
14087 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
14088 # inherited from the parent.
14089 "magnitude": 3.14, # The magnitude.
14090 "unit": "A String", # The units for magnitude.
14092 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
14093 # page or column as the next paragraph if possible. If unset, the value is
14094 # inherited from the parent.
14095 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
14096 # is represented as 100.0. If unset, the value is inherited from the parent.
14097 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
14098 # is inherited from the parent.
14099 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
14100 # inherited from the parent.
14102 # The bottom border is rendered when the paragraph below has different border
14106 # changes to a paragraph border the new border must be specified in
14108 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
14111 "rgbColor": { # An RGB color. # The RGB color value.
14112 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
14113 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
14114 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
14118 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
14119 "magnitude": 3.14, # The magnitude.
14120 "unit": "A String", # The units for magnitude.
14122 "dashStyle": "A String", # The dash style of the border.
14123 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
14124 "magnitude": 3.14, # The magnitude.
14125 "unit": "A String", # The units for magnitude.
14128 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
14129 # the start of the text, based on the current paragraph direction. If unset,
14130 # the value is inherited from the parent.
14131 "magnitude": 3.14, # The magnitude.
14132 "unit": "A String", # The units for magnitude.
14134 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
14135 # If unset, the value is inherited from the parent.
14137 # The between border is rendered when the adjacent paragraph has the same
14141 # changes to a paragraph border the new border must be specified in
14143 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
14146 "rgbColor": { # An RGB color. # The RGB color value.
14147 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
14148 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
14149 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
14153 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
14154 "magnitude": 3.14, # The magnitude.
14155 "unit": "A String", # The units for magnitude.
14157 "dashStyle": "A String", # The dash style of the border.
14158 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
14159 "magnitude": 3.14, # The magnitude.
14160 "unit": "A String", # The units for magnitude.
14163 "namedStyleType": "A String", # The named style type of the paragraph.
14165 # Since updating the named style type affects other properties within
14166 # ParagraphStyle, the named style type is applied before the other properties
14168 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
14169 # from the parent.
14172 # changes to a paragraph border the new border must be specified in
14174 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
14177 "rgbColor": { # An RGB color. # The RGB color value.
14178 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
14179 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
14180 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
14184 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
14185 "magnitude": 3.14, # The magnitude.
14186 "unit": "A String", # The units for magnitude.
14188 "dashStyle": "A String", # The dash style of the border.
14189 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
14190 "magnitude": 3.14, # The magnitude.
14191 "unit": "A String", # The units for magnitude.
14194 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
14195 # the end of the text, based on the current paragraph direction. If unset,
14196 # the value is inherited from the parent.
14197 "magnitude": 3.14, # The magnitude.
14198 "unit": "A String", # The units for magnitude.
14200 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
14201 # from the parent.
14204 # changes to a paragraph border the new border must be specified in
14206 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
14209 "rgbColor": { # An RGB color. # The RGB color value.
14210 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
14211 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
14212 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
14216 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
14217 "magnitude": 3.14, # The magnitude.
14218 "unit": "A String", # The units for magnitude.
14220 "dashStyle": "A String", # The dash style of the border.
14221 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
14222 "magnitude": 3.14, # The magnitude.
14223 "unit": "A String", # The units for magnitude.
14226 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
14227 # inherited from the parent.
14228 "magnitude": 3.14, # The magnitude.
14229 "unit": "A String", # The units for magnitude.
14231 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
14233 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
14235 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
14238 "rgbColor": { # An RGB color. # The RGB color value.
14239 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
14240 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
14241 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
14246 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
14247 # from the parent.
14249 # The top border is rendered when the paragraph above has different border
14253 # changes to a paragraph border the new border must be specified in
14255 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
14258 "rgbColor": { # An RGB color. # The RGB color value.
14259 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
14260 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
14261 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
14265 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
14266 "magnitude": 3.14, # The magnitude.
14267 "unit": "A String", # The units for magnitude.
14269 "dashStyle": "A String", # The dash style of the border.
14270 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
14271 "magnitude": 3.14, # The magnitude.
14272 "unit": "A String", # The units for magnitude.
14275 … "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
14278 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
14279 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
14280 "magnitude": 3.14, # The magnitude.
14281 "unit": "A String", # The units for magnitude.
14285 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
14286 # the value is inherited from the parent.
14287 "magnitude": 3.14, # The magnitude.
14288 "unit": "A String", # The units for magnitude.
14290 "alignment": "A String", # The text alignment for this paragraph.
14291 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
14292 # column if possible. If unset, the value is inherited from the parent.
14297 "rows": 42, # Number of rows in the table.
14298 "tableStyle": { # Styles that apply to a table. # The style of the table.
14299 "tableColumnProperties": [ # The properties of each column.
14302 # HTML. So the properties for a row can be found on the row's
14304 { # The properties of a column in a table.
14305 …th": { # A magnitude in a single direction in the specified units. # The width of the column. Set …
14307 "magnitude": 3.14, # The magnitude.
14308 "unit": "A String", # The units for magnitude.
14310 "widthType": "A String", # The width type of the column.
14314 "suggestedInsertionIds": [ # The suggested insertion IDs. A Table may have
14319 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
14323 "tableRows": [ # The contents and style of each row.
14324 { # The contents and style of a row in a Table.
14325 … "endIndex": 42, # The zero-based end index of this row, exclusive, in UTF-16 code units.
14326 "tableCells": [ # The contents and style of each cell in this row.
14329 # different number of cells than other rows in the same table.
14330 { # The contents and style of a cell in a Table.
14331 … "endIndex": 42, # The zero-based end index of this cell, exclusive, in UTF-16 code units.
14332 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
14336 "suggestedInsertionIds": [ # The suggested insertion IDs. A TableCell
14341 "content": [ # The content of the cell.
14344 "tableCellStyle": { # The style of a TableCell. # The style of the cell.
14347 # A table cell style can inherit from the table's style.
14348 …ngBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of t…
14349 "magnitude": 3.14, # The magnitude.
14350 "unit": "A String", # The units for magnitude.
14352 … "borderBottom": { # A border around a table cell. # The bottom border of the cell.
14353 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
14356 "rgbColor": { # An RGB color. # The RGB color value.
14357 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
14358 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
14359 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
14363 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
14364 "magnitude": 3.14, # The magnitude.
14365 "unit": "A String", # The units for magnitude.
14367 "dashStyle": "A String", # The dash style of the border.
14369 …ddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of th…
14370 "magnitude": 3.14, # The magnitude.
14371 "unit": "A String", # The units for magnitude.
14373 …paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of th…
14374 "magnitude": 3.14, # The magnitude.
14375 "unit": "A String", # The units for magnitude.
14377 … "borderLeft": { # A border around a table cell. # The left border of the cell.
14378 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
14381 "rgbColor": { # An RGB color. # The RGB color value.
14382 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
14383 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
14384 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
14388 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
14389 "magnitude": 3.14, # The magnitude.
14390 "unit": "A String", # The units for magnitude.
14392 "dashStyle": "A String", # The dash style of the border.
14394 "columnSpan": 42, # The column span of the cell. This property is read-only.
14395 …# A color that can either be fully opaque or fully transparent. # The background color of the cell.
14398 "rgbColor": { # An RGB color. # The RGB color value.
14399 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
14400 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
14401 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
14405 … "borderRight": { # A border around a table cell. # The right border of the cell.
14406 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
14409 "rgbColor": { # An RGB color. # The RGB color value.
14410 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
14411 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
14412 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
14416 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
14417 "magnitude": 3.14, # The magnitude.
14418 "unit": "A String", # The units for magnitude.
14420 "dashStyle": "A String", # The dash style of the border.
14422 "rowSpan": 42, # The row span of the cell. This property is read-only.
14423 …"contentAlignment": "A String", # The alignment of the content in the table cell. The default alig…
14424 … # matches the alignment for newly created table cells in the Docs editor.
14425 …dingRight": { # A magnitude in a single direction in the specified units. # The right padding of t…
14426 "magnitude": 3.14, # The magnitude.
14427 "unit": "A String", # The units for magnitude.
14429 "borderTop": { # A border around a table cell. # The top border of the cell.
14430 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
14433 "rgbColor": { # An RGB color. # The RGB color value.
14434 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
14435 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
14436 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
14440 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
14441 "magnitude": 3.14, # The magnitude.
14442 "unit": "A String", # The units for magnitude.
14444 "dashStyle": "A String", # The dash style of the border.
14447 … "startIndex": 42, # The zero-based start index of this cell, in UTF-16 code units.
14448 …"suggestedTableCellStyleChanges": { # The suggested changes to the table cell style, keyed by sugg…
14450 … "tableCellStyle": { # The style of a TableCell. # A TableCellStyle that only includes
14451 # the changes made in this suggestion. This can be used along with the
14456 # A table cell style can inherit from the table's style.
14457 …ngBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of t…
14458 "magnitude": 3.14, # The magnitude.
14459 "unit": "A String", # The units for magnitude.
14461 … "borderBottom": { # A border around a table cell. # The bottom border of the cell.
14462 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
14465 "rgbColor": { # An RGB color. # The RGB color value.
14466 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
14467 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
14468 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
14472 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
14473 "magnitude": 3.14, # The magnitude.
14474 "unit": "A String", # The units for magnitude.
14476 "dashStyle": "A String", # The dash style of the border.
14478 …ddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of th…
14479 "magnitude": 3.14, # The magnitude.
14480 "unit": "A String", # The units for magnitude.
14482 …paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of th…
14483 "magnitude": 3.14, # The magnitude.
14484 "unit": "A String", # The units for magnitude.
14486 … "borderLeft": { # A border around a table cell. # The left border of the cell.
14487 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
14490 "rgbColor": { # An RGB color. # The RGB color value.
14491 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
14492 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
14493 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
14497 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
14498 "magnitude": 3.14, # The magnitude.
14499 "unit": "A String", # The units for magnitude.
14501 "dashStyle": "A String", # The dash style of the border.
14503 … "columnSpan": 42, # The column span of the cell. This property is read-only.
14504 …# A color that can either be fully opaque or fully transparent. # The background color of the cell.
14507 "rgbColor": { # An RGB color. # The RGB color value.
14508 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
14509 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
14510 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
14514 … "borderRight": { # A border around a table cell. # The right border of the cell.
14515 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
14518 "rgbColor": { # An RGB color. # The RGB color value.
14519 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
14520 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
14521 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
14525 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
14526 "magnitude": 3.14, # The magnitude.
14527 "unit": "A String", # The units for magnitude.
14529 "dashStyle": "A String", # The dash style of the border.
14531 "rowSpan": 42, # The row span of the cell. This property is read-only.
14532 …"contentAlignment": "A String", # The alignment of the content in the table cell. The default alig…
14533 … # matches the alignment for newly created table cells in the Docs editor.
14534 …dingRight": { # A magnitude in a single direction in the specified units. # The right padding of t…
14535 "magnitude": 3.14, # The magnitude.
14536 "unit": "A String", # The units for magnitude.
14538 … "borderTop": { # A border around a table cell. # The top border of the cell.
14539 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
14542 "rgbColor": { # An RGB color. # The RGB color value.
14543 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
14544 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
14545 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
14549 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
14550 "magnitude": 3.14, # The magnitude.
14551 "unit": "A String", # The units for magnitude.
14553 "dashStyle": "A String", # The dash style of the border.
14556 …tes which of the fields on the base TableCellStyle have been changed in this suggestion. # A mask …
14575 … "tableRowStyle": { # Styles that apply to a table row. # The style of the table row.
14576 …agnitude in a single direction in the specified units. # The minimum height of the row. The row wi…
14577 # at a height equal to or greater than this value in order to show all the
14578 # content in the row's cells.
14579 "magnitude": 3.14, # The magnitude.
14580 "unit": "A String", # The units for magnitude.
14583 "suggestedInsertionIds": [ # The suggested insertion IDs. A TableRow
14588 "startIndex": 42, # The zero-based start index of this row, in UTF-16 code units.
14589 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
14593 …"suggestedTableRowStyleChanges": { # The suggested style changes to this row, keyed by suggestion …
14597 # the changes made in this suggestion. This can be used along with the
14600 …agnitude in a single direction in the specified units. # The minimum height of the row. The row wi…
14601 … # at a height equal to or greater than this value in order to show all the
14602 # content in the row's cells.
14603 "magnitude": 3.14, # The magnitude.
14604 "unit": "A String", # The units for magnitude.
14607 …ates which of the fields on the base TableRowStyle have been changed in this suggestion. # A mask …
14615 "columns": 42, # Number of columns in the table.
14622 "footnoteId": "A String", # The ID of the footnote.
14625 "positionedObjects": { # The positioned objects in the document, keyed by object ID.
14627 # and positioned relative to the beginning of the paragraph. A PositionedObject
14630 …"positionedObjectProperties": { # Properties of a PositionedObject. # The properties of this posit…
14631 …# The positioning of a PositionedObject. The positioned object is positioned # The positioning of …
14634 # relative to the beginning of the Paragraph
14636 …itude in a single direction in the specified units. # The offset of the left edge of the positione…
14637 # beginning of the Paragraph it is tethered
14638 # to. The exact positioning of the object can depend on other content in the
14639 # document and the document's styling.
14640 "magnitude": 3.14, # The magnitude.
14641 "unit": "A String", # The units for magnitude.
14643 …itude in a single direction in the specified units. # The offset of the top edge of the positioned…
14644 # beginning of the Paragraph it is tethered
14645 # to. The exact positioning of the object can depend on other content in the
14646 # document and the document's styling.
14647 "magnitude": 3.14, # The magnitude.
14648 "unit": "A String", # The units for magnitude.
14650 "layout": "A String", # The layout of this positioned object.
14652 …"embeddedObject": { # An embedded object in the document. # The embedded object of this positioned…
14653 "imageProperties": { # The properties of an image. # The properties of an image.
14654 "angle": 3.14, # The clockwise rotation angle of the image, in radians.
14655 "contentUri": "A String", # A URI to the image with a default lifetime of 30 minutes.
14656 # This URI is tagged with the account of the requester. Anyone with the URI
14657 # effectively accesses the image as the original requester. Access to the
14658 # image may be lost if the document's sharing settings change.
14659 …"sourceUri": "A String", # The source URI is the URI used to insert the image. The source URI can …
14661 … "brightness": 3.14, # The brightness effect of the image. The value should be in the interval
14663 … "transparency": 3.14, # The transparency effect of the image. The value should be in the interval
14665 … "cropProperties": { # The crop properties of an image. # The crop properties of the image.
14667 # The crop rectangle is represented using fractional offsets from the original
14670 # - If the offset is in the interval (0, 1), the corresponding edge of crop
14671 # rectangle is positioned inside of the image's original bounding rectangle.
14672 # - If the offset is negative or greater than 1, the corresponding edge of crop
14673 # rectangle is positioned outside of the image's original bounding rectangle.
14674 # - If all offsets and rotation angle are 0, the image is not cropped.
14675 … "offsetBottom": 3.14, # The offset specifies how far inwards the bottom edge of the crop rectangle
14676 # is from the bottom edge of the original content as a fraction of the
14678 … "angle": 3.14, # The clockwise rotation angle of the crop rectangle around its center, in
14679 # radians. Rotation is applied after the offsets.
14680 … "offsetLeft": 3.14, # The offset specifies how far inwards the left edge of the crop rectangle is
14681 # from the left edge of the original content as a fraction of the original
14683 … "offsetRight": 3.14, # The offset specifies how far inwards the right edge of the crop rectangle
14684 # is from the right edge of the original content as a fraction of the
14686 … "offsetTop": 3.14, # The offset specifies how far inwards the top edge of the crop rectangle is
14687 # from the top edge of the original content as a fraction of the original
14690 … "contrast": 3.14, # The contrast effect of the image. The value should be in the interval
14693 …"description": "A String", # The description of the embedded object. The `title` and `description`…
14695 … "title": "A String", # The title of the embedded object. The `title` and `description` are both
14697 …"embeddedDrawingProperties": { # The properties of an embedded drawing. # The properties of an emb…
14699 …"linkedContentReference": { # A reference to the external linked source content. # A reference to
14700 # a reference to the source Sheets chart when the embedded object is a linked
14703 # If unset, then the embedded object is not linked.
14704 …: { # A reference to a linked chart embedded from Google Sheets. # A reference to the linked chart.
14705 …"spreadsheetId": "A String", # The ID of the Google Sheets spreadsheet that contains the source ch…
14706 … "chartId": 42, # The ID of the specific chart in the Google Sheets spreadsheet that is
14710 …"embeddedObjectBorder": { # A border around an EmbeddedObject. # The border of the embedded object.
14711 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
14714 "rgbColor": { # An RGB color. # The RGB color value.
14715 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
14716 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
14717 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
14721 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
14722 "magnitude": 3.14, # The magnitude.
14723 "unit": "A String", # The units for magnitude.
14725 "dashStyle": "A String", # The dash style of the border.
14726 "propertyState": "A String", # The property state of the border property.
14728 …ginBottom": { # A magnitude in a single direction in the specified units. # The bottom margin of t…
14729 "magnitude": 3.14, # The magnitude.
14730 "unit": "A String", # The units for magnitude.
14732 …marginLeft": { # A magnitude in a single direction in the specified units. # The left margin of th…
14733 "magnitude": 3.14, # The magnitude.
14734 "unit": "A String", # The units for magnitude.
14736 …rginRight": { # A magnitude in a single direction in the specified units. # The right margin of th…
14737 "magnitude": 3.14, # The magnitude.
14738 "unit": "A String", # The units for magnitude.
14740 …"marginTop": { # A magnitude in a single direction in the specified units. # The top margin of the
14741 "magnitude": 3.14, # The magnitude.
14742 "unit": "A String", # The units for magnitude.
14744 "size": { # A width and height. # The visible size of the image after cropping.
14745 … "width": { # A magnitude in a single direction in the specified units. # The width of the object.
14746 "magnitude": 3.14, # The magnitude.
14747 "unit": "A String", # The units for magnitude.
14749 …"height": { # A magnitude in a single direction in the specified units. # The height of the object.
14750 "magnitude": 3.14, # The magnitude.
14751 "unit": "A String", # The units for magnitude.
14756 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
14760 …"suggestedPositionedObjectPropertiesChanges": { # The suggested changes to the positioned object p…
14763 …te": { # A mask that indicates which of the fields on the base # A mask that indicates which of th…
14769 …tionState": { # A mask that indicates which of the fields on the base # A mask that indicates whic…
14777 … indicates which of the fields on the base EmbeddedObject have been changed in this suggestion. # …
14780 …tionState": { # A mask that indicates which of the fields on the base # A mask that indicates whic…
14785 …hat indicates which of the fields on the base SheetsChartReference have been changed in this # A m…
14792 … that indicates which of the fields on the base Size have been changed in this suggestion. # A mas…
14794 # For any field set to true, the Size has
14799 …tionState": { # A mask that indicates which of the fields on the base # A mask that indicates whic…
14806 … indicates which of the fields on the base ImageProperties have been changed in this suggestion. #…
14809 … indicates which of the fields on the base CropProperties have been changed in this suggestion. # …
14831 …hat indicates which of the fields on the base EmbeddedObjectBorder have been changed in this # A m…
14841 …rties": { # Properties of a PositionedObject. # A PositionedObjectProperties that only includes the
14842 # changes made in this suggestion. This can be used along with the
14845 …# The positioning of a PositionedObject. The positioned object is positioned # The positioning of …
14848 # relative to the beginning of the Paragraph
14850 …itude in a single direction in the specified units. # The offset of the left edge of the positione…
14851 # beginning of the Paragraph it is tethered
14852 # to. The exact positioning of the object can depend on other content in the
14853 # document and the document's styling.
14854 "magnitude": 3.14, # The magnitude.
14855 "unit": "A String", # The units for magnitude.
14857 …itude in a single direction in the specified units. # The offset of the top edge of the positioned…
14858 # beginning of the Paragraph it is tethered
14859 # to. The exact positioning of the object can depend on other content in the
14860 # document and the document's styling.
14861 "magnitude": 3.14, # The magnitude.
14862 "unit": "A String", # The units for magnitude.
14864 "layout": "A String", # The layout of this positioned object.
14866 …"embeddedObject": { # An embedded object in the document. # The embedded object of this positioned…
14867 "imageProperties": { # The properties of an image. # The properties of an image.
14868 "angle": 3.14, # The clockwise rotation angle of the image, in radians.
14869 … "contentUri": "A String", # A URI to the image with a default lifetime of 30 minutes.
14870 # This URI is tagged with the account of the requester. Anyone with the URI
14871 # effectively accesses the image as the original requester. Access to the
14872 # image may be lost if the document's sharing settings change.
14873 …"sourceUri": "A String", # The source URI is the URI used to insert the image. The source URI can …
14875 … "brightness": 3.14, # The brightness effect of the image. The value should be in the interval
14877 … "transparency": 3.14, # The transparency effect of the image. The value should be in the interval
14879 … "cropProperties": { # The crop properties of an image. # The crop properties of the image.
14881 # The crop rectangle is represented using fractional offsets from the original
14884 # - If the offset is in the interval (0, 1), the corresponding edge of crop
14885 # rectangle is positioned inside of the image's original bounding rectangle.
14886 … # - If the offset is negative or greater than 1, the corresponding edge of crop
14887 # rectangle is positioned outside of the image's original bounding rectangle.
14888 # - If all offsets and rotation angle are 0, the image is not cropped.
14889 … "offsetBottom": 3.14, # The offset specifies how far inwards the bottom edge of the crop rectangle
14890 # is from the bottom edge of the original content as a fraction of the
14892 … "angle": 3.14, # The clockwise rotation angle of the crop rectangle around its center, in
14893 # radians. Rotation is applied after the offsets.
14894 … "offsetLeft": 3.14, # The offset specifies how far inwards the left edge of the crop rectangle is
14895 # from the left edge of the original content as a fraction of the original
14897 … "offsetRight": 3.14, # The offset specifies how far inwards the right edge of the crop rectangle
14898 # is from the right edge of the original content as a fraction of the
14900 … "offsetTop": 3.14, # The offset specifies how far inwards the top edge of the crop rectangle is
14901 # from the top edge of the original content as a fraction of the original
14904 … "contrast": 3.14, # The contrast effect of the image. The value should be in the interval
14907 …"description": "A String", # The description of the embedded object. The `title` and `description`…
14909 … "title": "A String", # The title of the embedded object. The `title` and `description` are both
14911 …"embeddedDrawingProperties": { # The properties of an embedded drawing. # The properties of an emb…
14913 …"linkedContentReference": { # A reference to the external linked source content. # A reference to
14914 # a reference to the source Sheets chart when the embedded object is a linked
14917 # If unset, then the embedded object is not linked.
14918 …: { # A reference to a linked chart embedded from Google Sheets. # A reference to the linked chart.
14919 …"spreadsheetId": "A String", # The ID of the Google Sheets spreadsheet that contains the source ch…
14920 … "chartId": 42, # The ID of the specific chart in the Google Sheets spreadsheet that is
14924 …"embeddedObjectBorder": { # A border around an EmbeddedObject. # The border of the embedded object.
14925 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
14928 "rgbColor": { # An RGB color. # The RGB color value.
14929 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
14930 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
14931 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
14935 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
14936 "magnitude": 3.14, # The magnitude.
14937 "unit": "A String", # The units for magnitude.
14939 "dashStyle": "A String", # The dash style of the border.
14940 "propertyState": "A String", # The property state of the border property.
14942 …ginBottom": { # A magnitude in a single direction in the specified units. # The bottom margin of t…
14943 "magnitude": 3.14, # The magnitude.
14944 "unit": "A String", # The units for magnitude.
14946 …marginLeft": { # A magnitude in a single direction in the specified units. # The left margin of th…
14947 "magnitude": 3.14, # The magnitude.
14948 "unit": "A String", # The units for magnitude.
14950 …rginRight": { # A magnitude in a single direction in the specified units. # The right margin of th…
14951 "magnitude": 3.14, # The magnitude.
14952 "unit": "A String", # The units for magnitude.
14954 …"marginTop": { # A magnitude in a single direction in the specified units. # The top margin of the
14955 "magnitude": 3.14, # The magnitude.
14956 "unit": "A String", # The units for magnitude.
14958 "size": { # A width and height. # The visible size of the image after cropping.
14959 … "width": { # A magnitude in a single direction in the specified units. # The width of the object.
14960 "magnitude": 3.14, # The magnitude.
14961 "unit": "A String", # The units for magnitude.
14963 …"height": { # A magnitude in a single direction in the specified units. # The height of the object.
14964 "magnitude": 3.14, # The magnitude.
14965 "unit": "A String", # The units for magnitude.
14972 "objectId": "A String", # The ID of this positioned object.
14973 …"suggestedInsertionId": "A String", # The suggested insertion ID. If empty, then this is not a sug…
14977 "inlineObjects": { # The inline objects in the document, keyed by object ID.
14980 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
14984 …"inlineObjectProperties": { # Properties of an InlineObject. # The properties of this inline objec…
14985 …"embeddedObject": { # An embedded object in the document. # The embedded object of this inline obj…
14986 "imageProperties": { # The properties of an image. # The properties of an image.
14987 "angle": 3.14, # The clockwise rotation angle of the image, in radians.
14988 "contentUri": "A String", # A URI to the image with a default lifetime of 30 minutes.
14989 # This URI is tagged with the account of the requester. Anyone with the URI
14990 # effectively accesses the image as the original requester. Access to the
14991 # image may be lost if the document's sharing settings change.
14992 …"sourceUri": "A String", # The source URI is the URI used to insert the image. The source URI can …
14994 … "brightness": 3.14, # The brightness effect of the image. The value should be in the interval
14996 … "transparency": 3.14, # The transparency effect of the image. The value should be in the interval
14998 … "cropProperties": { # The crop properties of an image. # The crop properties of the image.
15000 # The crop rectangle is represented using fractional offsets from the original
15003 # - If the offset is in the interval (0, 1), the corresponding edge of crop
15004 # rectangle is positioned inside of the image's original bounding rectangle.
15005 # - If the offset is negative or greater than 1, the corresponding edge of crop
15006 # rectangle is positioned outside of the image's original bounding rectangle.
15007 # - If all offsets and rotation angle are 0, the image is not cropped.
15008 … "offsetBottom": 3.14, # The offset specifies how far inwards the bottom edge of the crop rectangle
15009 # is from the bottom edge of the original content as a fraction of the
15011 … "angle": 3.14, # The clockwise rotation angle of the crop rectangle around its center, in
15012 # radians. Rotation is applied after the offsets.
15013 … "offsetLeft": 3.14, # The offset specifies how far inwards the left edge of the crop rectangle is
15014 # from the left edge of the original content as a fraction of the original
15016 … "offsetRight": 3.14, # The offset specifies how far inwards the right edge of the crop rectangle
15017 # is from the right edge of the original content as a fraction of the
15019 … "offsetTop": 3.14, # The offset specifies how far inwards the top edge of the crop rectangle is
15020 # from the top edge of the original content as a fraction of the original
15023 … "contrast": 3.14, # The contrast effect of the image. The value should be in the interval
15026 …"description": "A String", # The description of the embedded object. The `title` and `description`…
15028 … "title": "A String", # The title of the embedded object. The `title` and `description` are both
15030 …"embeddedDrawingProperties": { # The properties of an embedded drawing. # The properties of an emb…
15032 …"linkedContentReference": { # A reference to the external linked source content. # A reference to
15033 # a reference to the source Sheets chart when the embedded object is a linked
15036 # If unset, then the embedded object is not linked.
15037 …: { # A reference to a linked chart embedded from Google Sheets. # A reference to the linked chart.
15038 …"spreadsheetId": "A String", # The ID of the Google Sheets spreadsheet that contains the source ch…
15039 … "chartId": 42, # The ID of the specific chart in the Google Sheets spreadsheet that is
15043 …"embeddedObjectBorder": { # A border around an EmbeddedObject. # The border of the embedded object.
15044 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
15047 "rgbColor": { # An RGB color. # The RGB color value.
15048 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
15049 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
15050 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
15054 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
15055 "magnitude": 3.14, # The magnitude.
15056 "unit": "A String", # The units for magnitude.
15058 "dashStyle": "A String", # The dash style of the border.
15059 "propertyState": "A String", # The property state of the border property.
15061 …ginBottom": { # A magnitude in a single direction in the specified units. # The bottom margin of t…
15062 "magnitude": 3.14, # The magnitude.
15063 "unit": "A String", # The units for magnitude.
15065 …marginLeft": { # A magnitude in a single direction in the specified units. # The left margin of th…
15066 "magnitude": 3.14, # The magnitude.
15067 "unit": "A String", # The units for magnitude.
15069 …rginRight": { # A magnitude in a single direction in the specified units. # The right margin of th…
15070 "magnitude": 3.14, # The magnitude.
15071 "unit": "A String", # The units for magnitude.
15073 …"marginTop": { # A magnitude in a single direction in the specified units. # The top margin of the
15074 "magnitude": 3.14, # The magnitude.
15075 "unit": "A String", # The units for magnitude.
15077 "size": { # A width and height. # The visible size of the image after cropping.
15078 … "width": { # A magnitude in a single direction in the specified units. # The width of the object.
15079 "magnitude": 3.14, # The magnitude.
15080 "unit": "A String", # The units for magnitude.
15082 …"height": { # A magnitude in a single direction in the specified units. # The height of the object.
15083 "magnitude": 3.14, # The magnitude.
15084 "unit": "A String", # The units for magnitude.
15089 …"suggestedInlineObjectPropertiesChanges": { # The suggested changes to the inline object propertie…
15093 # that only includes the changes made in this suggestion. This can be used
15094 # along with the inline_object_properties_suggestion_state
15096 …"embeddedObject": { # An embedded object in the document. # The embedded object of this inline obj…
15097 "imageProperties": { # The properties of an image. # The properties of an image.
15098 "angle": 3.14, # The clockwise rotation angle of the image, in radians.
15099 … "contentUri": "A String", # A URI to the image with a default lifetime of 30 minutes.
15100 # This URI is tagged with the account of the requester. Anyone with the URI
15101 # effectively accesses the image as the original requester. Access to the
15102 # image may be lost if the document's sharing settings change.
15103 …"sourceUri": "A String", # The source URI is the URI used to insert the image. The source URI can …
15105 … "brightness": 3.14, # The brightness effect of the image. The value should be in the interval
15107 … "transparency": 3.14, # The transparency effect of the image. The value should be in the interval
15109 … "cropProperties": { # The crop properties of an image. # The crop properties of the image.
15111 # The crop rectangle is represented using fractional offsets from the original
15114 # - If the offset is in the interval (0, 1), the corresponding edge of crop
15115 # rectangle is positioned inside of the image's original bounding rectangle.
15116 … # - If the offset is negative or greater than 1, the corresponding edge of crop
15117 # rectangle is positioned outside of the image's original bounding rectangle.
15118 # - If all offsets and rotation angle are 0, the image is not cropped.
15119 … "offsetBottom": 3.14, # The offset specifies how far inwards the bottom edge of the crop rectangle
15120 # is from the bottom edge of the original content as a fraction of the
15122 … "angle": 3.14, # The clockwise rotation angle of the crop rectangle around its center, in
15123 # radians. Rotation is applied after the offsets.
15124 … "offsetLeft": 3.14, # The offset specifies how far inwards the left edge of the crop rectangle is
15125 # from the left edge of the original content as a fraction of the original
15127 … "offsetRight": 3.14, # The offset specifies how far inwards the right edge of the crop rectangle
15128 # is from the right edge of the original content as a fraction of the
15130 … "offsetTop": 3.14, # The offset specifies how far inwards the top edge of the crop rectangle is
15131 # from the top edge of the original content as a fraction of the original
15134 … "contrast": 3.14, # The contrast effect of the image. The value should be in the interval
15137 …"description": "A String", # The description of the embedded object. The `title` and `description`…
15139 … "title": "A String", # The title of the embedded object. The `title` and `description` are both
15141 …"embeddedDrawingProperties": { # The properties of an embedded drawing. # The properties of an emb…
15143 …"linkedContentReference": { # A reference to the external linked source content. # A reference to
15144 # a reference to the source Sheets chart when the embedded object is a linked
15147 # If unset, then the embedded object is not linked.
15148 …: { # A reference to a linked chart embedded from Google Sheets. # A reference to the linked chart.
15149 …"spreadsheetId": "A String", # The ID of the Google Sheets spreadsheet that contains the source ch…
15150 … "chartId": 42, # The ID of the specific chart in the Google Sheets spreadsheet that is
15154 …"embeddedObjectBorder": { # A border around an EmbeddedObject. # The border of the embedded object.
15155 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
15158 "rgbColor": { # An RGB color. # The RGB color value.
15159 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
15160 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
15161 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
15165 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
15166 "magnitude": 3.14, # The magnitude.
15167 "unit": "A String", # The units for magnitude.
15169 "dashStyle": "A String", # The dash style of the border.
15170 "propertyState": "A String", # The property state of the border property.
15172 …ginBottom": { # A magnitude in a single direction in the specified units. # The bottom margin of t…
15173 "magnitude": 3.14, # The magnitude.
15174 "unit": "A String", # The units for magnitude.
15176 …marginLeft": { # A magnitude in a single direction in the specified units. # The left margin of th…
15177 "magnitude": 3.14, # The magnitude.
15178 "unit": "A String", # The units for magnitude.
15180 …rginRight": { # A magnitude in a single direction in the specified units. # The right margin of th…
15181 "magnitude": 3.14, # The magnitude.
15182 "unit": "A String", # The units for magnitude.
15184 …"marginTop": { # A magnitude in a single direction in the specified units. # The top margin of the
15185 "magnitude": 3.14, # The magnitude.
15186 "unit": "A String", # The units for magnitude.
15188 "size": { # A width and height. # The visible size of the image after cropping.
15189 … "width": { # A magnitude in a single direction in the specified units. # The width of the object.
15190 "magnitude": 3.14, # The magnitude.
15191 "unit": "A String", # The units for magnitude.
15193 …"height": { # A magnitude in a single direction in the specified units. # The height of the object.
15194 "magnitude": 3.14, # The magnitude.
15195 "unit": "A String", # The units for magnitude.
15200 …te": { # A mask that indicates which of the fields on the base # A mask that indicates which of th…
15206 … indicates which of the fields on the base EmbeddedObject have been changed in this suggestion. # …
15209 …tionState": { # A mask that indicates which of the fields on the base # A mask that indicates whic…
15214 …hat indicates which of the fields on the base SheetsChartReference have been changed in this # A m…
15221 … that indicates which of the fields on the base Size have been changed in this suggestion. # A mas…
15223 # For any field set to true, the Size has
15228 …tionState": { # A mask that indicates which of the fields on the base # A mask that indicates whic…
15235 … indicates which of the fields on the base ImageProperties have been changed in this suggestion. #…
15238 … indicates which of the fields on the base CropProperties have been changed in this suggestion. # …
15260 …hat indicates which of the fields on the base EmbeddedObjectBorder have been changed in this # A m…
15272 "objectId": "A String", # The ID of this inline object.
15273 …"suggestedInsertionId": "A String", # The suggested insertion ID. If empty, then this is not a sug…
15277 …"revisionId": "A String", # The revision ID of the document. Can be used in update requests to spe…
15278 # which revision of a document to apply updates to and how the request should
15279 # behave if the document has been edited since that revision. Only populated
15280 # if the user has edit access to the document.
15282 # The format of the revision ID may change over time, so it should be treated
15284 # hours after it has been returned and cannot be shared across users. If the
15285 # revision ID is unchanged between calls, then the document has not changed.
15286 # Conversely, a changed ID (for the same document and user) usually means the
15289 "documentId": "A String", # The ID of the document.
15298 An object of the form:
15301 "body": { # The document body. # The main body of the document.
15303 # The body typically contains the full document contents except for
15306 "content": [ # The contents of the body.
15308 # The indexes for the body's content begin at zero.
15309 { # A StructuralElement describes content that provides structure to the
15311 … "endIndex": 42, # The zero-based end index of this structural element, exclusive, in UTF-16
15314 # section break. A section is a range of content which has the same
15316 # the start of a new section, and the section style applies to the section
15317 # after the section break.
15319 # The document body always begins with a section break.
15320 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
15324 …"sectionStyle": { # The styling that applies to a section. # The style of the section after this s…
15325 …"contentDirection": "A String", # The content direction of this section. If unset, the value defau…
15327 "columnProperties": [ # The section's columns properties.
15329 # If empty, the section contains one column with the default properties in
15330 # the Docs editor.
15332 … "width": { # A magnitude in a single direction in the specified units. # The width of the column.
15333 "magnitude": 3.14, # The magnitude.
15334 "unit": "A String", # The units for magnitude.
15336 …ingEnd": { # A magnitude in a single direction in the specified units. # The padding at the end of…
15337 "magnitude": 3.14, # The magnitude.
15338 "unit": "A String", # The units for magnitude.
15342 "columnSeparatorStyle": "A String", # The style of column separators.
15344 # This style can be set even when there is one column in the section.
15346 …"suggestedInsertionIds": [ # The suggested insertion IDs. A SectionBreak may have multiple inserti…
15354 "content": [ # The content of the table of contents.
15357 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
15361 …"suggestedInsertionIds": [ # The suggested insertion IDs. A TableOfContents may have multiple inse…
15367 … "startIndex": 42, # The zero-based start index of this structural element, in UTF-16 code
15372 "elements": [ # The content of the paragraph broken down into its component parts.
15375 … "endIndex": 42, # The zero-base end index of this paragraph element, exclusive, in UTF-16
15379 "suggestedInsertionIds": [ # The suggested insertion IDs. A Equation
15384 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
15390 # column break. A column break makes the subsequent text start at the top of
15391 # the next column.
15392 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Colu…
15394 # Similar to text content, like text runs and footnote references, the text
15395 … # style of a column break can affect content layout as well as the styling of
15399 # text style's parent depends on where the text style is defined:
15401 # * The TextStyle of text in a Paragraph
15402 # inherits from the paragraph's corresponding named style type.
15403 # * The TextStyle on a named style
15404 # inherits from the normal text named style.
15405 # * The TextStyle of the normal text named style inherits
15406 # from the default text style in the Docs editor.
15407 # * The TextStyle on a Paragraph element
15408 # that is contained in a table may inherit its text style from the table
15411 # If the text style does not inherit from a parent, unsetting fields will
15412 # revert the style to a value matching the defaults in the Docs editor.
15413 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
15414 # or transparent, depending on the `color` field.
15417 "rgbColor": { # An RGB color. # The RGB color value.
15418 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
15419 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
15420 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
15424 "italic": True or False, # Whether or not the text is italicized.
15425 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
15428 … # rendered in a smaller font size, computed based on the `font_size` field.
15429 # The `font_size` itself is not affected by changes in this field.
15430 "strikethrough": True or False, # Whether or not the text is struck through.
15431 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
15434 # `bold`, the `weighted_font_family` is applied first, then `bold`.
15441 "fontFamily": "A String", # The font family of the text.
15443 # The font family can be any font from the Font menu in Docs or from
15444 # [Google Fonts] (https://fonts.google.com/). If the font name is
15445 # unrecognized, the text is rendered in `Arial`.
15446 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
15447 … # `100` between `100` and `900`, inclusive. This range corresponds to the
15448 # numerical values described in the CSS 2.1 Specification,
15452 # The default value is `400` ("normal").
15454 … # The font weight makes up just one component of the rendered font weight.
15455 … # The rendered weight is determined by a combination of the `weight` and the
15458 # * If the text is bold and the weight is less than `400`, the rendered
15460 … # * If the text is bold and the weight is greater than or equal to `400` but
15461 # is less than `700`, the rendered weight is `700`.
15462 … # * If the weight is greater than or equal to `700`, the rendered weight is
15463 # equal to the weight.
15464 # * If the text is not bold, the rendered weight is equal to the weight.
15466 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
15467 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
15468 "magnitude": 3.14, # The magnitude.
15469 "unit": "A String", # The units for magnitude.
15471 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
15472 # or transparent, depending on the `color` field.
15475 "rgbColor": { # An RGB color. # The RGB color value.
15476 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
15477 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
15478 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
15482 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
15485 # Changing the link in an update request causes some other changes to the
15486 # text style of the range:
15488 # * When setting a link, the text foreground color will be updated to the
15489 … # default link color and the text will be underlined. If these fields are
15490 # modified in the same request, those values will be used instead of the
15493 # also update the existing link to point to the new URL.
15496 # will separate the newline character(s) into their own text runs. The
15497 … # link will be applied separately to the runs before and after the newline.
15498 # * Removing a link will update the text style of the range to match the
15499 … # style of the preceding text (or the default text styles if the preceding
15500 … # text is another link) unless different styles are being set in the same
15502 "headingId": "A String", # The ID of a heading in this document.
15504 "bookmarkId": "A String", # The ID of a bookmark in this document.
15506 "underline": True or False, # Whether or not the text is underlined.
15507 "bold": True or False, # Whether or not the text is rendered as bold.
15509 …"suggestedInsertionIds": [ # The suggested insertion IDs. A ColumnBreak may have multiple insertio…
15514 …"suggestedTextStyleChanges": { # The suggested text style changes to this ColumnBreak, keyed by su…
15517 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
15518 # the changes made in this suggestion. This can be used along with the
15523 # text style's parent depends on where the text style is defined:
15525 # * The TextStyle of text in a Paragraph
15526 # inherits from the paragraph's corresponding named style type.
15527 # * The TextStyle on a named style
15528 # inherits from the normal text named style.
15529 # * The TextStyle of the normal text named style inherits
15530 # from the default text style in the Docs editor.
15531 # * The TextStyle on a Paragraph element
15532 … # that is contained in a table may inherit its text style from the table
15535 … # If the text style does not inherit from a parent, unsetting fields will
15536 # revert the style to a value matching the defaults in the Docs editor.
15537 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
15538 # or transparent, depending on the `color` field.
15541 "rgbColor": { # An RGB color. # The RGB color value.
15542 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
15543 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
15544 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
15548 "italic": True or False, # Whether or not the text is italicized.
15549 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
15552 … # rendered in a smaller font size, computed based on the `font_size` field.
15553 # The `font_size` itself is not affected by changes in this field.
15554 … "strikethrough": True or False, # Whether or not the text is struck through.
15555 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
15558 # `bold`, the `weighted_font_family` is applied first, then `bold`.
15565 "fontFamily": "A String", # The font family of the text.
15567 # The font family can be any font from the Font menu in Docs or from
15568 # [Google Fonts] (https://fonts.google.com/). If the font name is
15569 # unrecognized, the text is rendered in `Arial`.
15570 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
15571 … # `100` between `100` and `900`, inclusive. This range corresponds to the
15572 # numerical values described in the CSS 2.1 Specification,
15576 # The default value is `400` ("normal").
15578 … # The font weight makes up just one component of the rendered font weight.
15579 … # The rendered weight is determined by a combination of the `weight` and the
15582 … # * If the text is bold and the weight is less than `400`, the rendered
15584 … # * If the text is bold and the weight is greater than or equal to `400` but
15585 # is less than `700`, the rendered weight is `700`.
15586 … # * If the weight is greater than or equal to `700`, the rendered weight is
15587 # equal to the weight.
15588 … # * If the text is not bold, the rendered weight is equal to the weight.
15590 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
15591 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
15592 "magnitude": 3.14, # The magnitude.
15593 "unit": "A String", # The units for magnitude.
15595 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
15596 # or transparent, depending on the `color` field.
15599 "rgbColor": { # An RGB color. # The RGB color value.
15600 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
15601 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
15602 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
15606 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
15609 … # Changing the link in an update request causes some other changes to the
15610 # text style of the range:
15612 … # * When setting a link, the text foreground color will be updated to the
15613 … # default link color and the text will be underlined. If these fields are
15614 … # modified in the same request, those values will be used instead of the
15617 # also update the existing link to point to the new URL.
15620 … # will separate the newline character(s) into their own text runs. The
15621 … # link will be applied separately to the runs before and after the newline.
15622 … # * Removing a link will update the text style of the range to match the
15623 … # style of the preceding text (or the default text styles if the preceding
15624 … # text is another link) unless different styles are being set in the same
15626 "headingId": "A String", # The ID of a heading in this document.
15628 "bookmarkId": "A String", # The ID of a bookmark in this document.
15630 "underline": True or False, # Whether or not the text is underlined.
15631 "bold": True or False, # Whether or not the text is rendered as bold.
15633 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
15649 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
15654 … "startIndex": 42, # The zero-based start index of this paragraph element, in UTF-16 code units.
15656 # page break. A page break makes the subsequent text start at the top of the
15658 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Page…
15660 # Similar to text content, like text runs and footnote references, the text
15661 # style of a page break can affect content layout as well as the styling of
15665 # text style's parent depends on where the text style is defined:
15667 # * The TextStyle of text in a Paragraph
15668 # inherits from the paragraph's corresponding named style type.
15669 # * The TextStyle on a named style
15670 # inherits from the normal text named style.
15671 # * The TextStyle of the normal text named style inherits
15672 # from the default text style in the Docs editor.
15673 # * The TextStyle on a Paragraph element
15674 # that is contained in a table may inherit its text style from the table
15677 # If the text style does not inherit from a parent, unsetting fields will
15678 # revert the style to a value matching the defaults in the Docs editor.
15679 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
15680 # or transparent, depending on the `color` field.
15683 "rgbColor": { # An RGB color. # The RGB color value.
15684 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
15685 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
15686 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
15690 "italic": True or False, # Whether or not the text is italicized.
15691 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
15694 … # rendered in a smaller font size, computed based on the `font_size` field.
15695 # The `font_size` itself is not affected by changes in this field.
15696 "strikethrough": True or False, # Whether or not the text is struck through.
15697 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
15700 # `bold`, the `weighted_font_family` is applied first, then `bold`.
15707 "fontFamily": "A String", # The font family of the text.
15709 # The font family can be any font from the Font menu in Docs or from
15710 # [Google Fonts] (https://fonts.google.com/). If the font name is
15711 # unrecognized, the text is rendered in `Arial`.
15712 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
15713 … # `100` between `100` and `900`, inclusive. This range corresponds to the
15714 # numerical values described in the CSS 2.1 Specification,
15718 # The default value is `400` ("normal").
15720 … # The font weight makes up just one component of the rendered font weight.
15721 … # The rendered weight is determined by a combination of the `weight` and the
15724 # * If the text is bold and the weight is less than `400`, the rendered
15726 … # * If the text is bold and the weight is greater than or equal to `400` but
15727 # is less than `700`, the rendered weight is `700`.
15728 … # * If the weight is greater than or equal to `700`, the rendered weight is
15729 # equal to the weight.
15730 # * If the text is not bold, the rendered weight is equal to the weight.
15732 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
15733 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
15734 "magnitude": 3.14, # The magnitude.
15735 "unit": "A String", # The units for magnitude.
15737 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
15738 # or transparent, depending on the `color` field.
15741 "rgbColor": { # An RGB color. # The RGB color value.
15742 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
15743 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
15744 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
15748 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
15751 # Changing the link in an update request causes some other changes to the
15752 # text style of the range:
15754 # * When setting a link, the text foreground color will be updated to the
15755 … # default link color and the text will be underlined. If these fields are
15756 # modified in the same request, those values will be used instead of the
15759 # also update the existing link to point to the new URL.
15762 # will separate the newline character(s) into their own text runs. The
15763 … # link will be applied separately to the runs before and after the newline.
15764 # * Removing a link will update the text style of the range to match the
15765 … # style of the preceding text (or the default text styles if the preceding
15766 … # text is another link) unless different styles are being set in the same
15768 "headingId": "A String", # The ID of a heading in this document.
15770 "bookmarkId": "A String", # The ID of a bookmark in this document.
15772 "underline": True or False, # Whether or not the text is underlined.
15773 "bold": True or False, # Whether or not the text is rendered as bold.
15775 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
15779 …"suggestedTextStyleChanges": { # The suggested text style changes to this PageBreak, keyed by sugg…
15781 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
15782 # the changes made in this suggestion. This can be used along with the
15787 # text style's parent depends on where the text style is defined:
15789 # * The TextStyle of text in a Paragraph
15790 # inherits from the paragraph's corresponding named style type.
15791 # * The TextStyle on a named style
15792 # inherits from the normal text named style.
15793 # * The TextStyle of the normal text named style inherits
15794 # from the default text style in the Docs editor.
15795 # * The TextStyle on a Paragraph element
15796 … # that is contained in a table may inherit its text style from the table
15799 … # If the text style does not inherit from a parent, unsetting fields will
15800 # revert the style to a value matching the defaults in the Docs editor.
15801 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
15802 # or transparent, depending on the `color` field.
15805 "rgbColor": { # An RGB color. # The RGB color value.
15806 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
15807 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
15808 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
15812 "italic": True or False, # Whether or not the text is italicized.
15813 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
15816 … # rendered in a smaller font size, computed based on the `font_size` field.
15817 # The `font_size` itself is not affected by changes in this field.
15818 … "strikethrough": True or False, # Whether or not the text is struck through.
15819 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
15822 # `bold`, the `weighted_font_family` is applied first, then `bold`.
15829 "fontFamily": "A String", # The font family of the text.
15831 # The font family can be any font from the Font menu in Docs or from
15832 # [Google Fonts] (https://fonts.google.com/). If the font name is
15833 # unrecognized, the text is rendered in `Arial`.
15834 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
15835 … # `100` between `100` and `900`, inclusive. This range corresponds to the
15836 # numerical values described in the CSS 2.1 Specification,
15840 # The default value is `400` ("normal").
15842 … # The font weight makes up just one component of the rendered font weight.
15843 … # The rendered weight is determined by a combination of the `weight` and the
15846 … # * If the text is bold and the weight is less than `400`, the rendered
15848 … # * If the text is bold and the weight is greater than or equal to `400` but
15849 # is less than `700`, the rendered weight is `700`.
15850 … # * If the weight is greater than or equal to `700`, the rendered weight is
15851 # equal to the weight.
15852 … # * If the text is not bold, the rendered weight is equal to the weight.
15854 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
15855 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
15856 "magnitude": 3.14, # The magnitude.
15857 "unit": "A String", # The units for magnitude.
15859 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
15860 # or transparent, depending on the `color` field.
15863 "rgbColor": { # An RGB color. # The RGB color value.
15864 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
15865 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
15866 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
15870 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
15873 … # Changing the link in an update request causes some other changes to the
15874 # text style of the range:
15876 … # * When setting a link, the text foreground color will be updated to the
15877 … # default link color and the text will be underlined. If these fields are
15878 … # modified in the same request, those values will be used instead of the
15881 # also update the existing link to point to the new URL.
15884 … # will separate the newline character(s) into their own text runs. The
15885 … # link will be applied separately to the runs before and after the newline.
15886 … # * Removing a link will update the text style of the range to match the
15887 … # style of the preceding text (or the default text styles if the preceding
15888 … # text is another link) unless different styles are being set in the same
15890 "headingId": "A String", # The ID of a heading in this document.
15892 "bookmarkId": "A String", # The ID of a bookmark in this document.
15894 "underline": True or False, # Whether or not the text is underlined.
15895 "bold": True or False, # Whether or not the text is rendered as bold.
15897 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
15913 "suggestedInsertionIds": [ # The suggested insertion IDs. A PageBreak
15921 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Hori…
15923 # Similar to text content, like text runs and footnote references, the text
15924 … # style of a horizontal rule can affect content layout as well as the styling
15928 # text style's parent depends on where the text style is defined:
15930 # * The TextStyle of text in a Paragraph
15931 # inherits from the paragraph's corresponding named style type.
15932 # * The TextStyle on a named style
15933 # inherits from the normal text named style.
15934 # * The TextStyle of the normal text named style inherits
15935 # from the default text style in the Docs editor.
15936 # * The TextStyle on a Paragraph element
15937 # that is contained in a table may inherit its text style from the table
15940 # If the text style does not inherit from a parent, unsetting fields will
15941 # revert the style to a value matching the defaults in the Docs editor.
15942 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
15943 # or transparent, depending on the `color` field.
15946 "rgbColor": { # An RGB color. # The RGB color value.
15947 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
15948 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
15949 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
15953 "italic": True or False, # Whether or not the text is italicized.
15954 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
15957 … # rendered in a smaller font size, computed based on the `font_size` field.
15958 # The `font_size` itself is not affected by changes in this field.
15959 "strikethrough": True or False, # Whether or not the text is struck through.
15960 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
15963 # `bold`, the `weighted_font_family` is applied first, then `bold`.
15970 "fontFamily": "A String", # The font family of the text.
15972 # The font family can be any font from the Font menu in Docs or from
15973 # [Google Fonts] (https://fonts.google.com/). If the font name is
15974 # unrecognized, the text is rendered in `Arial`.
15975 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
15976 … # `100` between `100` and `900`, inclusive. This range corresponds to the
15977 # numerical values described in the CSS 2.1 Specification,
15981 # The default value is `400` ("normal").
15983 … # The font weight makes up just one component of the rendered font weight.
15984 … # The rendered weight is determined by a combination of the `weight` and the
15987 # * If the text is bold and the weight is less than `400`, the rendered
15989 … # * If the text is bold and the weight is greater than or equal to `400` but
15990 # is less than `700`, the rendered weight is `700`.
15991 … # * If the weight is greater than or equal to `700`, the rendered weight is
15992 # equal to the weight.
15993 # * If the text is not bold, the rendered weight is equal to the weight.
15995 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
15996 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
15997 "magnitude": 3.14, # The magnitude.
15998 "unit": "A String", # The units for magnitude.
16000 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
16001 # or transparent, depending on the `color` field.
16004 "rgbColor": { # An RGB color. # The RGB color value.
16005 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
16006 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
16007 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
16011 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
16014 # Changing the link in an update request causes some other changes to the
16015 # text style of the range:
16017 # * When setting a link, the text foreground color will be updated to the
16018 … # default link color and the text will be underlined. If these fields are
16019 # modified in the same request, those values will be used instead of the
16022 # also update the existing link to point to the new URL.
16025 # will separate the newline character(s) into their own text runs. The
16026 … # link will be applied separately to the runs before and after the newline.
16027 # * Removing a link will update the text style of the range to match the
16028 … # style of the preceding text (or the default text styles if the preceding
16029 … # text is another link) unless different styles are being set in the same
16031 "headingId": "A String", # The ID of a heading in this document.
16033 "bookmarkId": "A String", # The ID of a bookmark in this document.
16035 "underline": True or False, # Whether or not the text is underlined.
16036 "bold": True or False, # Whether or not the text is rendered as bold.
16038 …"suggestedInsertionIds": [ # The suggested insertion IDs. A HorizontalRule may have multiple inser…
16043 … "suggestedTextStyleChanges": { # The suggested text style changes to this HorizontalRule, keyed by
16046 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
16047 # the changes made in this suggestion. This can be used along with the
16052 # text style's parent depends on where the text style is defined:
16054 # * The TextStyle of text in a Paragraph
16055 # inherits from the paragraph's corresponding named style type.
16056 # * The TextStyle on a named style
16057 # inherits from the normal text named style.
16058 # * The TextStyle of the normal text named style inherits
16059 # from the default text style in the Docs editor.
16060 # * The TextStyle on a Paragraph element
16061 … # that is contained in a table may inherit its text style from the table
16064 … # If the text style does not inherit from a parent, unsetting fields will
16065 # revert the style to a value matching the defaults in the Docs editor.
16066 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
16067 # or transparent, depending on the `color` field.
16070 "rgbColor": { # An RGB color. # The RGB color value.
16071 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
16072 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
16073 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
16077 "italic": True or False, # Whether or not the text is italicized.
16078 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
16081 … # rendered in a smaller font size, computed based on the `font_size` field.
16082 # The `font_size` itself is not affected by changes in this field.
16083 … "strikethrough": True or False, # Whether or not the text is struck through.
16084 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
16087 # `bold`, the `weighted_font_family` is applied first, then `bold`.
16094 "fontFamily": "A String", # The font family of the text.
16096 # The font family can be any font from the Font menu in Docs or from
16097 # [Google Fonts] (https://fonts.google.com/). If the font name is
16098 # unrecognized, the text is rendered in `Arial`.
16099 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
16100 … # `100` between `100` and `900`, inclusive. This range corresponds to the
16101 # numerical values described in the CSS 2.1 Specification,
16105 # The default value is `400` ("normal").
16107 … # The font weight makes up just one component of the rendered font weight.
16108 … # The rendered weight is determined by a combination of the `weight` and the
16111 … # * If the text is bold and the weight is less than `400`, the rendered
16113 … # * If the text is bold and the weight is greater than or equal to `400` but
16114 # is less than `700`, the rendered weight is `700`.
16115 … # * If the weight is greater than or equal to `700`, the rendered weight is
16116 # equal to the weight.
16117 … # * If the text is not bold, the rendered weight is equal to the weight.
16119 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
16120 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
16121 "magnitude": 3.14, # The magnitude.
16122 "unit": "A String", # The units for magnitude.
16124 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
16125 # or transparent, depending on the `color` field.
16128 "rgbColor": { # An RGB color. # The RGB color value.
16129 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
16130 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
16131 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
16135 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
16138 … # Changing the link in an update request causes some other changes to the
16139 # text style of the range:
16141 … # * When setting a link, the text foreground color will be updated to the
16142 … # default link color and the text will be underlined. If these fields are
16143 … # modified in the same request, those values will be used instead of the
16146 # also update the existing link to point to the new URL.
16149 … # will separate the newline character(s) into their own text runs. The
16150 … # link will be applied separately to the runs before and after the newline.
16151 … # * Removing a link will update the text style of the range to match the
16152 … # style of the preceding text (or the default text styles if the preceding
16153 … # text is another link) unless different styles are being set in the same
16155 "headingId": "A String", # The ID of a heading in this document.
16157 "bookmarkId": "A String", # The ID of a bookmark in this document.
16159 "underline": True or False, # Whether or not the text is underlined.
16160 "bold": True or False, # Whether or not the text is rendered as bold.
16162 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
16178 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
16184 # run of text that all has the same styling.
16185 "content": "A String", # The text of this run.
16187 # Any non-text elements in the run are replaced with the Unicode character
16189 … "textStyle": { # Represents the styling that can be applied to text. # The text style of this run.
16192 # text style's parent depends on where the text style is defined:
16194 # * The TextStyle of text in a Paragraph
16195 # inherits from the paragraph's corresponding named style type.
16196 # * The TextStyle on a named style
16197 # inherits from the normal text named style.
16198 # * The TextStyle of the normal text named style inherits
16199 # from the default text style in the Docs editor.
16200 # * The TextStyle on a Paragraph element
16201 # that is contained in a table may inherit its text style from the table
16204 # If the text style does not inherit from a parent, unsetting fields will
16205 # revert the style to a value matching the defaults in the Docs editor.
16206 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
16207 # or transparent, depending on the `color` field.
16210 "rgbColor": { # An RGB color. # The RGB color value.
16211 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
16212 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
16213 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
16217 "italic": True or False, # Whether or not the text is italicized.
16218 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
16221 … # rendered in a smaller font size, computed based on the `font_size` field.
16222 # The `font_size` itself is not affected by changes in this field.
16223 "strikethrough": True or False, # Whether or not the text is struck through.
16224 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
16227 # `bold`, the `weighted_font_family` is applied first, then `bold`.
16234 "fontFamily": "A String", # The font family of the text.
16236 # The font family can be any font from the Font menu in Docs or from
16237 # [Google Fonts] (https://fonts.google.com/). If the font name is
16238 # unrecognized, the text is rendered in `Arial`.
16239 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
16240 … # `100` between `100` and `900`, inclusive. This range corresponds to the
16241 # numerical values described in the CSS 2.1 Specification,
16245 # The default value is `400` ("normal").
16247 … # The font weight makes up just one component of the rendered font weight.
16248 … # The rendered weight is determined by a combination of the `weight` and the
16251 # * If the text is bold and the weight is less than `400`, the rendered
16253 … # * If the text is bold and the weight is greater than or equal to `400` but
16254 # is less than `700`, the rendered weight is `700`.
16255 … # * If the weight is greater than or equal to `700`, the rendered weight is
16256 # equal to the weight.
16257 # * If the text is not bold, the rendered weight is equal to the weight.
16259 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
16260 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
16261 "magnitude": 3.14, # The magnitude.
16262 "unit": "A String", # The units for magnitude.
16264 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
16265 # or transparent, depending on the `color` field.
16268 "rgbColor": { # An RGB color. # The RGB color value.
16269 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
16270 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
16271 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
16275 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
16278 # Changing the link in an update request causes some other changes to the
16279 # text style of the range:
16281 # * When setting a link, the text foreground color will be updated to the
16282 … # default link color and the text will be underlined. If these fields are
16283 # modified in the same request, those values will be used instead of the
16286 # also update the existing link to point to the new URL.
16289 # will separate the newline character(s) into their own text runs. The
16290 … # link will be applied separately to the runs before and after the newline.
16291 # * Removing a link will update the text style of the range to match the
16292 … # style of the preceding text (or the default text styles if the preceding
16293 … # text is another link) unless different styles are being set in the same
16295 "headingId": "A String", # The ID of a heading in this document.
16297 "bookmarkId": "A String", # The ID of a bookmark in this document.
16299 "underline": True or False, # Whether or not the text is underlined.
16300 "bold": True or False, # Whether or not the text is rendered as bold.
16302 "suggestedInsertionIds": [ # The suggested insertion IDs. A TextRun may
16307 …"suggestedTextStyleChanges": { # The suggested text style changes to this run, keyed by suggestion…
16309 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
16310 # the changes made in this suggestion. This can be used along with the
16315 # text style's parent depends on where the text style is defined:
16317 # * The TextStyle of text in a Paragraph
16318 # inherits from the paragraph's corresponding named style type.
16319 # * The TextStyle on a named style
16320 # inherits from the normal text named style.
16321 # * The TextStyle of the normal text named style inherits
16322 # from the default text style in the Docs editor.
16323 # * The TextStyle on a Paragraph element
16324 … # that is contained in a table may inherit its text style from the table
16327 … # If the text style does not inherit from a parent, unsetting fields will
16328 # revert the style to a value matching the defaults in the Docs editor.
16329 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
16330 # or transparent, depending on the `color` field.
16333 "rgbColor": { # An RGB color. # The RGB color value.
16334 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
16335 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
16336 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
16340 "italic": True or False, # Whether or not the text is italicized.
16341 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
16344 … # rendered in a smaller font size, computed based on the `font_size` field.
16345 # The `font_size` itself is not affected by changes in this field.
16346 … "strikethrough": True or False, # Whether or not the text is struck through.
16347 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
16350 # `bold`, the `weighted_font_family` is applied first, then `bold`.
16357 "fontFamily": "A String", # The font family of the text.
16359 # The font family can be any font from the Font menu in Docs or from
16360 # [Google Fonts] (https://fonts.google.com/). If the font name is
16361 # unrecognized, the text is rendered in `Arial`.
16362 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
16363 … # `100` between `100` and `900`, inclusive. This range corresponds to the
16364 # numerical values described in the CSS 2.1 Specification,
16368 # The default value is `400` ("normal").
16370 … # The font weight makes up just one component of the rendered font weight.
16371 … # The rendered weight is determined by a combination of the `weight` and the
16374 … # * If the text is bold and the weight is less than `400`, the rendered
16376 … # * If the text is bold and the weight is greater than or equal to `400` but
16377 # is less than `700`, the rendered weight is `700`.
16378 … # * If the weight is greater than or equal to `700`, the rendered weight is
16379 # equal to the weight.
16380 … # * If the text is not bold, the rendered weight is equal to the weight.
16382 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
16383 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
16384 "magnitude": 3.14, # The magnitude.
16385 "unit": "A String", # The units for magnitude.
16387 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
16388 # or transparent, depending on the `color` field.
16391 "rgbColor": { # An RGB color. # The RGB color value.
16392 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
16393 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
16394 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
16398 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
16401 … # Changing the link in an update request causes some other changes to the
16402 # text style of the range:
16404 … # * When setting a link, the text foreground color will be updated to the
16405 … # default link color and the text will be underlined. If these fields are
16406 … # modified in the same request, those values will be used instead of the
16409 # also update the existing link to point to the new URL.
16412 … # will separate the newline character(s) into their own text runs. The
16413 … # link will be applied separately to the runs before and after the newline.
16414 … # * Removing a link will update the text style of the range to match the
16415 … # style of the preceding text (or the default text styles if the preceding
16416 … # text is another link) unless different styles are being set in the same
16418 "headingId": "A String", # The ID of a heading in this document.
16420 "bookmarkId": "A String", # The ID of a bookmark in this document.
16422 "underline": True or False, # Whether or not the text is underlined.
16423 "bold": True or False, # Whether or not the text is rendered as bold.
16425 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
16441 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
16447 # spot in the text that is dynamically replaced with content that can change
16449 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Auto…
16452 # text style's parent depends on where the text style is defined:
16454 # * The TextStyle of text in a Paragraph
16455 # inherits from the paragraph's corresponding named style type.
16456 # * The TextStyle on a named style
16457 # inherits from the normal text named style.
16458 # * The TextStyle of the normal text named style inherits
16459 # from the default text style in the Docs editor.
16460 # * The TextStyle on a Paragraph element
16461 # that is contained in a table may inherit its text style from the table
16464 # If the text style does not inherit from a parent, unsetting fields will
16465 # revert the style to a value matching the defaults in the Docs editor.
16466 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
16467 # or transparent, depending on the `color` field.
16470 "rgbColor": { # An RGB color. # The RGB color value.
16471 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
16472 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
16473 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
16477 "italic": True or False, # Whether or not the text is italicized.
16478 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
16481 … # rendered in a smaller font size, computed based on the `font_size` field.
16482 # The `font_size` itself is not affected by changes in this field.
16483 "strikethrough": True or False, # Whether or not the text is struck through.
16484 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
16487 # `bold`, the `weighted_font_family` is applied first, then `bold`.
16494 "fontFamily": "A String", # The font family of the text.
16496 # The font family can be any font from the Font menu in Docs or from
16497 # [Google Fonts] (https://fonts.google.com/). If the font name is
16498 # unrecognized, the text is rendered in `Arial`.
16499 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
16500 … # `100` between `100` and `900`, inclusive. This range corresponds to the
16501 # numerical values described in the CSS 2.1 Specification,
16505 # The default value is `400` ("normal").
16507 … # The font weight makes up just one component of the rendered font weight.
16508 … # The rendered weight is determined by a combination of the `weight` and the
16511 # * If the text is bold and the weight is less than `400`, the rendered
16513 … # * If the text is bold and the weight is greater than or equal to `400` but
16514 # is less than `700`, the rendered weight is `700`.
16515 … # * If the weight is greater than or equal to `700`, the rendered weight is
16516 # equal to the weight.
16517 # * If the text is not bold, the rendered weight is equal to the weight.
16519 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
16520 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
16521 "magnitude": 3.14, # The magnitude.
16522 "unit": "A String", # The units for magnitude.
16524 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
16525 # or transparent, depending on the `color` field.
16528 "rgbColor": { # An RGB color. # The RGB color value.
16529 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
16530 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
16531 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
16535 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
16538 # Changing the link in an update request causes some other changes to the
16539 # text style of the range:
16541 # * When setting a link, the text foreground color will be updated to the
16542 … # default link color and the text will be underlined. If these fields are
16543 # modified in the same request, those values will be used instead of the
16546 # also update the existing link to point to the new URL.
16549 # will separate the newline character(s) into their own text runs. The
16550 … # link will be applied separately to the runs before and after the newline.
16551 # * Removing a link will update the text style of the range to match the
16552 … # style of the preceding text (or the default text styles if the preceding
16553 … # text is another link) unless different styles are being set in the same
16555 "headingId": "A String", # The ID of a heading in this document.
16557 "bookmarkId": "A String", # The ID of a bookmark in this document.
16559 "underline": True or False, # Whether or not the text is underlined.
16560 "bold": True or False, # Whether or not the text is rendered as bold.
16562 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
16566 …"suggestedTextStyleChanges": { # The suggested text style changes to this AutoText, keyed by sugge…
16568 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
16569 # the changes made in this suggestion. This can be used along with the
16574 # text style's parent depends on where the text style is defined:
16576 # * The TextStyle of text in a Paragraph
16577 # inherits from the paragraph's corresponding named style type.
16578 # * The TextStyle on a named style
16579 # inherits from the normal text named style.
16580 # * The TextStyle of the normal text named style inherits
16581 # from the default text style in the Docs editor.
16582 # * The TextStyle on a Paragraph element
16583 … # that is contained in a table may inherit its text style from the table
16586 … # If the text style does not inherit from a parent, unsetting fields will
16587 # revert the style to a value matching the defaults in the Docs editor.
16588 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
16589 # or transparent, depending on the `color` field.
16592 "rgbColor": { # An RGB color. # The RGB color value.
16593 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
16594 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
16595 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
16599 "italic": True or False, # Whether or not the text is italicized.
16600 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
16603 … # rendered in a smaller font size, computed based on the `font_size` field.
16604 # The `font_size` itself is not affected by changes in this field.
16605 … "strikethrough": True or False, # Whether or not the text is struck through.
16606 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
16609 # `bold`, the `weighted_font_family` is applied first, then `bold`.
16616 "fontFamily": "A String", # The font family of the text.
16618 # The font family can be any font from the Font menu in Docs or from
16619 # [Google Fonts] (https://fonts.google.com/). If the font name is
16620 # unrecognized, the text is rendered in `Arial`.
16621 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
16622 … # `100` between `100` and `900`, inclusive. This range corresponds to the
16623 # numerical values described in the CSS 2.1 Specification,
16627 # The default value is `400` ("normal").
16629 … # The font weight makes up just one component of the rendered font weight.
16630 … # The rendered weight is determined by a combination of the `weight` and the
16633 … # * If the text is bold and the weight is less than `400`, the rendered
16635 … # * If the text is bold and the weight is greater than or equal to `400` but
16636 # is less than `700`, the rendered weight is `700`.
16637 … # * If the weight is greater than or equal to `700`, the rendered weight is
16638 # equal to the weight.
16639 … # * If the text is not bold, the rendered weight is equal to the weight.
16641 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
16642 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
16643 "magnitude": 3.14, # The magnitude.
16644 "unit": "A String", # The units for magnitude.
16646 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
16647 # or transparent, depending on the `color` field.
16650 "rgbColor": { # An RGB color. # The RGB color value.
16651 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
16652 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
16653 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
16657 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
16660 … # Changing the link in an update request causes some other changes to the
16661 # text style of the range:
16663 … # * When setting a link, the text foreground color will be updated to the
16664 … # default link color and the text will be underlined. If these fields are
16665 … # modified in the same request, those values will be used instead of the
16668 # also update the existing link to point to the new URL.
16671 … # will separate the newline character(s) into their own text runs. The
16672 … # link will be applied separately to the runs before and after the newline.
16673 … # * Removing a link will update the text style of the range to match the
16674 … # style of the preceding text (or the default text styles if the preceding
16675 … # text is another link) unless different styles are being set in the same
16677 "headingId": "A String", # The ID of a heading in this document.
16679 "bookmarkId": "A String", # The ID of a bookmark in this document.
16681 "underline": True or False, # Whether or not the text is underlined.
16682 "bold": True or False, # Whether or not the text is rendered as bold.
16684 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
16700 "type": "A String", # The type of this auto text.
16701 "suggestedInsertionIds": [ # The suggested insertion IDs. An AutoText
16709 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Inli…
16711 # Similar to text content, like text runs and footnote references, the text
16712 # style of an inline object element can affect content layout as well as the
16716 # text style's parent depends on where the text style is defined:
16718 # * The TextStyle of text in a Paragraph
16719 # inherits from the paragraph's corresponding named style type.
16720 # * The TextStyle on a named style
16721 # inherits from the normal text named style.
16722 # * The TextStyle of the normal text named style inherits
16723 # from the default text style in the Docs editor.
16724 # * The TextStyle on a Paragraph element
16725 # that is contained in a table may inherit its text style from the table
16728 # If the text style does not inherit from a parent, unsetting fields will
16729 # revert the style to a value matching the defaults in the Docs editor.
16730 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
16731 # or transparent, depending on the `color` field.
16734 "rgbColor": { # An RGB color. # The RGB color value.
16735 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
16736 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
16737 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
16741 "italic": True or False, # Whether or not the text is italicized.
16742 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
16745 … # rendered in a smaller font size, computed based on the `font_size` field.
16746 # The `font_size` itself is not affected by changes in this field.
16747 "strikethrough": True or False, # Whether or not the text is struck through.
16748 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
16751 # `bold`, the `weighted_font_family` is applied first, then `bold`.
16758 "fontFamily": "A String", # The font family of the text.
16760 # The font family can be any font from the Font menu in Docs or from
16761 # [Google Fonts] (https://fonts.google.com/). If the font name is
16762 # unrecognized, the text is rendered in `Arial`.
16763 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
16764 … # `100` between `100` and `900`, inclusive. This range corresponds to the
16765 # numerical values described in the CSS 2.1 Specification,
16769 # The default value is `400` ("normal").
16771 … # The font weight makes up just one component of the rendered font weight.
16772 … # The rendered weight is determined by a combination of the `weight` and the
16775 # * If the text is bold and the weight is less than `400`, the rendered
16777 … # * If the text is bold and the weight is greater than or equal to `400` but
16778 # is less than `700`, the rendered weight is `700`.
16779 … # * If the weight is greater than or equal to `700`, the rendered weight is
16780 # equal to the weight.
16781 # * If the text is not bold, the rendered weight is equal to the weight.
16783 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
16784 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
16785 "magnitude": 3.14, # The magnitude.
16786 "unit": "A String", # The units for magnitude.
16788 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
16789 # or transparent, depending on the `color` field.
16792 "rgbColor": { # An RGB color. # The RGB color value.
16793 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
16794 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
16795 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
16799 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
16802 # Changing the link in an update request causes some other changes to the
16803 # text style of the range:
16805 # * When setting a link, the text foreground color will be updated to the
16806 … # default link color and the text will be underlined. If these fields are
16807 # modified in the same request, those values will be used instead of the
16810 # also update the existing link to point to the new URL.
16813 # will separate the newline character(s) into their own text runs. The
16814 … # link will be applied separately to the runs before and after the newline.
16815 # * Removing a link will update the text style of the range to match the
16816 … # style of the preceding text (or the default text styles if the preceding
16817 … # text is another link) unless different styles are being set in the same
16819 "headingId": "A String", # The ID of a heading in this document.
16821 "bookmarkId": "A String", # The ID of a bookmark in this document.
16823 "underline": True or False, # Whether or not the text is underlined.
16824 "bold": True or False, # Whether or not the text is rendered as bold.
16826 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
16830 …"suggestedTextStyleChanges": { # The suggested text style changes to this InlineObject, keyed by s…
16833 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
16834 # the changes made in this suggestion. This can be used along with the
16839 # text style's parent depends on where the text style is defined:
16841 # * The TextStyle of text in a Paragraph
16842 # inherits from the paragraph's corresponding named style type.
16843 # * The TextStyle on a named style
16844 # inherits from the normal text named style.
16845 # * The TextStyle of the normal text named style inherits
16846 # from the default text style in the Docs editor.
16847 # * The TextStyle on a Paragraph element
16848 … # that is contained in a table may inherit its text style from the table
16851 … # If the text style does not inherit from a parent, unsetting fields will
16852 # revert the style to a value matching the defaults in the Docs editor.
16853 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
16854 # or transparent, depending on the `color` field.
16857 "rgbColor": { # An RGB color. # The RGB color value.
16858 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
16859 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
16860 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
16864 "italic": True or False, # Whether or not the text is italicized.
16865 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
16868 … # rendered in a smaller font size, computed based on the `font_size` field.
16869 # The `font_size` itself is not affected by changes in this field.
16870 … "strikethrough": True or False, # Whether or not the text is struck through.
16871 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
16874 # `bold`, the `weighted_font_family` is applied first, then `bold`.
16881 "fontFamily": "A String", # The font family of the text.
16883 # The font family can be any font from the Font menu in Docs or from
16884 # [Google Fonts] (https://fonts.google.com/). If the font name is
16885 # unrecognized, the text is rendered in `Arial`.
16886 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
16887 … # `100` between `100` and `900`, inclusive. This range corresponds to the
16888 # numerical values described in the CSS 2.1 Specification,
16892 # The default value is `400` ("normal").
16894 … # The font weight makes up just one component of the rendered font weight.
16895 … # The rendered weight is determined by a combination of the `weight` and the
16898 … # * If the text is bold and the weight is less than `400`, the rendered
16900 … # * If the text is bold and the weight is greater than or equal to `400` but
16901 # is less than `700`, the rendered weight is `700`.
16902 … # * If the weight is greater than or equal to `700`, the rendered weight is
16903 # equal to the weight.
16904 … # * If the text is not bold, the rendered weight is equal to the weight.
16906 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
16907 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
16908 "magnitude": 3.14, # The magnitude.
16909 "unit": "A String", # The units for magnitude.
16911 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
16912 # or transparent, depending on the `color` field.
16915 "rgbColor": { # An RGB color. # The RGB color value.
16916 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
16917 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
16918 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
16922 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
16925 … # Changing the link in an update request causes some other changes to the
16926 # text style of the range:
16928 … # * When setting a link, the text foreground color will be updated to the
16929 … # default link color and the text will be underlined. If these fields are
16930 … # modified in the same request, those values will be used instead of the
16933 # also update the existing link to point to the new URL.
16936 … # will separate the newline character(s) into their own text runs. The
16937 … # link will be applied separately to the runs before and after the newline.
16938 … # * Removing a link will update the text style of the range to match the
16939 … # style of the preceding text (or the default text styles if the preceding
16940 … # text is another link) unless different styles are being set in the same
16942 "headingId": "A String", # The ID of a heading in this document.
16944 "bookmarkId": "A String", # The ID of a bookmark in this document.
16946 "underline": True or False, # Whether or not the text is underlined.
16947 "bold": True or False, # Whether or not the text is rendered as bold.
16949 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
16965 "inlineObjectId": "A String", # The ID of the InlineObject this
16967 …"suggestedInsertionIds": [ # The suggested insertion IDs. An InlineObjectElement may have multiple…
16974 # footnote reference. A footnote reference is the inline content rendered with
16975 # a number and is used to identify the footnote.
16976 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Foot…
16979 # text style's parent depends on where the text style is defined:
16981 # * The TextStyle of text in a Paragraph
16982 # inherits from the paragraph's corresponding named style type.
16983 # * The TextStyle on a named style
16984 # inherits from the normal text named style.
16985 # * The TextStyle of the normal text named style inherits
16986 # from the default text style in the Docs editor.
16987 # * The TextStyle on a Paragraph element
16988 # that is contained in a table may inherit its text style from the table
16991 # If the text style does not inherit from a parent, unsetting fields will
16992 # revert the style to a value matching the defaults in the Docs editor.
16993 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
16994 # or transparent, depending on the `color` field.
16997 "rgbColor": { # An RGB color. # The RGB color value.
16998 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
16999 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
17000 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
17004 "italic": True or False, # Whether or not the text is italicized.
17005 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
17008 … # rendered in a smaller font size, computed based on the `font_size` field.
17009 # The `font_size` itself is not affected by changes in this field.
17010 "strikethrough": True or False, # Whether or not the text is struck through.
17011 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
17014 # `bold`, the `weighted_font_family` is applied first, then `bold`.
17021 "fontFamily": "A String", # The font family of the text.
17023 # The font family can be any font from the Font menu in Docs or from
17024 # [Google Fonts] (https://fonts.google.com/). If the font name is
17025 # unrecognized, the text is rendered in `Arial`.
17026 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
17027 … # `100` between `100` and `900`, inclusive. This range corresponds to the
17028 # numerical values described in the CSS 2.1 Specification,
17032 # The default value is `400` ("normal").
17034 … # The font weight makes up just one component of the rendered font weight.
17035 … # The rendered weight is determined by a combination of the `weight` and the
17038 # * If the text is bold and the weight is less than `400`, the rendered
17040 … # * If the text is bold and the weight is greater than or equal to `400` but
17041 # is less than `700`, the rendered weight is `700`.
17042 … # * If the weight is greater than or equal to `700`, the rendered weight is
17043 # equal to the weight.
17044 # * If the text is not bold, the rendered weight is equal to the weight.
17046 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
17047 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
17048 "magnitude": 3.14, # The magnitude.
17049 "unit": "A String", # The units for magnitude.
17051 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
17052 # or transparent, depending on the `color` field.
17055 "rgbColor": { # An RGB color. # The RGB color value.
17056 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
17057 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
17058 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
17062 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
17065 # Changing the link in an update request causes some other changes to the
17066 # text style of the range:
17068 # * When setting a link, the text foreground color will be updated to the
17069 … # default link color and the text will be underlined. If these fields are
17070 # modified in the same request, those values will be used instead of the
17073 # also update the existing link to point to the new URL.
17076 # will separate the newline character(s) into their own text runs. The
17077 … # link will be applied separately to the runs before and after the newline.
17078 # * Removing a link will update the text style of the range to match the
17079 … # style of the preceding text (or the default text styles if the preceding
17080 … # text is another link) unless different styles are being set in the same
17082 "headingId": "A String", # The ID of a heading in this document.
17084 "bookmarkId": "A String", # The ID of a bookmark in this document.
17086 "underline": True or False, # Whether or not the text is underlined.
17087 "bold": True or False, # Whether or not the text is rendered as bold.
17089 "footnoteNumber": "A String", # The rendered number of this footnote.
17090 …"suggestedInsertionIds": [ # The suggested insertion IDs. A FootnoteReference may have multiple in…
17095 "footnoteId": "A String", # The ID of the footnote that
17096 # contains the content of this footnote reference.
17097 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
17101 …"suggestedTextStyleChanges": { # The suggested text style changes to this FootnoteReference, keyed…
17104 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
17105 # the changes made in this suggestion. This can be used along with the
17110 # text style's parent depends on where the text style is defined:
17112 # * The TextStyle of text in a Paragraph
17113 # inherits from the paragraph's corresponding named style type.
17114 # * The TextStyle on a named style
17115 # inherits from the normal text named style.
17116 # * The TextStyle of the normal text named style inherits
17117 # from the default text style in the Docs editor.
17118 # * The TextStyle on a Paragraph element
17119 … # that is contained in a table may inherit its text style from the table
17122 … # If the text style does not inherit from a parent, unsetting fields will
17123 # revert the style to a value matching the defaults in the Docs editor.
17124 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
17125 # or transparent, depending on the `color` field.
17128 "rgbColor": { # An RGB color. # The RGB color value.
17129 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
17130 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
17131 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
17135 "italic": True or False, # Whether or not the text is italicized.
17136 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
17139 … # rendered in a smaller font size, computed based on the `font_size` field.
17140 # The `font_size` itself is not affected by changes in this field.
17141 … "strikethrough": True or False, # Whether or not the text is struck through.
17142 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
17145 # `bold`, the `weighted_font_family` is applied first, then `bold`.
17152 "fontFamily": "A String", # The font family of the text.
17154 # The font family can be any font from the Font menu in Docs or from
17155 # [Google Fonts] (https://fonts.google.com/). If the font name is
17156 # unrecognized, the text is rendered in `Arial`.
17157 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
17158 … # `100` between `100` and `900`, inclusive. This range corresponds to the
17159 # numerical values described in the CSS 2.1 Specification,
17163 # The default value is `400` ("normal").
17165 … # The font weight makes up just one component of the rendered font weight.
17166 … # The rendered weight is determined by a combination of the `weight` and the
17169 … # * If the text is bold and the weight is less than `400`, the rendered
17171 … # * If the text is bold and the weight is greater than or equal to `400` but
17172 # is less than `700`, the rendered weight is `700`.
17173 … # * If the weight is greater than or equal to `700`, the rendered weight is
17174 # equal to the weight.
17175 … # * If the text is not bold, the rendered weight is equal to the weight.
17177 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
17178 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
17179 "magnitude": 3.14, # The magnitude.
17180 "unit": "A String", # The units for magnitude.
17182 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
17183 # or transparent, depending on the `color` field.
17186 "rgbColor": { # An RGB color. # The RGB color value.
17187 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
17188 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
17189 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
17193 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
17196 … # Changing the link in an update request causes some other changes to the
17197 # text style of the range:
17199 … # * When setting a link, the text foreground color will be updated to the
17200 … # default link color and the text will be underlined. If these fields are
17201 … # modified in the same request, those values will be used instead of the
17204 # also update the existing link to point to the new URL.
17207 … # will separate the newline character(s) into their own text runs. The
17208 … # link will be applied separately to the runs before and after the newline.
17209 … # * Removing a link will update the text style of the range to match the
17210 … # style of the preceding text (or the default text styles if the preceding
17211 … # text is another link) unless different styles are being set in the same
17213 "headingId": "A String", # The ID of a heading in this document.
17215 "bookmarkId": "A String", # The ID of a bookmark in this document.
17217 "underline": True or False, # Whether or not the text is underlined.
17218 "bold": True or False, # Whether or not the text is rendered as bold.
17220 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
17239 …"suggestedPositionedObjectIds": { # The IDs of the positioned objects that are suggested to be att…
17242 "objectIds": [ # The object IDs.
17247 …"bullet": { # Describes the bullet of a paragraph. # The bullet for this paragraph. If not present…
17249 "nestingLevel": 42, # The nesting level of this paragraph in the list.
17250 "listId": "A String", # The ID of the list this paragraph belongs to.
17251 …"textStyle": { # Represents the styling that can be applied to text. # The paragraph specific text…
17254 # text style's parent depends on where the text style is defined:
17256 # * The TextStyle of text in a Paragraph
17257 # inherits from the paragraph's corresponding named style type.
17258 # * The TextStyle on a named style
17259 # inherits from the normal text named style.
17260 # * The TextStyle of the normal text named style inherits
17261 # from the default text style in the Docs editor.
17262 # * The TextStyle on a Paragraph element
17263 # that is contained in a table may inherit its text style from the table
17266 # If the text style does not inherit from a parent, unsetting fields will
17267 # revert the style to a value matching the defaults in the Docs editor.
17268 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
17269 # or transparent, depending on the `color` field.
17272 "rgbColor": { # An RGB color. # The RGB color value.
17273 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
17274 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
17275 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
17279 "italic": True or False, # Whether or not the text is italicized.
17280 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
17283 # rendered in a smaller font size, computed based on the `font_size` field.
17284 # The `font_size` itself is not affected by changes in this field.
17285 "strikethrough": True or False, # Whether or not the text is struck through.
17286 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
17289 # `bold`, the `weighted_font_family` is applied first, then `bold`.
17296 "fontFamily": "A String", # The font family of the text.
17298 # The font family can be any font from the Font menu in Docs or from
17299 # [Google Fonts] (https://fonts.google.com/). If the font name is
17300 # unrecognized, the text is rendered in `Arial`.
17301 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
17302 # `100` between `100` and `900`, inclusive. This range corresponds to the
17303 # numerical values described in the CSS 2.1 Specification,
17307 # The default value is `400` ("normal").
17309 # The font weight makes up just one component of the rendered font weight.
17310 # The rendered weight is determined by a combination of the `weight` and the
17313 # * If the text is bold and the weight is less than `400`, the rendered
17315 # * If the text is bold and the weight is greater than or equal to `400` but
17316 # is less than `700`, the rendered weight is `700`.
17317 # * If the weight is greater than or equal to `700`, the rendered weight is
17318 # equal to the weight.
17319 # * If the text is not bold, the rendered weight is equal to the weight.
17321 "smallCaps": True or False, # Whether or not the text is in small capital letters.
17322 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
17323 "magnitude": 3.14, # The magnitude.
17324 "unit": "A String", # The units for magnitude.
17326 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
17327 # or transparent, depending on the `color` field.
17330 "rgbColor": { # An RGB color. # The RGB color value.
17331 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
17332 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
17333 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
17337 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
17340 # Changing the link in an update request causes some other changes to the
17341 # text style of the range:
17343 # * When setting a link, the text foreground color will be updated to the
17344 # default link color and the text will be underlined. If these fields are
17345 # modified in the same request, those values will be used instead of the
17348 # also update the existing link to point to the new URL.
17351 # will separate the newline character(s) into their own text runs. The
17352 # link will be applied separately to the runs before and after the newline.
17353 # * Removing a link will update the text style of the range to match the
17354 # style of the preceding text (or the default text styles if the preceding
17355 # text is another link) unless different styles are being set in the same
17357 "headingId": "A String", # The ID of a heading in this document.
17359 "bookmarkId": "A String", # The ID of a bookmark in this document.
17361 "underline": True or False, # Whether or not the text is underlined.
17362 "bold": True or False, # Whether or not the text is rendered as bold.
17365 "suggestedBulletChanges": { # The suggested changes to this paragraph's bullet.
17367 … "bullet": { # Describes the bullet of a paragraph. # A Bullet that only includes the changes made
17368 # in this suggestion. This can be used along with the
17371 "nestingLevel": 42, # The nesting level of this paragraph in the list.
17372 "listId": "A String", # The ID of the list this paragraph belongs to.
17373 …"textStyle": { # Represents the styling that can be applied to text. # The paragraph specific text…
17376 # text style's parent depends on where the text style is defined:
17378 # * The TextStyle of text in a Paragraph
17379 # inherits from the paragraph's corresponding named style type.
17380 # * The TextStyle on a named style
17381 # inherits from the normal text named style.
17382 # * The TextStyle of the normal text named style inherits
17383 # from the default text style in the Docs editor.
17384 # * The TextStyle on a Paragraph element
17385 # that is contained in a table may inherit its text style from the table
17388 # If the text style does not inherit from a parent, unsetting fields will
17389 # revert the style to a value matching the defaults in the Docs editor.
17390 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
17391 # or transparent, depending on the `color` field.
17394 "rgbColor": { # An RGB color. # The RGB color value.
17395 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
17396 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
17397 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
17401 "italic": True or False, # Whether or not the text is italicized.
17402 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
17405 … # rendered in a smaller font size, computed based on the `font_size` field.
17406 # The `font_size` itself is not affected by changes in this field.
17407 "strikethrough": True or False, # Whether or not the text is struck through.
17408 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
17411 # `bold`, the `weighted_font_family` is applied first, then `bold`.
17418 "fontFamily": "A String", # The font family of the text.
17420 # The font family can be any font from the Font menu in Docs or from
17421 # [Google Fonts] (https://fonts.google.com/). If the font name is
17422 # unrecognized, the text is rendered in `Arial`.
17423 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
17424 … # `100` between `100` and `900`, inclusive. This range corresponds to the
17425 # numerical values described in the CSS 2.1 Specification,
17429 # The default value is `400` ("normal").
17431 … # The font weight makes up just one component of the rendered font weight.
17432 … # The rendered weight is determined by a combination of the `weight` and the
17435 # * If the text is bold and the weight is less than `400`, the rendered
17437 … # * If the text is bold and the weight is greater than or equal to `400` but
17438 # is less than `700`, the rendered weight is `700`.
17439 … # * If the weight is greater than or equal to `700`, the rendered weight is
17440 # equal to the weight.
17441 # * If the text is not bold, the rendered weight is equal to the weight.
17443 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
17444 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
17445 "magnitude": 3.14, # The magnitude.
17446 "unit": "A String", # The units for magnitude.
17448 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
17449 # or transparent, depending on the `color` field.
17452 "rgbColor": { # An RGB color. # The RGB color value.
17453 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
17454 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
17455 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
17459 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
17462 # Changing the link in an update request causes some other changes to the
17463 # text style of the range:
17465 # * When setting a link, the text foreground color will be updated to the
17466 … # default link color and the text will be underlined. If these fields are
17467 # modified in the same request, those values will be used instead of the
17470 # also update the existing link to point to the new URL.
17473 # will separate the newline character(s) into their own text runs. The
17474 … # link will be applied separately to the runs before and after the newline.
17475 # * Removing a link will update the text style of the range to match the
17476 … # style of the preceding text (or the default text styles if the preceding
17477 … # text is another link) unless different styles are being set in the same
17479 "headingId": "A String", # The ID of a heading in this document.
17481 "bookmarkId": "A String", # The ID of a bookmark in this document.
17483 "underline": True or False, # Whether or not the text is underlined.
17484 "bold": True or False, # Whether or not the text is rendered as bold.
17487 …te": { # A mask that indicates which of the fields on the base # A mask that indicates which of th…
17491 … "nestingLevelSuggested": True or False, # Indicates if there was a suggested change to the
17493 …hat indicates which of the fields on the base TextStyle have been changed in this suggestion. # A …
17508 … "listIdSuggested": True or False, # Indicates if there was a suggested change to the
17513 … "positionedObjectIds": [ # The IDs of the positioned objects tethered to this paragraph.
17516 …"suggestedParagraphStyleChanges": { # The suggested paragraph style changes to this paragraph, key…
17520 …tes which of the fields on the base ParagraphStyle have been changed in this suggestion. # A mask …
17541 … mask that indicates which of the fields on the base Shading have been changed in this # A mask th…
17544 …ckgroundColorSuggested": True or False, # Indicates if there was a suggested change to the Shading.
17548 # the changes made in this suggestion. This can be used along with the
17553 # A paragraph style's parent depends on where the paragraph style is defined:
17555 # * The ParagraphStyle on a Paragraph
17556 # inherits from the paragraph's corresponding named style type.
17557 # * The ParagraphStyle on a named style
17558 # inherits from the normal text named style.
17559 # * The ParagraphStyle of the normal text named style inherits
17560 # from the default paragraph style in the Docs editor.
17561 # * The ParagraphStyle on a Paragraph
17563 # the table style.
17565 # If the paragraph style does not inherit from a parent, unsetting fields will
17566 # revert the style to a value matching the defaults in the Docs editor.
17567 "spacingMode": "A String", # The spacing mode for the paragraph.
17568 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
17571 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
17572 # inherited from the parent.
17573 "magnitude": 3.14, # The magnitude.
17574 "unit": "A String", # The units for magnitude.
17576 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
17577 # page or column as the next paragraph if possible. If unset, the value is
17578 # inherited from the parent.
17579 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
17580 # is represented as 100.0. If unset, the value is inherited from the parent.
17581 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
17582 # is inherited from the parent.
17583 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
17584 # inherited from the parent.
17586 … # The bottom border is rendered when the paragraph below has different border
17590 # changes to a paragraph border the new border must be specified in
17592 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
17595 "rgbColor": { # An RGB color. # The RGB color value.
17596 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
17597 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
17598 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
17602 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
17603 "magnitude": 3.14, # The magnitude.
17604 "unit": "A String", # The units for magnitude.
17606 "dashStyle": "A String", # The dash style of the border.
17607 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
17608 "magnitude": 3.14, # The magnitude.
17609 "unit": "A String", # The units for magnitude.
17612 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
17613 # the start of the text, based on the current paragraph direction. If unset,
17614 # the value is inherited from the parent.
17615 "magnitude": 3.14, # The magnitude.
17616 "unit": "A String", # The units for magnitude.
17618 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
17619 # If unset, the value is inherited from the parent.
17621 # The between border is rendered when the adjacent paragraph has the same
17625 # changes to a paragraph border the new border must be specified in
17627 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
17630 "rgbColor": { # An RGB color. # The RGB color value.
17631 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
17632 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
17633 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
17637 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
17638 "magnitude": 3.14, # The magnitude.
17639 "unit": "A String", # The units for magnitude.
17641 "dashStyle": "A String", # The dash style of the border.
17642 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
17643 "magnitude": 3.14, # The magnitude.
17644 "unit": "A String", # The units for magnitude.
17647 "namedStyleType": "A String", # The named style type of the paragraph.
17649 # Since updating the named style type affects other properties within
17650 … # ParagraphStyle, the named style type is applied before the other properties
17652 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
17653 # from the parent.
17656 # changes to a paragraph border the new border must be specified in
17658 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
17661 "rgbColor": { # An RGB color. # The RGB color value.
17662 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
17663 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
17664 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
17668 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
17669 "magnitude": 3.14, # The magnitude.
17670 "unit": "A String", # The units for magnitude.
17672 "dashStyle": "A String", # The dash style of the border.
17673 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
17674 "magnitude": 3.14, # The magnitude.
17675 "unit": "A String", # The units for magnitude.
17678 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
17679 # the end of the text, based on the current paragraph direction. If unset,
17680 # the value is inherited from the parent.
17681 "magnitude": 3.14, # The magnitude.
17682 "unit": "A String", # The units for magnitude.
17684 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
17685 # from the parent.
17688 # changes to a paragraph border the new border must be specified in
17690 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
17693 "rgbColor": { # An RGB color. # The RGB color value.
17694 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
17695 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
17696 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
17700 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
17701 "magnitude": 3.14, # The magnitude.
17702 "unit": "A String", # The units for magnitude.
17704 "dashStyle": "A String", # The dash style of the border.
17705 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
17706 "magnitude": 3.14, # The magnitude.
17707 "unit": "A String", # The units for magnitude.
17710 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
17711 # inherited from the parent.
17712 "magnitude": 3.14, # The magnitude.
17713 "unit": "A String", # The units for magnitude.
17715 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
17717 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
17719 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
17722 "rgbColor": { # An RGB color. # The RGB color value.
17723 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
17724 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
17725 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
17730 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
17731 # from the parent.
17733 # The top border is rendered when the paragraph above has different border
17737 # changes to a paragraph border the new border must be specified in
17739 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
17742 "rgbColor": { # An RGB color. # The RGB color value.
17743 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
17744 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
17745 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
17749 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
17750 "magnitude": 3.14, # The magnitude.
17751 "unit": "A String", # The units for magnitude.
17753 "dashStyle": "A String", # The dash style of the border.
17754 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
17755 "magnitude": 3.14, # The magnitude.
17756 "unit": "A String", # The units for magnitude.
17759 … "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
17762 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
17763 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
17764 "magnitude": 3.14, # The magnitude.
17765 "unit": "A String", # The units for magnitude.
17769 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
17770 # the value is inherited from the parent.
17771 "magnitude": 3.14, # The magnitude.
17772 "unit": "A String", # The units for magnitude.
17774 "alignment": "A String", # The text alignment for this paragraph.
17775 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
17776 # column if possible. If unset, the value is inherited from the parent.
17780 … "paragraphStyle": { # Styles that apply to a whole paragraph. # The style of this paragraph.
17783 # A paragraph style's parent depends on where the paragraph style is defined:
17785 # * The ParagraphStyle on a Paragraph
17786 # inherits from the paragraph's corresponding named style type.
17787 # * The ParagraphStyle on a named style
17788 # inherits from the normal text named style.
17789 # * The ParagraphStyle of the normal text named style inherits
17790 # from the default paragraph style in the Docs editor.
17791 # * The ParagraphStyle on a Paragraph
17793 # the table style.
17795 # If the paragraph style does not inherit from a parent, unsetting fields will
17796 # revert the style to a value matching the defaults in the Docs editor.
17797 "spacingMode": "A String", # The spacing mode for the paragraph.
17798 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
17801 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
17802 # inherited from the parent.
17803 "magnitude": 3.14, # The magnitude.
17804 "unit": "A String", # The units for magnitude.
17806 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
17807 # page or column as the next paragraph if possible. If unset, the value is
17808 # inherited from the parent.
17809 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
17810 # is represented as 100.0. If unset, the value is inherited from the parent.
17811 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
17812 # is inherited from the parent.
17813 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
17814 # inherited from the parent.
17816 # The bottom border is rendered when the paragraph below has different border
17820 # changes to a paragraph border the new border must be specified in
17822 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
17825 "rgbColor": { # An RGB color. # The RGB color value.
17826 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
17827 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
17828 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
17832 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
17833 "magnitude": 3.14, # The magnitude.
17834 "unit": "A String", # The units for magnitude.
17836 "dashStyle": "A String", # The dash style of the border.
17837 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
17838 "magnitude": 3.14, # The magnitude.
17839 "unit": "A String", # The units for magnitude.
17842 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
17843 # the start of the text, based on the current paragraph direction. If unset,
17844 # the value is inherited from the parent.
17845 "magnitude": 3.14, # The magnitude.
17846 "unit": "A String", # The units for magnitude.
17848 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
17849 # If unset, the value is inherited from the parent.
17851 # The between border is rendered when the adjacent paragraph has the same
17855 # changes to a paragraph border the new border must be specified in
17857 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
17860 "rgbColor": { # An RGB color. # The RGB color value.
17861 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
17862 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
17863 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
17867 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
17868 "magnitude": 3.14, # The magnitude.
17869 "unit": "A String", # The units for magnitude.
17871 "dashStyle": "A String", # The dash style of the border.
17872 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
17873 "magnitude": 3.14, # The magnitude.
17874 "unit": "A String", # The units for magnitude.
17877 "namedStyleType": "A String", # The named style type of the paragraph.
17879 # Since updating the named style type affects other properties within
17880 # ParagraphStyle, the named style type is applied before the other properties
17882 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
17883 # from the parent.
17886 # changes to a paragraph border the new border must be specified in
17888 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
17891 "rgbColor": { # An RGB color. # The RGB color value.
17892 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
17893 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
17894 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
17898 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
17899 "magnitude": 3.14, # The magnitude.
17900 "unit": "A String", # The units for magnitude.
17902 "dashStyle": "A String", # The dash style of the border.
17903 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
17904 "magnitude": 3.14, # The magnitude.
17905 "unit": "A String", # The units for magnitude.
17908 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
17909 # the end of the text, based on the current paragraph direction. If unset,
17910 # the value is inherited from the parent.
17911 "magnitude": 3.14, # The magnitude.
17912 "unit": "A String", # The units for magnitude.
17914 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
17915 # from the parent.
17918 # changes to a paragraph border the new border must be specified in
17920 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
17923 "rgbColor": { # An RGB color. # The RGB color value.
17924 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
17925 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
17926 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
17930 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
17931 "magnitude": 3.14, # The magnitude.
17932 "unit": "A String", # The units for magnitude.
17934 "dashStyle": "A String", # The dash style of the border.
17935 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
17936 "magnitude": 3.14, # The magnitude.
17937 "unit": "A String", # The units for magnitude.
17940 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
17941 # inherited from the parent.
17942 "magnitude": 3.14, # The magnitude.
17943 "unit": "A String", # The units for magnitude.
17945 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
17947 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
17949 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
17952 "rgbColor": { # An RGB color. # The RGB color value.
17953 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
17954 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
17955 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
17960 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
17961 # from the parent.
17963 # The top border is rendered when the paragraph above has different border
17967 # changes to a paragraph border the new border must be specified in
17969 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
17972 "rgbColor": { # An RGB color. # The RGB color value.
17973 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
17974 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
17975 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
17979 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
17980 "magnitude": 3.14, # The magnitude.
17981 "unit": "A String", # The units for magnitude.
17983 "dashStyle": "A String", # The dash style of the border.
17984 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
17985 "magnitude": 3.14, # The magnitude.
17986 "unit": "A String", # The units for magnitude.
17989 … "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
17992 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
17993 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
17994 "magnitude": 3.14, # The magnitude.
17995 "unit": "A String", # The units for magnitude.
17999 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
18000 # the value is inherited from the parent.
18001 "magnitude": 3.14, # The magnitude.
18002 "unit": "A String", # The units for magnitude.
18004 "alignment": "A String", # The text alignment for this paragraph.
18005 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
18006 # column if possible. If unset, the value is inherited from the parent.
18011 "rows": 42, # Number of rows in the table.
18012 "tableStyle": { # Styles that apply to a table. # The style of the table.
18013 "tableColumnProperties": [ # The properties of each column.
18016 # HTML. So the properties for a row can be found on the row's
18018 { # The properties of a column in a table.
18019 …th": { # A magnitude in a single direction in the specified units. # The width of the column. Set …
18021 "magnitude": 3.14, # The magnitude.
18022 "unit": "A String", # The units for magnitude.
18024 "widthType": "A String", # The width type of the column.
18028 "suggestedInsertionIds": [ # The suggested insertion IDs. A Table may have
18033 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
18037 "tableRows": [ # The contents and style of each row.
18038 { # The contents and style of a row in a Table.
18039 … "endIndex": 42, # The zero-based end index of this row, exclusive, in UTF-16 code units.
18040 "tableCells": [ # The contents and style of each cell in this row.
18043 # different number of cells than other rows in the same table.
18044 { # The contents and style of a cell in a Table.
18045 … "endIndex": 42, # The zero-based end index of this cell, exclusive, in UTF-16 code units.
18046 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
18050 "suggestedInsertionIds": [ # The suggested insertion IDs. A TableCell
18055 "content": [ # The content of the cell.
18058 "tableCellStyle": { # The style of a TableCell. # The style of the cell.
18061 # A table cell style can inherit from the table's style.
18062 …ngBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of t…
18063 "magnitude": 3.14, # The magnitude.
18064 "unit": "A String", # The units for magnitude.
18066 … "borderBottom": { # A border around a table cell. # The bottom border of the cell.
18067 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
18070 "rgbColor": { # An RGB color. # The RGB color value.
18071 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
18072 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
18073 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
18077 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
18078 "magnitude": 3.14, # The magnitude.
18079 "unit": "A String", # The units for magnitude.
18081 "dashStyle": "A String", # The dash style of the border.
18083 …ddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of th…
18084 "magnitude": 3.14, # The magnitude.
18085 "unit": "A String", # The units for magnitude.
18087 …paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of th…
18088 "magnitude": 3.14, # The magnitude.
18089 "unit": "A String", # The units for magnitude.
18091 … "borderLeft": { # A border around a table cell. # The left border of the cell.
18092 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
18095 "rgbColor": { # An RGB color. # The RGB color value.
18096 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
18097 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
18098 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
18102 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
18103 "magnitude": 3.14, # The magnitude.
18104 "unit": "A String", # The units for magnitude.
18106 "dashStyle": "A String", # The dash style of the border.
18108 "columnSpan": 42, # The column span of the cell. This property is read-only.
18109 …# A color that can either be fully opaque or fully transparent. # The background color of the cell.
18112 "rgbColor": { # An RGB color. # The RGB color value.
18113 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
18114 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
18115 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
18119 … "borderRight": { # A border around a table cell. # The right border of the cell.
18120 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
18123 "rgbColor": { # An RGB color. # The RGB color value.
18124 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
18125 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
18126 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
18130 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
18131 "magnitude": 3.14, # The magnitude.
18132 "unit": "A String", # The units for magnitude.
18134 "dashStyle": "A String", # The dash style of the border.
18136 "rowSpan": 42, # The row span of the cell. This property is read-only.
18137 …"contentAlignment": "A String", # The alignment of the content in the table cell. The default alig…
18138 … # matches the alignment for newly created table cells in the Docs editor.
18139 …dingRight": { # A magnitude in a single direction in the specified units. # The right padding of t…
18140 "magnitude": 3.14, # The magnitude.
18141 "unit": "A String", # The units for magnitude.
18143 "borderTop": { # A border around a table cell. # The top border of the cell.
18144 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
18147 "rgbColor": { # An RGB color. # The RGB color value.
18148 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
18149 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
18150 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
18154 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
18155 "magnitude": 3.14, # The magnitude.
18156 "unit": "A String", # The units for magnitude.
18158 "dashStyle": "A String", # The dash style of the border.
18161 … "startIndex": 42, # The zero-based start index of this cell, in UTF-16 code units.
18162 …"suggestedTableCellStyleChanges": { # The suggested changes to the table cell style, keyed by sugg…
18164 … "tableCellStyle": { # The style of a TableCell. # A TableCellStyle that only includes
18165 # the changes made in this suggestion. This can be used along with the
18170 # A table cell style can inherit from the table's style.
18171 …ngBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of t…
18172 "magnitude": 3.14, # The magnitude.
18173 "unit": "A String", # The units for magnitude.
18175 … "borderBottom": { # A border around a table cell. # The bottom border of the cell.
18176 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
18179 "rgbColor": { # An RGB color. # The RGB color value.
18180 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
18181 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
18182 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
18186 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
18187 "magnitude": 3.14, # The magnitude.
18188 "unit": "A String", # The units for magnitude.
18190 "dashStyle": "A String", # The dash style of the border.
18192 …ddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of th…
18193 "magnitude": 3.14, # The magnitude.
18194 "unit": "A String", # The units for magnitude.
18196 …paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of th…
18197 "magnitude": 3.14, # The magnitude.
18198 "unit": "A String", # The units for magnitude.
18200 … "borderLeft": { # A border around a table cell. # The left border of the cell.
18201 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
18204 "rgbColor": { # An RGB color. # The RGB color value.
18205 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
18206 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
18207 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
18211 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
18212 "magnitude": 3.14, # The magnitude.
18213 "unit": "A String", # The units for magnitude.
18215 "dashStyle": "A String", # The dash style of the border.
18217 … "columnSpan": 42, # The column span of the cell. This property is read-only.
18218 …# A color that can either be fully opaque or fully transparent. # The background color of the cell.
18221 "rgbColor": { # An RGB color. # The RGB color value.
18222 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
18223 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
18224 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
18228 … "borderRight": { # A border around a table cell. # The right border of the cell.
18229 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
18232 "rgbColor": { # An RGB color. # The RGB color value.
18233 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
18234 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
18235 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
18239 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
18240 "magnitude": 3.14, # The magnitude.
18241 "unit": "A String", # The units for magnitude.
18243 "dashStyle": "A String", # The dash style of the border.
18245 "rowSpan": 42, # The row span of the cell. This property is read-only.
18246 …"contentAlignment": "A String", # The alignment of the content in the table cell. The default alig…
18247 … # matches the alignment for newly created table cells in the Docs editor.
18248 …dingRight": { # A magnitude in a single direction in the specified units. # The right padding of t…
18249 "magnitude": 3.14, # The magnitude.
18250 "unit": "A String", # The units for magnitude.
18252 … "borderTop": { # A border around a table cell. # The top border of the cell.
18253 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
18256 "rgbColor": { # An RGB color. # The RGB color value.
18257 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
18258 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
18259 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
18263 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
18264 "magnitude": 3.14, # The magnitude.
18265 "unit": "A String", # The units for magnitude.
18267 "dashStyle": "A String", # The dash style of the border.
18270 …tes which of the fields on the base TableCellStyle have been changed in this suggestion. # A mask …
18289 … "tableRowStyle": { # Styles that apply to a table row. # The style of the table row.
18290 …agnitude in a single direction in the specified units. # The minimum height of the row. The row wi…
18291 # at a height equal to or greater than this value in order to show all the
18292 # content in the row's cells.
18293 "magnitude": 3.14, # The magnitude.
18294 "unit": "A String", # The units for magnitude.
18297 "suggestedInsertionIds": [ # The suggested insertion IDs. A TableRow
18302 "startIndex": 42, # The zero-based start index of this row, in UTF-16 code units.
18303 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
18307 …"suggestedTableRowStyleChanges": { # The suggested style changes to this row, keyed by suggestion …
18311 # the changes made in this suggestion. This can be used along with the
18314 …agnitude in a single direction in the specified units. # The minimum height of the row. The row wi…
18315 … # at a height equal to or greater than this value in order to show all the
18316 # content in the row's cells.
18317 "magnitude": 3.14, # The magnitude.
18318 "unit": "A String", # The units for magnitude.
18321 …ates which of the fields on the base TableRowStyle have been changed in this suggestion. # A mask …
18329 "columns": 42, # Number of columns in the table.
18337 "documentStyle": { # The style of the document. # The style of the document.
18338 …"defaultFooterId": "A String", # The ID of the default footer. If not set, there is no default foo…
18339 … "evenPageFooterId": "A String", # The ID of the footer used only for even pages. The value of
18341 # whether to use the default_footer_id or this value for the
18343 …"firstPageFooterId": "A String", # The ID of the footer used only for the first page. If not set t…
18344 # a unique footer for the first page does not exist. The value of
18346 # whether to use the default_footer_id or this value for the
18347 # footer on the first page. If not set, there is no first page footer.
18348 "pageSize": { # A width and height. # The size of a page in the document.
18349 … "width": { # A magnitude in a single direction in the specified units. # The width of the object.
18350 "magnitude": 3.14, # The magnitude.
18351 "unit": "A String", # The units for magnitude.
18353 …"height": { # A magnitude in a single direction in the specified units. # The height of the object.
18354 "magnitude": 3.14, # The magnitude.
18355 "unit": "A String", # The units for magnitude.
18358 …"defaultHeaderId": "A String", # The ID of the default header. If not set, there is no default hea…
18359 …"marginBottom": { # A magnitude in a single direction in the specified units. # The bottom page ma…
18360 "magnitude": 3.14, # The magnitude.
18361 "unit": "A String", # The units for magnitude.
18363 …"firstPageHeaderId": "A String", # The ID of the header used only for the first page. If not set t…
18364 # a unique header for the first page does not exist.
18365 # The value of use_first_page_header_footer determines
18366 # whether to use the default_header_id or this value for the
18367 # header on the first page. If not set, there is no first page header.
18368 … "evenPageHeaderId": "A String", # The ID of the header used only for even pages. The value of
18370 # whether to use the default_header_id or this value for the
18372 …aderFooter": True or False, # Indicates whether to use the first page header / footer IDs for the
18374 …"marginLeft": { # A magnitude in a single direction in the specified units. # The left page margin.
18375 "magnitude": 3.14, # The magnitude.
18376 "unit": "A String", # The units for magnitude.
18378 …eaderFooter": True or False, # Indicates whether to use the even page header / footer IDs for the
18380 "background": { # Represents the background of a document. # The background of the document.
18381 … "color": { # A color that can either be fully opaque or fully transparent. # The background color.
18384 "rgbColor": { # An RGB color. # The RGB color value.
18385 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
18386 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
18387 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
18392 …"marginRight": { # A magnitude in a single direction in the specified units. # The right page marg…
18393 "magnitude": 3.14, # The magnitude.
18394 "unit": "A String", # The units for magnitude.
18396 "pageNumberStart": 42, # The page number from which to start counting the number of pages.
18397 … "marginTop": { # A magnitude in a single direction in the specified units. # The top page margin.
18398 "magnitude": 3.14, # The magnitude.
18399 "unit": "A String", # The units for magnitude.
18402 "title": "A String", # The title of the document.
18403 "namedRanges": { # The named ranges in the document, keyed by name.
18404 "a_key": { # A collection of all the NamedRanges in the
18406 "namedRanges": [ # The NamedRanges that share the same name.
18407 { # A collection of Ranges with the same named range
18413 # the same name, but every named range has a unique ID.
18417 # However, certain document changes can cause the range to be split into
18421 # access to the document can see its named ranges.
18422 "ranges": [ # The ranges that belong to this named range.
18424 … "endIndex": 42, # The zero-based end index of this range, exclusive, in UTF-16 code units.
18428 … "startIndex": 42, # The zero-based start index of this range, in UTF-16 code units.
18432 …"segmentId": "A String", # The ID of the header, footer or footnote that this range is contained i…
18433 # An empty segment ID signifies the document's body.
18436 "namedRangeId": "A String", # The ID of the named range.
18437 "name": "A String", # The name of the named range.
18440 "name": "A String", # The name that all the named ranges share.
18443 …"suggestedDocumentStyleChanges": { # The suggested changes to the style of the document, keyed by …
18444 "a_key": { # A suggested change to the DocumentStyle.
18445 "documentStyle": { # The style of the document. # A DocumentStyle that only includes
18446 # the changes made in this suggestion. This can be used along with the
18449 …"defaultFooterId": "A String", # The ID of the default footer. If not set, there is no default foo…
18450 … "evenPageFooterId": "A String", # The ID of the footer used only for even pages. The value of
18452 # whether to use the default_footer_id or this value for the
18454 …"firstPageFooterId": "A String", # The ID of the footer used only for the first page. If not set t…
18455 # a unique footer for the first page does not exist. The value of
18457 # whether to use the default_footer_id or this value for the
18458 # footer on the first page. If not set, there is no first page footer.
18459 "pageSize": { # A width and height. # The size of a page in the document.
18460 … "width": { # A magnitude in a single direction in the specified units. # The width of the object.
18461 "magnitude": 3.14, # The magnitude.
18462 "unit": "A String", # The units for magnitude.
18464 …"height": { # A magnitude in a single direction in the specified units. # The height of the object.
18465 "magnitude": 3.14, # The magnitude.
18466 "unit": "A String", # The units for magnitude.
18469 …"defaultHeaderId": "A String", # The ID of the default header. If not set, there is no default hea…
18470 …"marginBottom": { # A magnitude in a single direction in the specified units. # The bottom page ma…
18471 "magnitude": 3.14, # The magnitude.
18472 "unit": "A String", # The units for magnitude.
18474 …"firstPageHeaderId": "A String", # The ID of the header used only for the first page. If not set t…
18475 # a unique header for the first page does not exist.
18476 # The value of use_first_page_header_footer determines
18477 # whether to use the default_header_id or this value for the
18478 # header on the first page. If not set, there is no first page header.
18479 … "evenPageHeaderId": "A String", # The ID of the header used only for even pages. The value of
18481 # whether to use the default_header_id or this value for the
18483 …aderFooter": True or False, # Indicates whether to use the first page header / footer IDs for the
18485 …"marginLeft": { # A magnitude in a single direction in the specified units. # The left page margin.
18486 "magnitude": 3.14, # The magnitude.
18487 "unit": "A String", # The units for magnitude.
18489 …eaderFooter": True or False, # Indicates whether to use the even page header / footer IDs for the
18491 … "background": { # Represents the background of a document. # The background of the document.
18492 … "color": { # A color that can either be fully opaque or fully transparent. # The background color.
18495 "rgbColor": { # An RGB color. # The RGB color value.
18496 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
18497 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
18498 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
18503 …"marginRight": { # A magnitude in a single direction in the specified units. # The right page marg…
18504 "magnitude": 3.14, # The magnitude.
18505 "unit": "A String", # The units for magnitude.
18507 … "pageNumberStart": 42, # The page number from which to start counting the number of pages.
18508 … "marginTop": { # A magnitude in a single direction in the specified units. # The top page margin.
18509 "magnitude": 3.14, # The magnitude.
18510 "unit": "A String", # The units for magnitude.
18513 …ates which of the fields on the base DocumentStyle have been changed in this suggestion. # A mask …
18521 … that indicates which of the fields on the base Size have been changed in this suggestion. # A mas…
18523 # For any field set to true, the Size has
18534 …at indicates which of the fields on the base Background have been changed in this suggestion. # A …
18536 # For any field set to true, the Backgound has a new suggested value.
18537 …"backgroundColorSuggested": True or False, # Indicates whether the current background color has be…
18544 …"suggestedNamedStylesChanges": { # The suggested changes to the named styles of the document, keye…
18546 "a_key": { # A suggested change to the NamedStyles.
18547 …amedStylesSuggestionState": { # The suggestion state of a NamedStyles # A mask that indicates whic…
18549 …"stylesSuggestionStates": [ # A mask that indicates which of the fields on the corresponding Named…
18552 # The order of these named style suggestion states match the order of the
18553 # corresponding named style within the named styles suggestion.
18555 … indicates which of the fields on the base ParagraphStyle have been changed in this suggestion. # …
18577 … mask that indicates which of the fields on the base Shading have been changed in this # A mask th…
18580 …ckgroundColorSuggested": True or False, # Indicates if there was a suggested change to the Shading.
18583 …hat indicates which of the fields on the base TextStyle have been changed in this suggestion. # A …
18598 … "namedStyleType": "A String", # The named style type that this suggestion state corresponds to.
18600 # This field is provided as a convenience for matching the
18605 …"namedStyles": { # The named styles. Paragraphs in the document can inherit their # A NamedStyles …
18606 # changes made in this suggestion. This can be used along with the
18611 "styles": [ # The named styles.
18613 # There is an entry for each of the possible named style types.
18614 { # A named style. Paragraphs in the document can inherit their
18617 # when they have the same named style type.
18618 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this name…
18621 # text style's parent depends on where the text style is defined:
18623 # * The TextStyle of text in a Paragraph
18624 # inherits from the paragraph's corresponding named style type.
18625 # * The TextStyle on a named style
18626 # inherits from the normal text named style.
18627 # * The TextStyle of the normal text named style inherits
18628 # from the default text style in the Docs editor.
18629 # * The TextStyle on a Paragraph element
18630 # that is contained in a table may inherit its text style from the table
18633 # If the text style does not inherit from a parent, unsetting fields will
18634 # revert the style to a value matching the defaults in the Docs editor.
18635 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
18636 # or transparent, depending on the `color` field.
18639 "rgbColor": { # An RGB color. # The RGB color value.
18640 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
18641 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
18642 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
18646 "italic": True or False, # Whether or not the text is italicized.
18647 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
18650 # rendered in a smaller font size, computed based on the `font_size` field.
18651 # The `font_size` itself is not affected by changes in this field.
18652 "strikethrough": True or False, # Whether or not the text is struck through.
18653 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
18656 # `bold`, the `weighted_font_family` is applied first, then `bold`.
18663 "fontFamily": "A String", # The font family of the text.
18665 # The font family can be any font from the Font menu in Docs or from
18666 # [Google Fonts] (https://fonts.google.com/). If the font name is
18667 # unrecognized, the text is rendered in `Arial`.
18668 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
18669 # `100` between `100` and `900`, inclusive. This range corresponds to the
18670 # numerical values described in the CSS 2.1 Specification,
18674 # The default value is `400` ("normal").
18676 # The font weight makes up just one component of the rendered font weight.
18677 # The rendered weight is determined by a combination of the `weight` and the
18680 # * If the text is bold and the weight is less than `400`, the rendered
18682 # * If the text is bold and the weight is greater than or equal to `400` but
18683 # is less than `700`, the rendered weight is `700`.
18684 # * If the weight is greater than or equal to `700`, the rendered weight is
18685 # equal to the weight.
18686 # * If the text is not bold, the rendered weight is equal to the weight.
18688 "smallCaps": True or False, # Whether or not the text is in small capital letters.
18689 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
18690 "magnitude": 3.14, # The magnitude.
18691 "unit": "A String", # The units for magnitude.
18693 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
18694 # or transparent, depending on the `color` field.
18697 "rgbColor": { # An RGB color. # The RGB color value.
18698 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
18699 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
18700 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
18704 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
18707 # Changing the link in an update request causes some other changes to the
18708 # text style of the range:
18710 # * When setting a link, the text foreground color will be updated to the
18711 # default link color and the text will be underlined. If these fields are
18712 # modified in the same request, those values will be used instead of the
18715 # also update the existing link to point to the new URL.
18718 # will separate the newline character(s) into their own text runs. The
18719 # link will be applied separately to the runs before and after the newline.
18720 # * Removing a link will update the text style of the range to match the
18721 # style of the preceding text (or the default text styles if the preceding
18722 # text is another link) unless different styles are being set in the same
18724 "headingId": "A String", # The ID of a heading in this document.
18726 "bookmarkId": "A String", # The ID of a bookmark in this document.
18728 "underline": True or False, # Whether or not the text is underlined.
18729 "bold": True or False, # Whether or not the text is rendered as bold.
18731 "namedStyleType": "A String", # The type of this named style.
18732 …"paragraphStyle": { # Styles that apply to a whole paragraph. # The paragraph style of this named …
18735 # A paragraph style's parent depends on where the paragraph style is defined:
18737 # * The ParagraphStyle on a Paragraph
18738 # inherits from the paragraph's corresponding named style type.
18739 # * The ParagraphStyle on a named style
18740 # inherits from the normal text named style.
18741 # * The ParagraphStyle of the normal text named style inherits
18742 # from the default paragraph style in the Docs editor.
18743 # * The ParagraphStyle on a Paragraph
18745 # the table style.
18747 # If the paragraph style does not inherit from a parent, unsetting fields will
18748 # revert the style to a value matching the defaults in the Docs editor.
18749 "spacingMode": "A String", # The spacing mode for the paragraph.
18750 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
18753 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
18754 # inherited from the parent.
18755 "magnitude": 3.14, # The magnitude.
18756 "unit": "A String", # The units for magnitude.
18758 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
18759 # page or column as the next paragraph if possible. If unset, the value is
18760 # inherited from the parent.
18761 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
18762 # is represented as 100.0. If unset, the value is inherited from the parent.
18763 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
18764 # is inherited from the parent.
18765 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
18766 # inherited from the parent.
18768 # The bottom border is rendered when the paragraph below has different border
18772 # changes to a paragraph border the new border must be specified in
18774 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
18777 "rgbColor": { # An RGB color. # The RGB color value.
18778 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
18779 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
18780 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
18784 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
18785 "magnitude": 3.14, # The magnitude.
18786 "unit": "A String", # The units for magnitude.
18788 "dashStyle": "A String", # The dash style of the border.
18789 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
18790 "magnitude": 3.14, # The magnitude.
18791 "unit": "A String", # The units for magnitude.
18794 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
18795 # the start of the text, based on the current paragraph direction. If unset,
18796 # the value is inherited from the parent.
18797 "magnitude": 3.14, # The magnitude.
18798 "unit": "A String", # The units for magnitude.
18800 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
18801 # If unset, the value is inherited from the parent.
18803 # The between border is rendered when the adjacent paragraph has the same
18807 # changes to a paragraph border the new border must be specified in
18809 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
18812 "rgbColor": { # An RGB color. # The RGB color value.
18813 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
18814 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
18815 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
18819 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
18820 "magnitude": 3.14, # The magnitude.
18821 "unit": "A String", # The units for magnitude.
18823 "dashStyle": "A String", # The dash style of the border.
18824 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
18825 "magnitude": 3.14, # The magnitude.
18826 "unit": "A String", # The units for magnitude.
18829 "namedStyleType": "A String", # The named style type of the paragraph.
18831 # Since updating the named style type affects other properties within
18832 # ParagraphStyle, the named style type is applied before the other properties
18834 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
18835 # from the parent.
18838 # changes to a paragraph border the new border must be specified in
18840 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
18843 "rgbColor": { # An RGB color. # The RGB color value.
18844 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
18845 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
18846 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
18850 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
18851 "magnitude": 3.14, # The magnitude.
18852 "unit": "A String", # The units for magnitude.
18854 "dashStyle": "A String", # The dash style of the border.
18855 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
18856 "magnitude": 3.14, # The magnitude.
18857 "unit": "A String", # The units for magnitude.
18860 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
18861 # the end of the text, based on the current paragraph direction. If unset,
18862 # the value is inherited from the parent.
18863 "magnitude": 3.14, # The magnitude.
18864 "unit": "A String", # The units for magnitude.
18866 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
18867 # from the parent.
18870 # changes to a paragraph border the new border must be specified in
18872 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
18875 "rgbColor": { # An RGB color. # The RGB color value.
18876 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
18877 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
18878 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
18882 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
18883 "magnitude": 3.14, # The magnitude.
18884 "unit": "A String", # The units for magnitude.
18886 "dashStyle": "A String", # The dash style of the border.
18887 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
18888 "magnitude": 3.14, # The magnitude.
18889 "unit": "A String", # The units for magnitude.
18892 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
18893 # inherited from the parent.
18894 "magnitude": 3.14, # The magnitude.
18895 "unit": "A String", # The units for magnitude.
18897 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
18899 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
18901 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
18904 "rgbColor": { # An RGB color. # The RGB color value.
18905 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
18906 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
18907 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
18912 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
18913 # from the parent.
18915 # The top border is rendered when the paragraph above has different border
18919 # changes to a paragraph border the new border must be specified in
18921 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
18924 "rgbColor": { # An RGB color. # The RGB color value.
18925 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
18926 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
18927 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
18931 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
18932 "magnitude": 3.14, # The magnitude.
18933 "unit": "A String", # The units for magnitude.
18935 "dashStyle": "A String", # The dash style of the border.
18936 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
18937 "magnitude": 3.14, # The magnitude.
18938 "unit": "A String", # The units for magnitude.
18941 … "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
18944 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
18945 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
18946 "magnitude": 3.14, # The magnitude.
18947 "unit": "A String", # The units for magnitude.
18951 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
18952 # the value is inherited from the parent.
18953 "magnitude": 3.14, # The magnitude.
18954 "unit": "A String", # The units for magnitude.
18956 "alignment": "A String", # The text alignment for this paragraph.
18957 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
18958 # column if possible. If unset, the value is inherited from the parent.
18965 "suggestionsViewMode": "A String", # The suggestions view mode applied to the document.
18969 "lists": { # The lists in the document, keyed by list ID.
18970 "a_key": { # A List represents the list attributes for a group of paragraphs that all
18971 # belong to the same list. A paragraph that is part of a list has a reference
18972 # to the list's ID in its bullet.
18973 …"listProperties": { # The properties of a list which describe the look # The properties of the lis…
18975 "nestingLevels": [ # Describes the properties of the bullets at the associated level.
18978 # corresponding to the top-most level and nesting level 8 corresponding to
18979 # the most nested level. The nesting levels are returned in ascending order
18980 # with the least nested returned first.
18981 { # Contains properties describing the look and feel of a list bullet at a given
18983 …"textStyle": { # Represents the styling that can be applied to text. # The text style of bullets a…
18986 # text style's parent depends on where the text style is defined:
18988 # * The TextStyle of text in a Paragraph
18989 # inherits from the paragraph's corresponding named style type.
18990 # * The TextStyle on a named style
18991 # inherits from the normal text named style.
18992 # * The TextStyle of the normal text named style inherits
18993 # from the default text style in the Docs editor.
18994 # * The TextStyle on a Paragraph element
18995 # that is contained in a table may inherit its text style from the table
18998 # If the text style does not inherit from a parent, unsetting fields will
18999 # revert the style to a value matching the defaults in the Docs editor.
19000 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
19001 # or transparent, depending on the `color` field.
19004 "rgbColor": { # An RGB color. # The RGB color value.
19005 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
19006 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
19007 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
19011 "italic": True or False, # Whether or not the text is italicized.
19012 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
19015 # rendered in a smaller font size, computed based on the `font_size` field.
19016 # The `font_size` itself is not affected by changes in this field.
19017 "strikethrough": True or False, # Whether or not the text is struck through.
19018 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
19021 # `bold`, the `weighted_font_family` is applied first, then `bold`.
19028 "fontFamily": "A String", # The font family of the text.
19030 # The font family can be any font from the Font menu in Docs or from
19031 # [Google Fonts] (https://fonts.google.com/). If the font name is
19032 # unrecognized, the text is rendered in `Arial`.
19033 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
19034 # `100` between `100` and `900`, inclusive. This range corresponds to the
19035 # numerical values described in the CSS 2.1 Specification,
19039 # The default value is `400` ("normal").
19041 # The font weight makes up just one component of the rendered font weight.
19042 # The rendered weight is determined by a combination of the `weight` and the
19045 # * If the text is bold and the weight is less than `400`, the rendered
19047 # * If the text is bold and the weight is greater than or equal to `400` but
19048 # is less than `700`, the rendered weight is `700`.
19049 # * If the weight is greater than or equal to `700`, the rendered weight is
19050 # equal to the weight.
19051 # * If the text is not bold, the rendered weight is equal to the weight.
19053 "smallCaps": True or False, # Whether or not the text is in small capital letters.
19054 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
19055 "magnitude": 3.14, # The magnitude.
19056 "unit": "A String", # The units for magnitude.
19058 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
19059 # or transparent, depending on the `color` field.
19062 "rgbColor": { # An RGB color. # The RGB color value.
19063 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
19064 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
19065 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
19069 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
19072 # Changing the link in an update request causes some other changes to the
19073 # text style of the range:
19075 # * When setting a link, the text foreground color will be updated to the
19076 # default link color and the text will be underlined. If these fields are
19077 # modified in the same request, those values will be used instead of the
19080 # also update the existing link to point to the new URL.
19083 # will separate the newline character(s) into their own text runs. The
19084 # link will be applied separately to the runs before and after the newline.
19085 # * Removing a link will update the text style of the range to match the
19086 # style of the preceding text (or the default text styles if the preceding
19087 # text is another link) unless different styles are being set in the same
19089 "headingId": "A String", # The ID of a heading in this document.
19091 "bookmarkId": "A String", # The ID of a bookmark in this document.
19093 "underline": True or False, # Whether or not the text is underlined.
19094 "bold": True or False, # Whether or not the text is rendered as bold.
19096 …"indentStart": { # A magnitude in a single direction in the specified units. # The amount of inden…
19097 # to the side that corresponds to the start of the text, based on the
19099 "magnitude": 3.14, # The magnitude.
19100 "unit": "A String", # The units for magnitude.
19102 … "glyphFormat": "A String", # The format string used by bullets at this level of nesting.
19104 # The glyph format contains one or more placeholders, and these placeholder
19105 …# are replaced with the appropriate values depending on the glyph_type or glyph_symbol. The placeh…
19106 # the pattern `%[nesting_level]`. Furthermore, placeholders can have prefixes
19107 # and suffixes. Thus, the glyph format follows the pattern
19108 # `<prefix>%[nesting_level]<suffix>`. Note that the prefix and suffix are
19111 # For example, the glyph format `%0.` indicates that the rendered glyph will
19112 # replace the placeholder with the corresponding glyph for nesting level 0
19113 # followed by a period as the suffix. So a list with a glyph type of
19121 # The glyph format can contain placeholders for the current nesting level as
19133 # For nesting levels that are ordered, the string that replaces a placeholder
19134 # in the glyph format for a particular paragraph depends on the paragraph's
19135 # order within the list.
19136 … "glyphType": "A String", # The type of glyph used by bullets when paragraphs at this level of
19139 # The glyph type determines the type of glyph used to replace placeholders
19140 # within the glyph_format
19141 # when paragraphs at this level of nesting are ordered. For example, if the
19142 # nesting level is 0, the glyph_format is `%0.` and the glyph
19144 # then the rendered glyph would replace the placeholder `%0` in the glyph
19145 # format with a number corresponding to list item's order within the list.
19146 "startNumber": 42, # The number of the first list item at this nesting level.
19153 …"bulletAlignment": "A String", # The alignment of the bullet within the space allotted for renderi…
19158 … # The glyph symbol replaces placeholders within the glyph_format. For example, if the
19159 # glyph_symbol is the solid circle corresponding to Unicode U+25cf code
19160 # point and the glyph_format is `%0`, the rendered
19161 # glyph would be the solid circle.
19162 …Line": { # A magnitude in a single direction in the specified units. # The amount of indentation f…
19164 "magnitude": 3.14, # The magnitude.
19165 "unit": "A String", # The units for magnitude.
19170 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
19174 …"suggestedListPropertiesChanges": { # The suggested changes to the list properties, keyed by sugge…
19177 …"listProperties": { # The properties of a list which describe the look # A ListProperties that onl…
19178 # the changes made in this suggestion. This can be used along with the
19182 … "nestingLevels": [ # Describes the properties of the bullets at the associated level.
19185 # corresponding to the top-most level and nesting level 8 corresponding to
19186 # the most nested level. The nesting levels are returned in ascending order
19187 # with the least nested returned first.
19188 { # Contains properties describing the look and feel of a list bullet at a given
19190 …"textStyle": { # Represents the styling that can be applied to text. # The text style of bullets a…
19193 # text style's parent depends on where the text style is defined:
19195 # * The TextStyle of text in a Paragraph
19196 # inherits from the paragraph's corresponding named style type.
19197 # * The TextStyle on a named style
19198 # inherits from the normal text named style.
19199 # * The TextStyle of the normal text named style inherits
19200 # from the default text style in the Docs editor.
19201 # * The TextStyle on a Paragraph element
19202 # that is contained in a table may inherit its text style from the table
19205 # If the text style does not inherit from a parent, unsetting fields will
19206 # revert the style to a value matching the defaults in the Docs editor.
19207 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
19208 # or transparent, depending on the `color` field.
19211 "rgbColor": { # An RGB color. # The RGB color value.
19212 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
19213 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
19214 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
19218 "italic": True or False, # Whether or not the text is italicized.
19219 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
19222 … # rendered in a smaller font size, computed based on the `font_size` field.
19223 # The `font_size` itself is not affected by changes in this field.
19224 "strikethrough": True or False, # Whether or not the text is struck through.
19225 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
19228 # `bold`, the `weighted_font_family` is applied first, then `bold`.
19235 "fontFamily": "A String", # The font family of the text.
19237 # The font family can be any font from the Font menu in Docs or from
19238 # [Google Fonts] (https://fonts.google.com/). If the font name is
19239 # unrecognized, the text is rendered in `Arial`.
19240 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
19241 … # `100` between `100` and `900`, inclusive. This range corresponds to the
19242 # numerical values described in the CSS 2.1 Specification,
19246 # The default value is `400` ("normal").
19248 … # The font weight makes up just one component of the rendered font weight.
19249 … # The rendered weight is determined by a combination of the `weight` and the
19252 # * If the text is bold and the weight is less than `400`, the rendered
19254 … # * If the text is bold and the weight is greater than or equal to `400` but
19255 # is less than `700`, the rendered weight is `700`.
19256 … # * If the weight is greater than or equal to `700`, the rendered weight is
19257 # equal to the weight.
19258 # * If the text is not bold, the rendered weight is equal to the weight.
19260 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
19261 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
19262 "magnitude": 3.14, # The magnitude.
19263 "unit": "A String", # The units for magnitude.
19265 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
19266 # or transparent, depending on the `color` field.
19269 "rgbColor": { # An RGB color. # The RGB color value.
19270 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
19271 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
19272 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
19276 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
19279 # Changing the link in an update request causes some other changes to the
19280 # text style of the range:
19282 # * When setting a link, the text foreground color will be updated to the
19283 … # default link color and the text will be underlined. If these fields are
19284 # modified in the same request, those values will be used instead of the
19287 # also update the existing link to point to the new URL.
19290 # will separate the newline character(s) into their own text runs. The
19291 … # link will be applied separately to the runs before and after the newline.
19292 # * Removing a link will update the text style of the range to match the
19293 … # style of the preceding text (or the default text styles if the preceding
19294 … # text is another link) unless different styles are being set in the same
19296 "headingId": "A String", # The ID of a heading in this document.
19298 "bookmarkId": "A String", # The ID of a bookmark in this document.
19300 "underline": True or False, # Whether or not the text is underlined.
19301 "bold": True or False, # Whether or not the text is rendered as bold.
19303 …"indentStart": { # A magnitude in a single direction in the specified units. # The amount of inden…
19304 # to the side that corresponds to the start of the text, based on the
19306 "magnitude": 3.14, # The magnitude.
19307 "unit": "A String", # The units for magnitude.
19309 … "glyphFormat": "A String", # The format string used by bullets at this level of nesting.
19311 # The glyph format contains one or more placeholders, and these placeholder
19312 …# are replaced with the appropriate values depending on the glyph_type or glyph_symbol. The placeh…
19313 … # the pattern `%[nesting_level]`. Furthermore, placeholders can have prefixes
19314 # and suffixes. Thus, the glyph format follows the pattern
19315 # `<prefix>%[nesting_level]<suffix>`. Note that the prefix and suffix are
19318 # For example, the glyph format `%0.` indicates that the rendered glyph will
19319 # replace the placeholder with the corresponding glyph for nesting level 0
19320 # followed by a period as the suffix. So a list with a glyph type of
19328 # The glyph format can contain placeholders for the current nesting level as
19340 … # For nesting levels that are ordered, the string that replaces a placeholder
19341 # in the glyph format for a particular paragraph depends on the paragraph's
19342 # order within the list.
19343 … "glyphType": "A String", # The type of glyph used by bullets when paragraphs at this level of
19346 # The glyph type determines the type of glyph used to replace placeholders
19347 # within the glyph_format
19348 # when paragraphs at this level of nesting are ordered. For example, if the
19349 # nesting level is 0, the glyph_format is `%0.` and the glyph
19351 # then the rendered glyph would replace the placeholder `%0` in the glyph
19352 # format with a number corresponding to list item's order within the list.
19353 "startNumber": 42, # The number of the first list item at this nesting level.
19360 …"bulletAlignment": "A String", # The alignment of the bullet within the space allotted for renderi…
19365 … # The glyph symbol replaces placeholders within the glyph_format. For example, if the
19366 # glyph_symbol is the solid circle corresponding to Unicode U+25cf code
19367 # point and the glyph_format is `%0`, the rendered
19368 # glyph would be the solid circle.
19369 …Line": { # A magnitude in a single direction in the specified units. # The amount of indentation f…
19371 "magnitude": 3.14, # The magnitude.
19372 "unit": "A String", # The units for magnitude.
19377 …tes which of the fields on the base ListProperties have been changed in this suggestion. # A mask …
19379 …"nestingLevelsSuggestionStates": [ # A mask that indicates which of the fields on the corresponding
19383 # The nesting level suggestion states are returned in ascending order of the
19384 # nesting level with the least nested returned first.
19385 …{ # A mask that indicates which of the fields on the base NestingLevel have been changed in this s…
19387 …hat indicates which of the fields on the base TextStyle have been changed in this suggestion. # A …
19421 …"suggestedInsertionId": "A String", # The suggested insertion ID. If empty, then this is not a sug…
19425 "headers": { # The headers in the document, keyed by header ID.
19427 "headerId": "A String", # The ID of the header.
19428 "content": [ # The contents of the header.
19430 # The indexes for a header's content begin at zero.
19431 { # A StructuralElement describes content that provides structure to the
19433 … "endIndex": 42, # The zero-based end index of this structural element, exclusive, in UTF-16
19436 # section break. A section is a range of content which has the same
19438 # the start of a new section, and the section style applies to the section
19439 # after the section break.
19441 # The document body always begins with a section break.
19442 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
19446 …"sectionStyle": { # The styling that applies to a section. # The style of the section after this s…
19447 …"contentDirection": "A String", # The content direction of this section. If unset, the value defau…
19449 "columnProperties": [ # The section's columns properties.
19451 # If empty, the section contains one column with the default properties in
19452 # the Docs editor.
19454 … "width": { # A magnitude in a single direction in the specified units. # The width of the column.
19455 "magnitude": 3.14, # The magnitude.
19456 "unit": "A String", # The units for magnitude.
19458 …ingEnd": { # A magnitude in a single direction in the specified units. # The padding at the end of…
19459 "magnitude": 3.14, # The magnitude.
19460 "unit": "A String", # The units for magnitude.
19464 "columnSeparatorStyle": "A String", # The style of column separators.
19466 # This style can be set even when there is one column in the section.
19468 …"suggestedInsertionIds": [ # The suggested insertion IDs. A SectionBreak may have multiple inserti…
19476 "content": [ # The content of the table of contents.
19479 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
19483 …"suggestedInsertionIds": [ # The suggested insertion IDs. A TableOfContents may have multiple inse…
19489 … "startIndex": 42, # The zero-based start index of this structural element, in UTF-16 code
19494 "elements": [ # The content of the paragraph broken down into its component parts.
19497 … "endIndex": 42, # The zero-base end index of this paragraph element, exclusive, in UTF-16
19501 "suggestedInsertionIds": [ # The suggested insertion IDs. A Equation
19506 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
19512 # column break. A column break makes the subsequent text start at the top of
19513 # the next column.
19514 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Colu…
19516 … # Similar to text content, like text runs and footnote references, the text
19517 … # style of a column break can affect content layout as well as the styling of
19521 # text style's parent depends on where the text style is defined:
19523 # * The TextStyle of text in a Paragraph
19524 # inherits from the paragraph's corresponding named style type.
19525 # * The TextStyle on a named style
19526 # inherits from the normal text named style.
19527 # * The TextStyle of the normal text named style inherits
19528 # from the default text style in the Docs editor.
19529 # * The TextStyle on a Paragraph element
19530 … # that is contained in a table may inherit its text style from the table
19533 # If the text style does not inherit from a parent, unsetting fields will
19534 # revert the style to a value matching the defaults in the Docs editor.
19535 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
19536 # or transparent, depending on the `color` field.
19539 "rgbColor": { # An RGB color. # The RGB color value.
19540 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
19541 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
19542 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
19546 "italic": True or False, # Whether or not the text is italicized.
19547 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
19550 … # rendered in a smaller font size, computed based on the `font_size` field.
19551 # The `font_size` itself is not affected by changes in this field.
19552 "strikethrough": True or False, # Whether or not the text is struck through.
19553 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
19556 # `bold`, the `weighted_font_family` is applied first, then `bold`.
19563 "fontFamily": "A String", # The font family of the text.
19565 # The font family can be any font from the Font menu in Docs or from
19566 # [Google Fonts] (https://fonts.google.com/). If the font name is
19567 # unrecognized, the text is rendered in `Arial`.
19568 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
19569 … # `100` between `100` and `900`, inclusive. This range corresponds to the
19570 # numerical values described in the CSS 2.1 Specification,
19574 # The default value is `400` ("normal").
19576 … # The font weight makes up just one component of the rendered font weight.
19577 … # The rendered weight is determined by a combination of the `weight` and the
19580 … # * If the text is bold and the weight is less than `400`, the rendered
19582 … # * If the text is bold and the weight is greater than or equal to `400` but
19583 # is less than `700`, the rendered weight is `700`.
19584 … # * If the weight is greater than or equal to `700`, the rendered weight is
19585 # equal to the weight.
19586 … # * If the text is not bold, the rendered weight is equal to the weight.
19588 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
19589 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
19590 "magnitude": 3.14, # The magnitude.
19591 "unit": "A String", # The units for magnitude.
19593 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
19594 # or transparent, depending on the `color` field.
19597 "rgbColor": { # An RGB color. # The RGB color value.
19598 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
19599 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
19600 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
19604 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
19607 … # Changing the link in an update request causes some other changes to the
19608 # text style of the range:
19610 … # * When setting a link, the text foreground color will be updated to the
19611 … # default link color and the text will be underlined. If these fields are
19612 … # modified in the same request, those values will be used instead of the
19615 # also update the existing link to point to the new URL.
19618 # will separate the newline character(s) into their own text runs. The
19619 … # link will be applied separately to the runs before and after the newline.
19620 # * Removing a link will update the text style of the range to match the
19621 … # style of the preceding text (or the default text styles if the preceding
19622 … # text is another link) unless different styles are being set in the same
19624 "headingId": "A String", # The ID of a heading in this document.
19626 "bookmarkId": "A String", # The ID of a bookmark in this document.
19628 "underline": True or False, # Whether or not the text is underlined.
19629 "bold": True or False, # Whether or not the text is rendered as bold.
19631 …"suggestedInsertionIds": [ # The suggested insertion IDs. A ColumnBreak may have multiple insertio…
19636 …"suggestedTextStyleChanges": { # The suggested text style changes to this ColumnBreak, keyed by su…
19639 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
19640 # the changes made in this suggestion. This can be used along with the
19645 # text style's parent depends on where the text style is defined:
19647 # * The TextStyle of text in a Paragraph
19648 # inherits from the paragraph's corresponding named style type.
19649 # * The TextStyle on a named style
19650 # inherits from the normal text named style.
19651 # * The TextStyle of the normal text named style inherits
19652 # from the default text style in the Docs editor.
19653 # * The TextStyle on a Paragraph element
19654 … # that is contained in a table may inherit its text style from the table
19657 … # If the text style does not inherit from a parent, unsetting fields will
19658 … # revert the style to a value matching the defaults in the Docs editor.
19659 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
19660 # or transparent, depending on the `color` field.
19663 "rgbColor": { # An RGB color. # The RGB color value.
19664 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
19665 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
19666 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
19670 "italic": True or False, # Whether or not the text is italicized.
19671 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
19674 … # rendered in a smaller font size, computed based on the `font_size` field.
19675 # The `font_size` itself is not affected by changes in this field.
19676 … "strikethrough": True or False, # Whether or not the text is struck through.
19677 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
19680 # `bold`, the `weighted_font_family` is applied first, then `bold`.
19687 "fontFamily": "A String", # The font family of the text.
19689 … # The font family can be any font from the Font menu in Docs or from
19690 # [Google Fonts] (https://fonts.google.com/). If the font name is
19691 # unrecognized, the text is rendered in `Arial`.
19692 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
19693 … # `100` between `100` and `900`, inclusive. This range corresponds to the
19694 # numerical values described in the CSS 2.1 Specification,
19698 # The default value is `400` ("normal").
19700 … # The font weight makes up just one component of the rendered font weight.
19701 … # The rendered weight is determined by a combination of the `weight` and the
19704 … # * If the text is bold and the weight is less than `400`, the rendered
19706 … # * If the text is bold and the weight is greater than or equal to `400` but
19707 # is less than `700`, the rendered weight is `700`.
19708 … # * If the weight is greater than or equal to `700`, the rendered weight is
19709 # equal to the weight.
19710 … # * If the text is not bold, the rendered weight is equal to the weight.
19712 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
19713 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
19714 "magnitude": 3.14, # The magnitude.
19715 "unit": "A String", # The units for magnitude.
19717 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
19718 # or transparent, depending on the `color` field.
19721 "rgbColor": { # An RGB color. # The RGB color value.
19722 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
19723 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
19724 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
19728 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
19731 … # Changing the link in an update request causes some other changes to the
19732 # text style of the range:
19734 … # * When setting a link, the text foreground color will be updated to the
19735 … # default link color and the text will be underlined. If these fields are
19736 … # modified in the same request, those values will be used instead of the
19739 # also update the existing link to point to the new URL.
19742 … # will separate the newline character(s) into their own text runs. The
19743 … # link will be applied separately to the runs before and after the newline.
19744 … # * Removing a link will update the text style of the range to match the
19745 … # style of the preceding text (or the default text styles if the preceding
19746 … # text is another link) unless different styles are being set in the same
19748 "headingId": "A String", # The ID of a heading in this document.
19750 "bookmarkId": "A String", # The ID of a bookmark in this document.
19752 "underline": True or False, # Whether or not the text is underlined.
19753 "bold": True or False, # Whether or not the text is rendered as bold.
19755 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
19771 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
19776 … "startIndex": 42, # The zero-based start index of this paragraph element, in UTF-16 code units.
19778 # page break. A page break makes the subsequent text start at the top of the
19780 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Page…
19782 … # Similar to text content, like text runs and footnote references, the text
19783 … # style of a page break can affect content layout as well as the styling of
19787 # text style's parent depends on where the text style is defined:
19789 # * The TextStyle of text in a Paragraph
19790 # inherits from the paragraph's corresponding named style type.
19791 # * The TextStyle on a named style
19792 # inherits from the normal text named style.
19793 # * The TextStyle of the normal text named style inherits
19794 # from the default text style in the Docs editor.
19795 # * The TextStyle on a Paragraph element
19796 … # that is contained in a table may inherit its text style from the table
19799 # If the text style does not inherit from a parent, unsetting fields will
19800 # revert the style to a value matching the defaults in the Docs editor.
19801 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
19802 # or transparent, depending on the `color` field.
19805 "rgbColor": { # An RGB color. # The RGB color value.
19806 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
19807 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
19808 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
19812 "italic": True or False, # Whether or not the text is italicized.
19813 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
19816 … # rendered in a smaller font size, computed based on the `font_size` field.
19817 # The `font_size` itself is not affected by changes in this field.
19818 "strikethrough": True or False, # Whether or not the text is struck through.
19819 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
19822 # `bold`, the `weighted_font_family` is applied first, then `bold`.
19829 "fontFamily": "A String", # The font family of the text.
19831 # The font family can be any font from the Font menu in Docs or from
19832 # [Google Fonts] (https://fonts.google.com/). If the font name is
19833 # unrecognized, the text is rendered in `Arial`.
19834 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
19835 … # `100` between `100` and `900`, inclusive. This range corresponds to the
19836 # numerical values described in the CSS 2.1 Specification,
19840 # The default value is `400` ("normal").
19842 … # The font weight makes up just one component of the rendered font weight.
19843 … # The rendered weight is determined by a combination of the `weight` and the
19846 … # * If the text is bold and the weight is less than `400`, the rendered
19848 … # * If the text is bold and the weight is greater than or equal to `400` but
19849 # is less than `700`, the rendered weight is `700`.
19850 … # * If the weight is greater than or equal to `700`, the rendered weight is
19851 # equal to the weight.
19852 … # * If the text is not bold, the rendered weight is equal to the weight.
19854 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
19855 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
19856 "magnitude": 3.14, # The magnitude.
19857 "unit": "A String", # The units for magnitude.
19859 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
19860 # or transparent, depending on the `color` field.
19863 "rgbColor": { # An RGB color. # The RGB color value.
19864 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
19865 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
19866 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
19870 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
19873 … # Changing the link in an update request causes some other changes to the
19874 # text style of the range:
19876 … # * When setting a link, the text foreground color will be updated to the
19877 … # default link color and the text will be underlined. If these fields are
19878 … # modified in the same request, those values will be used instead of the
19881 # also update the existing link to point to the new URL.
19884 # will separate the newline character(s) into their own text runs. The
19885 … # link will be applied separately to the runs before and after the newline.
19886 # * Removing a link will update the text style of the range to match the
19887 … # style of the preceding text (or the default text styles if the preceding
19888 … # text is another link) unless different styles are being set in the same
19890 "headingId": "A String", # The ID of a heading in this document.
19892 "bookmarkId": "A String", # The ID of a bookmark in this document.
19894 "underline": True or False, # Whether or not the text is underlined.
19895 "bold": True or False, # Whether or not the text is rendered as bold.
19897 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
19901 …"suggestedTextStyleChanges": { # The suggested text style changes to this PageBreak, keyed by sugg…
19903 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
19904 # the changes made in this suggestion. This can be used along with the
19909 # text style's parent depends on where the text style is defined:
19911 # * The TextStyle of text in a Paragraph
19912 # inherits from the paragraph's corresponding named style type.
19913 # * The TextStyle on a named style
19914 # inherits from the normal text named style.
19915 # * The TextStyle of the normal text named style inherits
19916 # from the default text style in the Docs editor.
19917 # * The TextStyle on a Paragraph element
19918 … # that is contained in a table may inherit its text style from the table
19921 … # If the text style does not inherit from a parent, unsetting fields will
19922 … # revert the style to a value matching the defaults in the Docs editor.
19923 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
19924 # or transparent, depending on the `color` field.
19927 "rgbColor": { # An RGB color. # The RGB color value.
19928 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
19929 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
19930 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
19934 "italic": True or False, # Whether or not the text is italicized.
19935 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
19938 … # rendered in a smaller font size, computed based on the `font_size` field.
19939 # The `font_size` itself is not affected by changes in this field.
19940 … "strikethrough": True or False, # Whether or not the text is struck through.
19941 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
19944 # `bold`, the `weighted_font_family` is applied first, then `bold`.
19951 "fontFamily": "A String", # The font family of the text.
19953 … # The font family can be any font from the Font menu in Docs or from
19954 # [Google Fonts] (https://fonts.google.com/). If the font name is
19955 # unrecognized, the text is rendered in `Arial`.
19956 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
19957 … # `100` between `100` and `900`, inclusive. This range corresponds to the
19958 # numerical values described in the CSS 2.1 Specification,
19962 # The default value is `400` ("normal").
19964 … # The font weight makes up just one component of the rendered font weight.
19965 … # The rendered weight is determined by a combination of the `weight` and the
19968 … # * If the text is bold and the weight is less than `400`, the rendered
19970 … # * If the text is bold and the weight is greater than or equal to `400` but
19971 # is less than `700`, the rendered weight is `700`.
19972 … # * If the weight is greater than or equal to `700`, the rendered weight is
19973 # equal to the weight.
19974 … # * If the text is not bold, the rendered weight is equal to the weight.
19976 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
19977 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
19978 "magnitude": 3.14, # The magnitude.
19979 "unit": "A String", # The units for magnitude.
19981 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
19982 # or transparent, depending on the `color` field.
19985 "rgbColor": { # An RGB color. # The RGB color value.
19986 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
19987 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
19988 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
19992 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
19995 … # Changing the link in an update request causes some other changes to the
19996 # text style of the range:
19998 … # * When setting a link, the text foreground color will be updated to the
19999 … # default link color and the text will be underlined. If these fields are
20000 … # modified in the same request, those values will be used instead of the
20003 # also update the existing link to point to the new URL.
20006 … # will separate the newline character(s) into their own text runs. The
20007 … # link will be applied separately to the runs before and after the newline.
20008 … # * Removing a link will update the text style of the range to match the
20009 … # style of the preceding text (or the default text styles if the preceding
20010 … # text is another link) unless different styles are being set in the same
20012 "headingId": "A String", # The ID of a heading in this document.
20014 "bookmarkId": "A String", # The ID of a bookmark in this document.
20016 "underline": True or False, # Whether or not the text is underlined.
20017 "bold": True or False, # Whether or not the text is rendered as bold.
20019 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
20035 "suggestedInsertionIds": [ # The suggested insertion IDs. A PageBreak
20043 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Hori…
20045 … # Similar to text content, like text runs and footnote references, the text
20046 … # style of a horizontal rule can affect content layout as well as the styling
20050 # text style's parent depends on where the text style is defined:
20052 # * The TextStyle of text in a Paragraph
20053 # inherits from the paragraph's corresponding named style type.
20054 # * The TextStyle on a named style
20055 # inherits from the normal text named style.
20056 # * The TextStyle of the normal text named style inherits
20057 # from the default text style in the Docs editor.
20058 # * The TextStyle on a Paragraph element
20059 … # that is contained in a table may inherit its text style from the table
20062 # If the text style does not inherit from a parent, unsetting fields will
20063 # revert the style to a value matching the defaults in the Docs editor.
20064 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
20065 # or transparent, depending on the `color` field.
20068 "rgbColor": { # An RGB color. # The RGB color value.
20069 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
20070 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
20071 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
20075 "italic": True or False, # Whether or not the text is italicized.
20076 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
20079 … # rendered in a smaller font size, computed based on the `font_size` field.
20080 # The `font_size` itself is not affected by changes in this field.
20081 "strikethrough": True or False, # Whether or not the text is struck through.
20082 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
20085 # `bold`, the `weighted_font_family` is applied first, then `bold`.
20092 "fontFamily": "A String", # The font family of the text.
20094 # The font family can be any font from the Font menu in Docs or from
20095 # [Google Fonts] (https://fonts.google.com/). If the font name is
20096 # unrecognized, the text is rendered in `Arial`.
20097 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
20098 … # `100` between `100` and `900`, inclusive. This range corresponds to the
20099 # numerical values described in the CSS 2.1 Specification,
20103 # The default value is `400` ("normal").
20105 … # The font weight makes up just one component of the rendered font weight.
20106 … # The rendered weight is determined by a combination of the `weight` and the
20109 … # * If the text is bold and the weight is less than `400`, the rendered
20111 … # * If the text is bold and the weight is greater than or equal to `400` but
20112 # is less than `700`, the rendered weight is `700`.
20113 … # * If the weight is greater than or equal to `700`, the rendered weight is
20114 # equal to the weight.
20115 … # * If the text is not bold, the rendered weight is equal to the weight.
20117 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
20118 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
20119 "magnitude": 3.14, # The magnitude.
20120 "unit": "A String", # The units for magnitude.
20122 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
20123 # or transparent, depending on the `color` field.
20126 "rgbColor": { # An RGB color. # The RGB color value.
20127 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
20128 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
20129 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
20133 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
20136 … # Changing the link in an update request causes some other changes to the
20137 # text style of the range:
20139 … # * When setting a link, the text foreground color will be updated to the
20140 … # default link color and the text will be underlined. If these fields are
20141 … # modified in the same request, those values will be used instead of the
20144 # also update the existing link to point to the new URL.
20147 # will separate the newline character(s) into their own text runs. The
20148 … # link will be applied separately to the runs before and after the newline.
20149 # * Removing a link will update the text style of the range to match the
20150 … # style of the preceding text (or the default text styles if the preceding
20151 … # text is another link) unless different styles are being set in the same
20153 "headingId": "A String", # The ID of a heading in this document.
20155 "bookmarkId": "A String", # The ID of a bookmark in this document.
20157 "underline": True or False, # Whether or not the text is underlined.
20158 "bold": True or False, # Whether or not the text is rendered as bold.
20160 …"suggestedInsertionIds": [ # The suggested insertion IDs. A HorizontalRule may have multiple inser…
20165 … "suggestedTextStyleChanges": { # The suggested text style changes to this HorizontalRule, keyed by
20168 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
20169 # the changes made in this suggestion. This can be used along with the
20174 # text style's parent depends on where the text style is defined:
20176 # * The TextStyle of text in a Paragraph
20177 # inherits from the paragraph's corresponding named style type.
20178 # * The TextStyle on a named style
20179 # inherits from the normal text named style.
20180 # * The TextStyle of the normal text named style inherits
20181 # from the default text style in the Docs editor.
20182 # * The TextStyle on a Paragraph element
20183 … # that is contained in a table may inherit its text style from the table
20186 … # If the text style does not inherit from a parent, unsetting fields will
20187 … # revert the style to a value matching the defaults in the Docs editor.
20188 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
20189 # or transparent, depending on the `color` field.
20192 "rgbColor": { # An RGB color. # The RGB color value.
20193 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
20194 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
20195 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
20199 "italic": True or False, # Whether or not the text is italicized.
20200 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
20203 … # rendered in a smaller font size, computed based on the `font_size` field.
20204 # The `font_size` itself is not affected by changes in this field.
20205 … "strikethrough": True or False, # Whether or not the text is struck through.
20206 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
20209 # `bold`, the `weighted_font_family` is applied first, then `bold`.
20216 "fontFamily": "A String", # The font family of the text.
20218 … # The font family can be any font from the Font menu in Docs or from
20219 # [Google Fonts] (https://fonts.google.com/). If the font name is
20220 # unrecognized, the text is rendered in `Arial`.
20221 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
20222 … # `100` between `100` and `900`, inclusive. This range corresponds to the
20223 # numerical values described in the CSS 2.1 Specification,
20227 # The default value is `400` ("normal").
20229 … # The font weight makes up just one component of the rendered font weight.
20230 … # The rendered weight is determined by a combination of the `weight` and the
20233 … # * If the text is bold and the weight is less than `400`, the rendered
20235 … # * If the text is bold and the weight is greater than or equal to `400` but
20236 # is less than `700`, the rendered weight is `700`.
20237 … # * If the weight is greater than or equal to `700`, the rendered weight is
20238 # equal to the weight.
20239 … # * If the text is not bold, the rendered weight is equal to the weight.
20241 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
20242 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
20243 "magnitude": 3.14, # The magnitude.
20244 "unit": "A String", # The units for magnitude.
20246 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
20247 # or transparent, depending on the `color` field.
20250 "rgbColor": { # An RGB color. # The RGB color value.
20251 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
20252 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
20253 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
20257 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
20260 … # Changing the link in an update request causes some other changes to the
20261 # text style of the range:
20263 … # * When setting a link, the text foreground color will be updated to the
20264 … # default link color and the text will be underlined. If these fields are
20265 … # modified in the same request, those values will be used instead of the
20268 # also update the existing link to point to the new URL.
20271 … # will separate the newline character(s) into their own text runs. The
20272 … # link will be applied separately to the runs before and after the newline.
20273 … # * Removing a link will update the text style of the range to match the
20274 … # style of the preceding text (or the default text styles if the preceding
20275 … # text is another link) unless different styles are being set in the same
20277 "headingId": "A String", # The ID of a heading in this document.
20279 "bookmarkId": "A String", # The ID of a bookmark in this document.
20281 "underline": True or False, # Whether or not the text is underlined.
20282 "bold": True or False, # Whether or not the text is rendered as bold.
20284 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
20300 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
20306 # run of text that all has the same styling.
20307 "content": "A String", # The text of this run.
20309 # Any non-text elements in the run are replaced with the Unicode character
20311 … "textStyle": { # Represents the styling that can be applied to text. # The text style of this run.
20314 # text style's parent depends on where the text style is defined:
20316 # * The TextStyle of text in a Paragraph
20317 # inherits from the paragraph's corresponding named style type.
20318 # * The TextStyle on a named style
20319 # inherits from the normal text named style.
20320 # * The TextStyle of the normal text named style inherits
20321 # from the default text style in the Docs editor.
20322 # * The TextStyle on a Paragraph element
20323 … # that is contained in a table may inherit its text style from the table
20326 # If the text style does not inherit from a parent, unsetting fields will
20327 # revert the style to a value matching the defaults in the Docs editor.
20328 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
20329 # or transparent, depending on the `color` field.
20332 "rgbColor": { # An RGB color. # The RGB color value.
20333 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
20334 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
20335 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
20339 "italic": True or False, # Whether or not the text is italicized.
20340 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
20343 … # rendered in a smaller font size, computed based on the `font_size` field.
20344 # The `font_size` itself is not affected by changes in this field.
20345 "strikethrough": True or False, # Whether or not the text is struck through.
20346 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
20349 # `bold`, the `weighted_font_family` is applied first, then `bold`.
20356 "fontFamily": "A String", # The font family of the text.
20358 # The font family can be any font from the Font menu in Docs or from
20359 # [Google Fonts] (https://fonts.google.com/). If the font name is
20360 # unrecognized, the text is rendered in `Arial`.
20361 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
20362 … # `100` between `100` and `900`, inclusive. This range corresponds to the
20363 # numerical values described in the CSS 2.1 Specification,
20367 # The default value is `400` ("normal").
20369 … # The font weight makes up just one component of the rendered font weight.
20370 … # The rendered weight is determined by a combination of the `weight` and the
20373 … # * If the text is bold and the weight is less than `400`, the rendered
20375 … # * If the text is bold and the weight is greater than or equal to `400` but
20376 # is less than `700`, the rendered weight is `700`.
20377 … # * If the weight is greater than or equal to `700`, the rendered weight is
20378 # equal to the weight.
20379 … # * If the text is not bold, the rendered weight is equal to the weight.
20381 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
20382 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
20383 "magnitude": 3.14, # The magnitude.
20384 "unit": "A String", # The units for magnitude.
20386 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
20387 # or transparent, depending on the `color` field.
20390 "rgbColor": { # An RGB color. # The RGB color value.
20391 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
20392 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
20393 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
20397 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
20400 … # Changing the link in an update request causes some other changes to the
20401 # text style of the range:
20403 … # * When setting a link, the text foreground color will be updated to the
20404 … # default link color and the text will be underlined. If these fields are
20405 … # modified in the same request, those values will be used instead of the
20408 # also update the existing link to point to the new URL.
20411 # will separate the newline character(s) into their own text runs. The
20412 … # link will be applied separately to the runs before and after the newline.
20413 # * Removing a link will update the text style of the range to match the
20414 … # style of the preceding text (or the default text styles if the preceding
20415 … # text is another link) unless different styles are being set in the same
20417 "headingId": "A String", # The ID of a heading in this document.
20419 "bookmarkId": "A String", # The ID of a bookmark in this document.
20421 "underline": True or False, # Whether or not the text is underlined.
20422 "bold": True or False, # Whether or not the text is rendered as bold.
20424 "suggestedInsertionIds": [ # The suggested insertion IDs. A TextRun may
20429 …"suggestedTextStyleChanges": { # The suggested text style changes to this run, keyed by suggestion…
20431 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
20432 # the changes made in this suggestion. This can be used along with the
20437 # text style's parent depends on where the text style is defined:
20439 # * The TextStyle of text in a Paragraph
20440 # inherits from the paragraph's corresponding named style type.
20441 # * The TextStyle on a named style
20442 # inherits from the normal text named style.
20443 # * The TextStyle of the normal text named style inherits
20444 # from the default text style in the Docs editor.
20445 # * The TextStyle on a Paragraph element
20446 … # that is contained in a table may inherit its text style from the table
20449 … # If the text style does not inherit from a parent, unsetting fields will
20450 … # revert the style to a value matching the defaults in the Docs editor.
20451 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
20452 # or transparent, depending on the `color` field.
20455 "rgbColor": { # An RGB color. # The RGB color value.
20456 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
20457 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
20458 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
20462 "italic": True or False, # Whether or not the text is italicized.
20463 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
20466 … # rendered in a smaller font size, computed based on the `font_size` field.
20467 # The `font_size` itself is not affected by changes in this field.
20468 … "strikethrough": True or False, # Whether or not the text is struck through.
20469 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
20472 # `bold`, the `weighted_font_family` is applied first, then `bold`.
20479 "fontFamily": "A String", # The font family of the text.
20481 … # The font family can be any font from the Font menu in Docs or from
20482 # [Google Fonts] (https://fonts.google.com/). If the font name is
20483 # unrecognized, the text is rendered in `Arial`.
20484 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
20485 … # `100` between `100` and `900`, inclusive. This range corresponds to the
20486 # numerical values described in the CSS 2.1 Specification,
20490 # The default value is `400` ("normal").
20492 … # The font weight makes up just one component of the rendered font weight.
20493 … # The rendered weight is determined by a combination of the `weight` and the
20496 … # * If the text is bold and the weight is less than `400`, the rendered
20498 … # * If the text is bold and the weight is greater than or equal to `400` but
20499 # is less than `700`, the rendered weight is `700`.
20500 … # * If the weight is greater than or equal to `700`, the rendered weight is
20501 # equal to the weight.
20502 … # * If the text is not bold, the rendered weight is equal to the weight.
20504 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
20505 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
20506 "magnitude": 3.14, # The magnitude.
20507 "unit": "A String", # The units for magnitude.
20509 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
20510 # or transparent, depending on the `color` field.
20513 "rgbColor": { # An RGB color. # The RGB color value.
20514 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
20515 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
20516 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
20520 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
20523 … # Changing the link in an update request causes some other changes to the
20524 # text style of the range:
20526 … # * When setting a link, the text foreground color will be updated to the
20527 … # default link color and the text will be underlined. If these fields are
20528 … # modified in the same request, those values will be used instead of the
20531 # also update the existing link to point to the new URL.
20534 … # will separate the newline character(s) into their own text runs. The
20535 … # link will be applied separately to the runs before and after the newline.
20536 … # * Removing a link will update the text style of the range to match the
20537 … # style of the preceding text (or the default text styles if the preceding
20538 … # text is another link) unless different styles are being set in the same
20540 "headingId": "A String", # The ID of a heading in this document.
20542 "bookmarkId": "A String", # The ID of a bookmark in this document.
20544 "underline": True or False, # Whether or not the text is underlined.
20545 "bold": True or False, # Whether or not the text is rendered as bold.
20547 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
20563 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
20569 # spot in the text that is dynamically replaced with content that can change
20571 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Auto…
20574 # text style's parent depends on where the text style is defined:
20576 # * The TextStyle of text in a Paragraph
20577 # inherits from the paragraph's corresponding named style type.
20578 # * The TextStyle on a named style
20579 # inherits from the normal text named style.
20580 # * The TextStyle of the normal text named style inherits
20581 # from the default text style in the Docs editor.
20582 # * The TextStyle on a Paragraph element
20583 … # that is contained in a table may inherit its text style from the table
20586 # If the text style does not inherit from a parent, unsetting fields will
20587 # revert the style to a value matching the defaults in the Docs editor.
20588 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
20589 # or transparent, depending on the `color` field.
20592 "rgbColor": { # An RGB color. # The RGB color value.
20593 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
20594 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
20595 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
20599 "italic": True or False, # Whether or not the text is italicized.
20600 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
20603 … # rendered in a smaller font size, computed based on the `font_size` field.
20604 # The `font_size` itself is not affected by changes in this field.
20605 "strikethrough": True or False, # Whether or not the text is struck through.
20606 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
20609 # `bold`, the `weighted_font_family` is applied first, then `bold`.
20616 "fontFamily": "A String", # The font family of the text.
20618 # The font family can be any font from the Font menu in Docs or from
20619 # [Google Fonts] (https://fonts.google.com/). If the font name is
20620 # unrecognized, the text is rendered in `Arial`.
20621 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
20622 … # `100` between `100` and `900`, inclusive. This range corresponds to the
20623 # numerical values described in the CSS 2.1 Specification,
20627 # The default value is `400` ("normal").
20629 … # The font weight makes up just one component of the rendered font weight.
20630 … # The rendered weight is determined by a combination of the `weight` and the
20633 … # * If the text is bold and the weight is less than `400`, the rendered
20635 … # * If the text is bold and the weight is greater than or equal to `400` but
20636 # is less than `700`, the rendered weight is `700`.
20637 … # * If the weight is greater than or equal to `700`, the rendered weight is
20638 # equal to the weight.
20639 … # * If the text is not bold, the rendered weight is equal to the weight.
20641 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
20642 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
20643 "magnitude": 3.14, # The magnitude.
20644 "unit": "A String", # The units for magnitude.
20646 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
20647 # or transparent, depending on the `color` field.
20650 "rgbColor": { # An RGB color. # The RGB color value.
20651 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
20652 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
20653 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
20657 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
20660 … # Changing the link in an update request causes some other changes to the
20661 # text style of the range:
20663 … # * When setting a link, the text foreground color will be updated to the
20664 … # default link color and the text will be underlined. If these fields are
20665 … # modified in the same request, those values will be used instead of the
20668 # also update the existing link to point to the new URL.
20671 # will separate the newline character(s) into their own text runs. The
20672 … # link will be applied separately to the runs before and after the newline.
20673 # * Removing a link will update the text style of the range to match the
20674 … # style of the preceding text (or the default text styles if the preceding
20675 … # text is another link) unless different styles are being set in the same
20677 "headingId": "A String", # The ID of a heading in this document.
20679 "bookmarkId": "A String", # The ID of a bookmark in this document.
20681 "underline": True or False, # Whether or not the text is underlined.
20682 "bold": True or False, # Whether or not the text is rendered as bold.
20684 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
20688 …"suggestedTextStyleChanges": { # The suggested text style changes to this AutoText, keyed by sugge…
20690 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
20691 # the changes made in this suggestion. This can be used along with the
20696 # text style's parent depends on where the text style is defined:
20698 # * The TextStyle of text in a Paragraph
20699 # inherits from the paragraph's corresponding named style type.
20700 # * The TextStyle on a named style
20701 # inherits from the normal text named style.
20702 # * The TextStyle of the normal text named style inherits
20703 # from the default text style in the Docs editor.
20704 # * The TextStyle on a Paragraph element
20705 … # that is contained in a table may inherit its text style from the table
20708 … # If the text style does not inherit from a parent, unsetting fields will
20709 … # revert the style to a value matching the defaults in the Docs editor.
20710 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
20711 # or transparent, depending on the `color` field.
20714 "rgbColor": { # An RGB color. # The RGB color value.
20715 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
20716 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
20717 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
20721 "italic": True or False, # Whether or not the text is italicized.
20722 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
20725 … # rendered in a smaller font size, computed based on the `font_size` field.
20726 # The `font_size` itself is not affected by changes in this field.
20727 … "strikethrough": True or False, # Whether or not the text is struck through.
20728 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
20731 # `bold`, the `weighted_font_family` is applied first, then `bold`.
20738 "fontFamily": "A String", # The font family of the text.
20740 … # The font family can be any font from the Font menu in Docs or from
20741 # [Google Fonts] (https://fonts.google.com/). If the font name is
20742 # unrecognized, the text is rendered in `Arial`.
20743 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
20744 … # `100` between `100` and `900`, inclusive. This range corresponds to the
20745 # numerical values described in the CSS 2.1 Specification,
20749 # The default value is `400` ("normal").
20751 … # The font weight makes up just one component of the rendered font weight.
20752 … # The rendered weight is determined by a combination of the `weight` and the
20755 … # * If the text is bold and the weight is less than `400`, the rendered
20757 … # * If the text is bold and the weight is greater than or equal to `400` but
20758 # is less than `700`, the rendered weight is `700`.
20759 … # * If the weight is greater than or equal to `700`, the rendered weight is
20760 # equal to the weight.
20761 … # * If the text is not bold, the rendered weight is equal to the weight.
20763 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
20764 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
20765 "magnitude": 3.14, # The magnitude.
20766 "unit": "A String", # The units for magnitude.
20768 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
20769 # or transparent, depending on the `color` field.
20772 "rgbColor": { # An RGB color. # The RGB color value.
20773 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
20774 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
20775 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
20779 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
20782 … # Changing the link in an update request causes some other changes to the
20783 # text style of the range:
20785 … # * When setting a link, the text foreground color will be updated to the
20786 … # default link color and the text will be underlined. If these fields are
20787 … # modified in the same request, those values will be used instead of the
20790 # also update the existing link to point to the new URL.
20793 … # will separate the newline character(s) into their own text runs. The
20794 … # link will be applied separately to the runs before and after the newline.
20795 … # * Removing a link will update the text style of the range to match the
20796 … # style of the preceding text (or the default text styles if the preceding
20797 … # text is another link) unless different styles are being set in the same
20799 "headingId": "A String", # The ID of a heading in this document.
20801 "bookmarkId": "A String", # The ID of a bookmark in this document.
20803 "underline": True or False, # Whether or not the text is underlined.
20804 "bold": True or False, # Whether or not the text is rendered as bold.
20806 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
20822 "type": "A String", # The type of this auto text.
20823 "suggestedInsertionIds": [ # The suggested insertion IDs. An AutoText
20831 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Inli…
20833 … # Similar to text content, like text runs and footnote references, the text
20834 … # style of an inline object element can affect content layout as well as the
20838 # text style's parent depends on where the text style is defined:
20840 # * The TextStyle of text in a Paragraph
20841 # inherits from the paragraph's corresponding named style type.
20842 # * The TextStyle on a named style
20843 # inherits from the normal text named style.
20844 # * The TextStyle of the normal text named style inherits
20845 # from the default text style in the Docs editor.
20846 # * The TextStyle on a Paragraph element
20847 … # that is contained in a table may inherit its text style from the table
20850 # If the text style does not inherit from a parent, unsetting fields will
20851 # revert the style to a value matching the defaults in the Docs editor.
20852 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
20853 # or transparent, depending on the `color` field.
20856 "rgbColor": { # An RGB color. # The RGB color value.
20857 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
20858 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
20859 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
20863 "italic": True or False, # Whether or not the text is italicized.
20864 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
20867 … # rendered in a smaller font size, computed based on the `font_size` field.
20868 # The `font_size` itself is not affected by changes in this field.
20869 "strikethrough": True or False, # Whether or not the text is struck through.
20870 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
20873 # `bold`, the `weighted_font_family` is applied first, then `bold`.
20880 "fontFamily": "A String", # The font family of the text.
20882 # The font family can be any font from the Font menu in Docs or from
20883 # [Google Fonts] (https://fonts.google.com/). If the font name is
20884 # unrecognized, the text is rendered in `Arial`.
20885 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
20886 … # `100` between `100` and `900`, inclusive. This range corresponds to the
20887 # numerical values described in the CSS 2.1 Specification,
20891 # The default value is `400` ("normal").
20893 … # The font weight makes up just one component of the rendered font weight.
20894 … # The rendered weight is determined by a combination of the `weight` and the
20897 … # * If the text is bold and the weight is less than `400`, the rendered
20899 … # * If the text is bold and the weight is greater than or equal to `400` but
20900 # is less than `700`, the rendered weight is `700`.
20901 … # * If the weight is greater than or equal to `700`, the rendered weight is
20902 # equal to the weight.
20903 … # * If the text is not bold, the rendered weight is equal to the weight.
20905 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
20906 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
20907 "magnitude": 3.14, # The magnitude.
20908 "unit": "A String", # The units for magnitude.
20910 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
20911 # or transparent, depending on the `color` field.
20914 "rgbColor": { # An RGB color. # The RGB color value.
20915 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
20916 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
20917 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
20921 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
20924 … # Changing the link in an update request causes some other changes to the
20925 # text style of the range:
20927 … # * When setting a link, the text foreground color will be updated to the
20928 … # default link color and the text will be underlined. If these fields are
20929 … # modified in the same request, those values will be used instead of the
20932 # also update the existing link to point to the new URL.
20935 # will separate the newline character(s) into their own text runs. The
20936 … # link will be applied separately to the runs before and after the newline.
20937 # * Removing a link will update the text style of the range to match the
20938 … # style of the preceding text (or the default text styles if the preceding
20939 … # text is another link) unless different styles are being set in the same
20941 "headingId": "A String", # The ID of a heading in this document.
20943 "bookmarkId": "A String", # The ID of a bookmark in this document.
20945 "underline": True or False, # Whether or not the text is underlined.
20946 "bold": True or False, # Whether or not the text is rendered as bold.
20948 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
20952 …"suggestedTextStyleChanges": { # The suggested text style changes to this InlineObject, keyed by s…
20955 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
20956 # the changes made in this suggestion. This can be used along with the
20961 # text style's parent depends on where the text style is defined:
20963 # * The TextStyle of text in a Paragraph
20964 # inherits from the paragraph's corresponding named style type.
20965 # * The TextStyle on a named style
20966 # inherits from the normal text named style.
20967 # * The TextStyle of the normal text named style inherits
20968 # from the default text style in the Docs editor.
20969 # * The TextStyle on a Paragraph element
20970 … # that is contained in a table may inherit its text style from the table
20973 … # If the text style does not inherit from a parent, unsetting fields will
20974 … # revert the style to a value matching the defaults in the Docs editor.
20975 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
20976 # or transparent, depending on the `color` field.
20979 "rgbColor": { # An RGB color. # The RGB color value.
20980 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
20981 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
20982 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
20986 "italic": True or False, # Whether or not the text is italicized.
20987 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
20990 … # rendered in a smaller font size, computed based on the `font_size` field.
20991 # The `font_size` itself is not affected by changes in this field.
20992 … "strikethrough": True or False, # Whether or not the text is struck through.
20993 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
20996 # `bold`, the `weighted_font_family` is applied first, then `bold`.
21003 "fontFamily": "A String", # The font family of the text.
21005 … # The font family can be any font from the Font menu in Docs or from
21006 # [Google Fonts] (https://fonts.google.com/). If the font name is
21007 # unrecognized, the text is rendered in `Arial`.
21008 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
21009 … # `100` between `100` and `900`, inclusive. This range corresponds to the
21010 # numerical values described in the CSS 2.1 Specification,
21014 # The default value is `400` ("normal").
21016 … # The font weight makes up just one component of the rendered font weight.
21017 … # The rendered weight is determined by a combination of the `weight` and the
21020 … # * If the text is bold and the weight is less than `400`, the rendered
21022 … # * If the text is bold and the weight is greater than or equal to `400` but
21023 # is less than `700`, the rendered weight is `700`.
21024 … # * If the weight is greater than or equal to `700`, the rendered weight is
21025 # equal to the weight.
21026 … # * If the text is not bold, the rendered weight is equal to the weight.
21028 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
21029 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
21030 "magnitude": 3.14, # The magnitude.
21031 "unit": "A String", # The units for magnitude.
21033 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
21034 # or transparent, depending on the `color` field.
21037 "rgbColor": { # An RGB color. # The RGB color value.
21038 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
21039 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
21040 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
21044 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
21047 … # Changing the link in an update request causes some other changes to the
21048 # text style of the range:
21050 … # * When setting a link, the text foreground color will be updated to the
21051 … # default link color and the text will be underlined. If these fields are
21052 … # modified in the same request, those values will be used instead of the
21055 # also update the existing link to point to the new URL.
21058 … # will separate the newline character(s) into their own text runs. The
21059 … # link will be applied separately to the runs before and after the newline.
21060 … # * Removing a link will update the text style of the range to match the
21061 … # style of the preceding text (or the default text styles if the preceding
21062 … # text is another link) unless different styles are being set in the same
21064 "headingId": "A String", # The ID of a heading in this document.
21066 "bookmarkId": "A String", # The ID of a bookmark in this document.
21068 "underline": True or False, # Whether or not the text is underlined.
21069 "bold": True or False, # Whether or not the text is rendered as bold.
21071 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
21087 "inlineObjectId": "A String", # The ID of the InlineObject this
21089 …"suggestedInsertionIds": [ # The suggested insertion IDs. An InlineObjectElement may have multiple…
21096 … # footnote reference. A footnote reference is the inline content rendered with
21097 # a number and is used to identify the footnote.
21098 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Foot…
21101 # text style's parent depends on where the text style is defined:
21103 # * The TextStyle of text in a Paragraph
21104 # inherits from the paragraph's corresponding named style type.
21105 # * The TextStyle on a named style
21106 # inherits from the normal text named style.
21107 # * The TextStyle of the normal text named style inherits
21108 # from the default text style in the Docs editor.
21109 # * The TextStyle on a Paragraph element
21110 … # that is contained in a table may inherit its text style from the table
21113 # If the text style does not inherit from a parent, unsetting fields will
21114 # revert the style to a value matching the defaults in the Docs editor.
21115 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
21116 # or transparent, depending on the `color` field.
21119 "rgbColor": { # An RGB color. # The RGB color value.
21120 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
21121 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
21122 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
21126 "italic": True or False, # Whether or not the text is italicized.
21127 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
21130 … # rendered in a smaller font size, computed based on the `font_size` field.
21131 # The `font_size` itself is not affected by changes in this field.
21132 "strikethrough": True or False, # Whether or not the text is struck through.
21133 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
21136 # `bold`, the `weighted_font_family` is applied first, then `bold`.
21143 "fontFamily": "A String", # The font family of the text.
21145 # The font family can be any font from the Font menu in Docs or from
21146 # [Google Fonts] (https://fonts.google.com/). If the font name is
21147 # unrecognized, the text is rendered in `Arial`.
21148 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
21149 … # `100` between `100` and `900`, inclusive. This range corresponds to the
21150 # numerical values described in the CSS 2.1 Specification,
21154 # The default value is `400` ("normal").
21156 … # The font weight makes up just one component of the rendered font weight.
21157 … # The rendered weight is determined by a combination of the `weight` and the
21160 … # * If the text is bold and the weight is less than `400`, the rendered
21162 … # * If the text is bold and the weight is greater than or equal to `400` but
21163 # is less than `700`, the rendered weight is `700`.
21164 … # * If the weight is greater than or equal to `700`, the rendered weight is
21165 # equal to the weight.
21166 … # * If the text is not bold, the rendered weight is equal to the weight.
21168 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
21169 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
21170 "magnitude": 3.14, # The magnitude.
21171 "unit": "A String", # The units for magnitude.
21173 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
21174 # or transparent, depending on the `color` field.
21177 "rgbColor": { # An RGB color. # The RGB color value.
21178 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
21179 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
21180 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
21184 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
21187 … # Changing the link in an update request causes some other changes to the
21188 # text style of the range:
21190 … # * When setting a link, the text foreground color will be updated to the
21191 … # default link color and the text will be underlined. If these fields are
21192 … # modified in the same request, those values will be used instead of the
21195 # also update the existing link to point to the new URL.
21198 # will separate the newline character(s) into their own text runs. The
21199 … # link will be applied separately to the runs before and after the newline.
21200 # * Removing a link will update the text style of the range to match the
21201 … # style of the preceding text (or the default text styles if the preceding
21202 … # text is another link) unless different styles are being set in the same
21204 "headingId": "A String", # The ID of a heading in this document.
21206 "bookmarkId": "A String", # The ID of a bookmark in this document.
21208 "underline": True or False, # Whether or not the text is underlined.
21209 "bold": True or False, # Whether or not the text is rendered as bold.
21211 "footnoteNumber": "A String", # The rendered number of this footnote.
21212 …"suggestedInsertionIds": [ # The suggested insertion IDs. A FootnoteReference may have multiple in…
21217 "footnoteId": "A String", # The ID of the footnote that
21218 # contains the content of this footnote reference.
21219 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
21223 …"suggestedTextStyleChanges": { # The suggested text style changes to this FootnoteReference, keyed…
21226 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
21227 # the changes made in this suggestion. This can be used along with the
21232 # text style's parent depends on where the text style is defined:
21234 # * The TextStyle of text in a Paragraph
21235 # inherits from the paragraph's corresponding named style type.
21236 # * The TextStyle on a named style
21237 # inherits from the normal text named style.
21238 # * The TextStyle of the normal text named style inherits
21239 # from the default text style in the Docs editor.
21240 # * The TextStyle on a Paragraph element
21241 … # that is contained in a table may inherit its text style from the table
21244 … # If the text style does not inherit from a parent, unsetting fields will
21245 … # revert the style to a value matching the defaults in the Docs editor.
21246 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
21247 # or transparent, depending on the `color` field.
21250 "rgbColor": { # An RGB color. # The RGB color value.
21251 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
21252 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
21253 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
21257 "italic": True or False, # Whether or not the text is italicized.
21258 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
21261 … # rendered in a smaller font size, computed based on the `font_size` field.
21262 # The `font_size` itself is not affected by changes in this field.
21263 … "strikethrough": True or False, # Whether or not the text is struck through.
21264 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
21267 # `bold`, the `weighted_font_family` is applied first, then `bold`.
21274 "fontFamily": "A String", # The font family of the text.
21276 … # The font family can be any font from the Font menu in Docs or from
21277 # [Google Fonts] (https://fonts.google.com/). If the font name is
21278 # unrecognized, the text is rendered in `Arial`.
21279 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
21280 … # `100` between `100` and `900`, inclusive. This range corresponds to the
21281 # numerical values described in the CSS 2.1 Specification,
21285 # The default value is `400` ("normal").
21287 … # The font weight makes up just one component of the rendered font weight.
21288 … # The rendered weight is determined by a combination of the `weight` and the
21291 … # * If the text is bold and the weight is less than `400`, the rendered
21293 … # * If the text is bold and the weight is greater than or equal to `400` but
21294 # is less than `700`, the rendered weight is `700`.
21295 … # * If the weight is greater than or equal to `700`, the rendered weight is
21296 # equal to the weight.
21297 … # * If the text is not bold, the rendered weight is equal to the weight.
21299 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
21300 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
21301 "magnitude": 3.14, # The magnitude.
21302 "unit": "A String", # The units for magnitude.
21304 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
21305 # or transparent, depending on the `color` field.
21308 "rgbColor": { # An RGB color. # The RGB color value.
21309 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
21310 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
21311 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
21315 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
21318 … # Changing the link in an update request causes some other changes to the
21319 # text style of the range:
21321 … # * When setting a link, the text foreground color will be updated to the
21322 … # default link color and the text will be underlined. If these fields are
21323 … # modified in the same request, those values will be used instead of the
21326 # also update the existing link to point to the new URL.
21329 … # will separate the newline character(s) into their own text runs. The
21330 … # link will be applied separately to the runs before and after the newline.
21331 … # * Removing a link will update the text style of the range to match the
21332 … # style of the preceding text (or the default text styles if the preceding
21333 … # text is another link) unless different styles are being set in the same
21335 "headingId": "A String", # The ID of a heading in this document.
21337 "bookmarkId": "A String", # The ID of a bookmark in this document.
21339 "underline": True or False, # Whether or not the text is underlined.
21340 "bold": True or False, # Whether or not the text is rendered as bold.
21342 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
21361 …"suggestedPositionedObjectIds": { # The IDs of the positioned objects that are suggested to be att…
21364 "objectIds": [ # The object IDs.
21369 …"bullet": { # Describes the bullet of a paragraph. # The bullet for this paragraph. If not present…
21371 "nestingLevel": 42, # The nesting level of this paragraph in the list.
21372 "listId": "A String", # The ID of the list this paragraph belongs to.
21373 …"textStyle": { # Represents the styling that can be applied to text. # The paragraph specific text…
21376 # text style's parent depends on where the text style is defined:
21378 # * The TextStyle of text in a Paragraph
21379 # inherits from the paragraph's corresponding named style type.
21380 # * The TextStyle on a named style
21381 # inherits from the normal text named style.
21382 # * The TextStyle of the normal text named style inherits
21383 # from the default text style in the Docs editor.
21384 # * The TextStyle on a Paragraph element
21385 # that is contained in a table may inherit its text style from the table
21388 # If the text style does not inherit from a parent, unsetting fields will
21389 # revert the style to a value matching the defaults in the Docs editor.
21390 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
21391 # or transparent, depending on the `color` field.
21394 "rgbColor": { # An RGB color. # The RGB color value.
21395 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
21396 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
21397 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
21401 "italic": True or False, # Whether or not the text is italicized.
21402 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
21405 # rendered in a smaller font size, computed based on the `font_size` field.
21406 # The `font_size` itself is not affected by changes in this field.
21407 "strikethrough": True or False, # Whether or not the text is struck through.
21408 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
21411 # `bold`, the `weighted_font_family` is applied first, then `bold`.
21418 "fontFamily": "A String", # The font family of the text.
21420 # The font family can be any font from the Font menu in Docs or from
21421 # [Google Fonts] (https://fonts.google.com/). If the font name is
21422 # unrecognized, the text is rendered in `Arial`.
21423 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
21424 # `100` between `100` and `900`, inclusive. This range corresponds to the
21425 # numerical values described in the CSS 2.1 Specification,
21429 # The default value is `400` ("normal").
21431 # The font weight makes up just one component of the rendered font weight.
21432 … # The rendered weight is determined by a combination of the `weight` and the
21435 # * If the text is bold and the weight is less than `400`, the rendered
21437 … # * If the text is bold and the weight is greater than or equal to `400` but
21438 # is less than `700`, the rendered weight is `700`.
21439 … # * If the weight is greater than or equal to `700`, the rendered weight is
21440 # equal to the weight.
21441 # * If the text is not bold, the rendered weight is equal to the weight.
21443 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
21444 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
21445 "magnitude": 3.14, # The magnitude.
21446 "unit": "A String", # The units for magnitude.
21448 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
21449 # or transparent, depending on the `color` field.
21452 "rgbColor": { # An RGB color. # The RGB color value.
21453 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
21454 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
21455 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
21459 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
21462 # Changing the link in an update request causes some other changes to the
21463 # text style of the range:
21465 # * When setting a link, the text foreground color will be updated to the
21466 # default link color and the text will be underlined. If these fields are
21467 # modified in the same request, those values will be used instead of the
21470 # also update the existing link to point to the new URL.
21473 # will separate the newline character(s) into their own text runs. The
21474 … # link will be applied separately to the runs before and after the newline.
21475 # * Removing a link will update the text style of the range to match the
21476 # style of the preceding text (or the default text styles if the preceding
21477 # text is another link) unless different styles are being set in the same
21479 "headingId": "A String", # The ID of a heading in this document.
21481 "bookmarkId": "A String", # The ID of a bookmark in this document.
21483 "underline": True or False, # Whether or not the text is underlined.
21484 "bold": True or False, # Whether or not the text is rendered as bold.
21487 "suggestedBulletChanges": { # The suggested changes to this paragraph's bullet.
21489 … "bullet": { # Describes the bullet of a paragraph. # A Bullet that only includes the changes made
21490 # in this suggestion. This can be used along with the
21493 "nestingLevel": 42, # The nesting level of this paragraph in the list.
21494 "listId": "A String", # The ID of the list this paragraph belongs to.
21495 …"textStyle": { # Represents the styling that can be applied to text. # The paragraph specific text…
21498 # text style's parent depends on where the text style is defined:
21500 # * The TextStyle of text in a Paragraph
21501 # inherits from the paragraph's corresponding named style type.
21502 # * The TextStyle on a named style
21503 # inherits from the normal text named style.
21504 # * The TextStyle of the normal text named style inherits
21505 # from the default text style in the Docs editor.
21506 # * The TextStyle on a Paragraph element
21507 … # that is contained in a table may inherit its text style from the table
21510 # If the text style does not inherit from a parent, unsetting fields will
21511 # revert the style to a value matching the defaults in the Docs editor.
21512 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
21513 # or transparent, depending on the `color` field.
21516 "rgbColor": { # An RGB color. # The RGB color value.
21517 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
21518 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
21519 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
21523 "italic": True or False, # Whether or not the text is italicized.
21524 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
21527 … # rendered in a smaller font size, computed based on the `font_size` field.
21528 # The `font_size` itself is not affected by changes in this field.
21529 "strikethrough": True or False, # Whether or not the text is struck through.
21530 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
21533 # `bold`, the `weighted_font_family` is applied first, then `bold`.
21540 "fontFamily": "A String", # The font family of the text.
21542 # The font family can be any font from the Font menu in Docs or from
21543 # [Google Fonts] (https://fonts.google.com/). If the font name is
21544 # unrecognized, the text is rendered in `Arial`.
21545 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
21546 … # `100` between `100` and `900`, inclusive. This range corresponds to the
21547 # numerical values described in the CSS 2.1 Specification,
21551 # The default value is `400` ("normal").
21553 … # The font weight makes up just one component of the rendered font weight.
21554 … # The rendered weight is determined by a combination of the `weight` and the
21557 … # * If the text is bold and the weight is less than `400`, the rendered
21559 … # * If the text is bold and the weight is greater than or equal to `400` but
21560 # is less than `700`, the rendered weight is `700`.
21561 … # * If the weight is greater than or equal to `700`, the rendered weight is
21562 # equal to the weight.
21563 … # * If the text is not bold, the rendered weight is equal to the weight.
21565 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
21566 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
21567 "magnitude": 3.14, # The magnitude.
21568 "unit": "A String", # The units for magnitude.
21570 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
21571 # or transparent, depending on the `color` field.
21574 "rgbColor": { # An RGB color. # The RGB color value.
21575 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
21576 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
21577 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
21581 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
21584 … # Changing the link in an update request causes some other changes to the
21585 # text style of the range:
21587 … # * When setting a link, the text foreground color will be updated to the
21588 … # default link color and the text will be underlined. If these fields are
21589 … # modified in the same request, those values will be used instead of the
21592 # also update the existing link to point to the new URL.
21595 # will separate the newline character(s) into their own text runs. The
21596 … # link will be applied separately to the runs before and after the newline.
21597 # * Removing a link will update the text style of the range to match the
21598 … # style of the preceding text (or the default text styles if the preceding
21599 … # text is another link) unless different styles are being set in the same
21601 "headingId": "A String", # The ID of a heading in this document.
21603 "bookmarkId": "A String", # The ID of a bookmark in this document.
21605 "underline": True or False, # Whether or not the text is underlined.
21606 "bold": True or False, # Whether or not the text is rendered as bold.
21609 …te": { # A mask that indicates which of the fields on the base # A mask that indicates which of th…
21613 … "nestingLevelSuggested": True or False, # Indicates if there was a suggested change to the
21615 …hat indicates which of the fields on the base TextStyle have been changed in this suggestion. # A …
21630 … "listIdSuggested": True or False, # Indicates if there was a suggested change to the
21635 … "positionedObjectIds": [ # The IDs of the positioned objects tethered to this paragraph.
21638 …"suggestedParagraphStyleChanges": { # The suggested paragraph style changes to this paragraph, key…
21642 …tes which of the fields on the base ParagraphStyle have been changed in this suggestion. # A mask …
21663 … mask that indicates which of the fields on the base Shading have been changed in this # A mask th…
21666 …ckgroundColorSuggested": True or False, # Indicates if there was a suggested change to the Shading.
21670 # the changes made in this suggestion. This can be used along with the
21675 … # A paragraph style's parent depends on where the paragraph style is defined:
21677 # * The ParagraphStyle on a Paragraph
21678 # inherits from the paragraph's corresponding named style type.
21679 # * The ParagraphStyle on a named style
21680 # inherits from the normal text named style.
21681 # * The ParagraphStyle of the normal text named style inherits
21682 # from the default paragraph style in the Docs editor.
21683 # * The ParagraphStyle on a Paragraph
21685 # the table style.
21687 … # If the paragraph style does not inherit from a parent, unsetting fields will
21688 # revert the style to a value matching the defaults in the Docs editor.
21689 "spacingMode": "A String", # The spacing mode for the paragraph.
21690 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
21693 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
21694 # inherited from the parent.
21695 "magnitude": 3.14, # The magnitude.
21696 "unit": "A String", # The units for magnitude.
21698 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
21699 # page or column as the next paragraph if possible. If unset, the value is
21700 # inherited from the parent.
21701 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
21702 … # is represented as 100.0. If unset, the value is inherited from the parent.
21703 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
21704 # is inherited from the parent.
21705 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
21706 # inherited from the parent.
21708 … # The bottom border is rendered when the paragraph below has different border
21712 # changes to a paragraph border the new border must be specified in
21714 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
21717 "rgbColor": { # An RGB color. # The RGB color value.
21718 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
21719 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
21720 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
21724 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
21725 "magnitude": 3.14, # The magnitude.
21726 "unit": "A String", # The units for magnitude.
21728 "dashStyle": "A String", # The dash style of the border.
21729 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
21730 "magnitude": 3.14, # The magnitude.
21731 "unit": "A String", # The units for magnitude.
21734 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
21735 … # the start of the text, based on the current paragraph direction. If unset,
21736 # the value is inherited from the parent.
21737 "magnitude": 3.14, # The magnitude.
21738 "unit": "A String", # The units for magnitude.
21740 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
21741 # If unset, the value is inherited from the parent.
21743 # The between border is rendered when the adjacent paragraph has the same
21747 # changes to a paragraph border the new border must be specified in
21749 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
21752 "rgbColor": { # An RGB color. # The RGB color value.
21753 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
21754 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
21755 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
21759 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
21760 "magnitude": 3.14, # The magnitude.
21761 "unit": "A String", # The units for magnitude.
21763 "dashStyle": "A String", # The dash style of the border.
21764 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
21765 "magnitude": 3.14, # The magnitude.
21766 "unit": "A String", # The units for magnitude.
21769 "namedStyleType": "A String", # The named style type of the paragraph.
21771 # Since updating the named style type affects other properties within
21772 … # ParagraphStyle, the named style type is applied before the other properties
21774 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
21775 # from the parent.
21778 # changes to a paragraph border the new border must be specified in
21780 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
21783 "rgbColor": { # An RGB color. # The RGB color value.
21784 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
21785 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
21786 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
21790 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
21791 "magnitude": 3.14, # The magnitude.
21792 "unit": "A String", # The units for magnitude.
21794 "dashStyle": "A String", # The dash style of the border.
21795 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
21796 "magnitude": 3.14, # The magnitude.
21797 "unit": "A String", # The units for magnitude.
21800 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
21801 # the end of the text, based on the current paragraph direction. If unset,
21802 # the value is inherited from the parent.
21803 "magnitude": 3.14, # The magnitude.
21804 "unit": "A String", # The units for magnitude.
21806 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
21807 # from the parent.
21810 # changes to a paragraph border the new border must be specified in
21812 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
21815 "rgbColor": { # An RGB color. # The RGB color value.
21816 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
21817 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
21818 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
21822 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
21823 "magnitude": 3.14, # The magnitude.
21824 "unit": "A String", # The units for magnitude.
21826 "dashStyle": "A String", # The dash style of the border.
21827 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
21828 "magnitude": 3.14, # The magnitude.
21829 "unit": "A String", # The units for magnitude.
21832 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
21833 # inherited from the parent.
21834 "magnitude": 3.14, # The magnitude.
21835 "unit": "A String", # The units for magnitude.
21837 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
21839 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
21841 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
21844 "rgbColor": { # An RGB color. # The RGB color value.
21845 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
21846 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
21847 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
21852 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
21853 # from the parent.
21855 # The top border is rendered when the paragraph above has different border
21859 # changes to a paragraph border the new border must be specified in
21861 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
21864 "rgbColor": { # An RGB color. # The RGB color value.
21865 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
21866 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
21867 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
21871 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
21872 "magnitude": 3.14, # The magnitude.
21873 "unit": "A String", # The units for magnitude.
21875 "dashStyle": "A String", # The dash style of the border.
21876 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
21877 "magnitude": 3.14, # The magnitude.
21878 "unit": "A String", # The units for magnitude.
21881 … "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
21884 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
21885 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
21886 "magnitude": 3.14, # The magnitude.
21887 "unit": "A String", # The units for magnitude.
21891 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
21892 # the value is inherited from the parent.
21893 "magnitude": 3.14, # The magnitude.
21894 "unit": "A String", # The units for magnitude.
21896 "alignment": "A String", # The text alignment for this paragraph.
21897 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
21898 # column if possible. If unset, the value is inherited from the parent.
21902 … "paragraphStyle": { # Styles that apply to a whole paragraph. # The style of this paragraph.
21905 # A paragraph style's parent depends on where the paragraph style is defined:
21907 # * The ParagraphStyle on a Paragraph
21908 # inherits from the paragraph's corresponding named style type.
21909 # * The ParagraphStyle on a named style
21910 # inherits from the normal text named style.
21911 # * The ParagraphStyle of the normal text named style inherits
21912 # from the default paragraph style in the Docs editor.
21913 # * The ParagraphStyle on a Paragraph
21915 # the table style.
21917 # If the paragraph style does not inherit from a parent, unsetting fields will
21918 # revert the style to a value matching the defaults in the Docs editor.
21919 "spacingMode": "A String", # The spacing mode for the paragraph.
21920 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
21923 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
21924 # inherited from the parent.
21925 "magnitude": 3.14, # The magnitude.
21926 "unit": "A String", # The units for magnitude.
21928 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
21929 # page or column as the next paragraph if possible. If unset, the value is
21930 # inherited from the parent.
21931 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
21932 # is represented as 100.0. If unset, the value is inherited from the parent.
21933 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
21934 # is inherited from the parent.
21935 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
21936 # inherited from the parent.
21938 # The bottom border is rendered when the paragraph below has different border
21942 # changes to a paragraph border the new border must be specified in
21944 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
21947 "rgbColor": { # An RGB color. # The RGB color value.
21948 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
21949 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
21950 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
21954 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
21955 "magnitude": 3.14, # The magnitude.
21956 "unit": "A String", # The units for magnitude.
21958 "dashStyle": "A String", # The dash style of the border.
21959 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
21960 "magnitude": 3.14, # The magnitude.
21961 "unit": "A String", # The units for magnitude.
21964 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
21965 # the start of the text, based on the current paragraph direction. If unset,
21966 # the value is inherited from the parent.
21967 "magnitude": 3.14, # The magnitude.
21968 "unit": "A String", # The units for magnitude.
21970 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
21971 # If unset, the value is inherited from the parent.
21973 # The between border is rendered when the adjacent paragraph has the same
21977 # changes to a paragraph border the new border must be specified in
21979 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
21982 "rgbColor": { # An RGB color. # The RGB color value.
21983 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
21984 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
21985 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
21989 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
21990 "magnitude": 3.14, # The magnitude.
21991 "unit": "A String", # The units for magnitude.
21993 "dashStyle": "A String", # The dash style of the border.
21994 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
21995 "magnitude": 3.14, # The magnitude.
21996 "unit": "A String", # The units for magnitude.
21999 "namedStyleType": "A String", # The named style type of the paragraph.
22001 # Since updating the named style type affects other properties within
22002 # ParagraphStyle, the named style type is applied before the other properties
22004 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
22005 # from the parent.
22008 # changes to a paragraph border the new border must be specified in
22010 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
22013 "rgbColor": { # An RGB color. # The RGB color value.
22014 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
22015 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
22016 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
22020 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
22021 "magnitude": 3.14, # The magnitude.
22022 "unit": "A String", # The units for magnitude.
22024 "dashStyle": "A String", # The dash style of the border.
22025 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
22026 "magnitude": 3.14, # The magnitude.
22027 "unit": "A String", # The units for magnitude.
22030 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
22031 # the end of the text, based on the current paragraph direction. If unset,
22032 # the value is inherited from the parent.
22033 "magnitude": 3.14, # The magnitude.
22034 "unit": "A String", # The units for magnitude.
22036 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
22037 # from the parent.
22040 # changes to a paragraph border the new border must be specified in
22042 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
22045 "rgbColor": { # An RGB color. # The RGB color value.
22046 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
22047 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
22048 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
22052 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
22053 "magnitude": 3.14, # The magnitude.
22054 "unit": "A String", # The units for magnitude.
22056 "dashStyle": "A String", # The dash style of the border.
22057 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
22058 "magnitude": 3.14, # The magnitude.
22059 "unit": "A String", # The units for magnitude.
22062 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
22063 # inherited from the parent.
22064 "magnitude": 3.14, # The magnitude.
22065 "unit": "A String", # The units for magnitude.
22067 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
22069 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
22071 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
22074 "rgbColor": { # An RGB color. # The RGB color value.
22075 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
22076 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
22077 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
22082 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
22083 # from the parent.
22085 # The top border is rendered when the paragraph above has different border
22089 # changes to a paragraph border the new border must be specified in
22091 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
22094 "rgbColor": { # An RGB color. # The RGB color value.
22095 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
22096 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
22097 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
22101 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
22102 "magnitude": 3.14, # The magnitude.
22103 "unit": "A String", # The units for magnitude.
22105 "dashStyle": "A String", # The dash style of the border.
22106 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
22107 "magnitude": 3.14, # The magnitude.
22108 "unit": "A String", # The units for magnitude.
22111 … "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
22114 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
22115 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
22116 "magnitude": 3.14, # The magnitude.
22117 "unit": "A String", # The units for magnitude.
22121 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
22122 # the value is inherited from the parent.
22123 "magnitude": 3.14, # The magnitude.
22124 "unit": "A String", # The units for magnitude.
22126 "alignment": "A String", # The text alignment for this paragraph.
22127 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
22128 # column if possible. If unset, the value is inherited from the parent.
22133 "rows": 42, # Number of rows in the table.
22134 "tableStyle": { # Styles that apply to a table. # The style of the table.
22135 "tableColumnProperties": [ # The properties of each column.
22138 # HTML. So the properties for a row can be found on the row's
22140 { # The properties of a column in a table.
22141 …th": { # A magnitude in a single direction in the specified units. # The width of the column. Set …
22143 "magnitude": 3.14, # The magnitude.
22144 "unit": "A String", # The units for magnitude.
22146 "widthType": "A String", # The width type of the column.
22150 "suggestedInsertionIds": [ # The suggested insertion IDs. A Table may have
22155 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
22159 "tableRows": [ # The contents and style of each row.
22160 { # The contents and style of a row in a Table.
22161 … "endIndex": 42, # The zero-based end index of this row, exclusive, in UTF-16 code units.
22162 "tableCells": [ # The contents and style of each cell in this row.
22165 # different number of cells than other rows in the same table.
22166 { # The contents and style of a cell in a Table.
22167 … "endIndex": 42, # The zero-based end index of this cell, exclusive, in UTF-16 code units.
22168 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
22172 "suggestedInsertionIds": [ # The suggested insertion IDs. A TableCell
22177 "content": [ # The content of the cell.
22180 "tableCellStyle": { # The style of a TableCell. # The style of the cell.
22183 # A table cell style can inherit from the table's style.
22184 …ngBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of t…
22185 "magnitude": 3.14, # The magnitude.
22186 "unit": "A String", # The units for magnitude.
22188 … "borderBottom": { # A border around a table cell. # The bottom border of the cell.
22189 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
22192 "rgbColor": { # An RGB color. # The RGB color value.
22193 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
22194 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
22195 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
22199 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
22200 "magnitude": 3.14, # The magnitude.
22201 "unit": "A String", # The units for magnitude.
22203 "dashStyle": "A String", # The dash style of the border.
22205 …ddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of th…
22206 "magnitude": 3.14, # The magnitude.
22207 "unit": "A String", # The units for magnitude.
22209 …paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of th…
22210 "magnitude": 3.14, # The magnitude.
22211 "unit": "A String", # The units for magnitude.
22213 … "borderLeft": { # A border around a table cell. # The left border of the cell.
22214 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
22217 "rgbColor": { # An RGB color. # The RGB color value.
22218 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
22219 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
22220 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
22224 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
22225 "magnitude": 3.14, # The magnitude.
22226 "unit": "A String", # The units for magnitude.
22228 "dashStyle": "A String", # The dash style of the border.
22230 … "columnSpan": 42, # The column span of the cell. This property is read-only.
22231 …# A color that can either be fully opaque or fully transparent. # The background color of the cell.
22234 "rgbColor": { # An RGB color. # The RGB color value.
22235 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
22236 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
22237 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
22241 … "borderRight": { # A border around a table cell. # The right border of the cell.
22242 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
22245 "rgbColor": { # An RGB color. # The RGB color value.
22246 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
22247 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
22248 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
22252 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
22253 "magnitude": 3.14, # The magnitude.
22254 "unit": "A String", # The units for magnitude.
22256 "dashStyle": "A String", # The dash style of the border.
22258 "rowSpan": 42, # The row span of the cell. This property is read-only.
22259 …"contentAlignment": "A String", # The alignment of the content in the table cell. The default alig…
22260 … # matches the alignment for newly created table cells in the Docs editor.
22261 …dingRight": { # A magnitude in a single direction in the specified units. # The right padding of t…
22262 "magnitude": 3.14, # The magnitude.
22263 "unit": "A String", # The units for magnitude.
22265 … "borderTop": { # A border around a table cell. # The top border of the cell.
22266 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
22269 "rgbColor": { # An RGB color. # The RGB color value.
22270 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
22271 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
22272 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
22276 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
22277 "magnitude": 3.14, # The magnitude.
22278 "unit": "A String", # The units for magnitude.
22280 "dashStyle": "A String", # The dash style of the border.
22283 … "startIndex": 42, # The zero-based start index of this cell, in UTF-16 code units.
22284 …"suggestedTableCellStyleChanges": { # The suggested changes to the table cell style, keyed by sugg…
22286 … "tableCellStyle": { # The style of a TableCell. # A TableCellStyle that only includes
22287 … # the changes made in this suggestion. This can be used along with the
22292 # A table cell style can inherit from the table's style.
22293 …ngBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of t…
22294 "magnitude": 3.14, # The magnitude.
22295 "unit": "A String", # The units for magnitude.
22297 … "borderBottom": { # A border around a table cell. # The bottom border of the cell.
22298 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
22301 "rgbColor": { # An RGB color. # The RGB color value.
22302 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
22303 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
22304 … "red": 3.14, # The red component of the color, from 0.0 to 1.0.
22308 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
22309 "magnitude": 3.14, # The magnitude.
22310 "unit": "A String", # The units for magnitude.
22312 "dashStyle": "A String", # The dash style of the border.
22314 …ddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of th…
22315 "magnitude": 3.14, # The magnitude.
22316 "unit": "A String", # The units for magnitude.
22318 …paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of th…
22319 "magnitude": 3.14, # The magnitude.
22320 "unit": "A String", # The units for magnitude.
22322 … "borderLeft": { # A border around a table cell. # The left border of the cell.
22323 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
22326 "rgbColor": { # An RGB color. # The RGB color value.
22327 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
22328 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
22329 … "red": 3.14, # The red component of the color, from 0.0 to 1.0.
22333 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
22334 "magnitude": 3.14, # The magnitude.
22335 "unit": "A String", # The units for magnitude.
22337 "dashStyle": "A String", # The dash style of the border.
22339 … "columnSpan": 42, # The column span of the cell. This property is read-only.
22340 …# A color that can either be fully opaque or fully transparent. # The background color of the cell.
22343 "rgbColor": { # An RGB color. # The RGB color value.
22344 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
22345 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
22346 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
22350 … "borderRight": { # A border around a table cell. # The right border of the cell.
22351 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
22354 "rgbColor": { # An RGB color. # The RGB color value.
22355 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
22356 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
22357 … "red": 3.14, # The red component of the color, from 0.0 to 1.0.
22361 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
22362 "magnitude": 3.14, # The magnitude.
22363 "unit": "A String", # The units for magnitude.
22365 "dashStyle": "A String", # The dash style of the border.
22367 "rowSpan": 42, # The row span of the cell. This property is read-only.
22368 …"contentAlignment": "A String", # The alignment of the content in the table cell. The default alig…
22369 … # matches the alignment for newly created table cells in the Docs editor.
22370 …dingRight": { # A magnitude in a single direction in the specified units. # The right padding of t…
22371 "magnitude": 3.14, # The magnitude.
22372 "unit": "A String", # The units for magnitude.
22374 … "borderTop": { # A border around a table cell. # The top border of the cell.
22375 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
22378 "rgbColor": { # An RGB color. # The RGB color value.
22379 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
22380 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
22381 … "red": 3.14, # The red component of the color, from 0.0 to 1.0.
22385 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
22386 "magnitude": 3.14, # The magnitude.
22387 "unit": "A String", # The units for magnitude.
22389 "dashStyle": "A String", # The dash style of the border.
22392 …tes which of the fields on the base TableCellStyle have been changed in this suggestion. # A mask …
22411 … "tableRowStyle": { # Styles that apply to a table row. # The style of the table row.
22412 …agnitude in a single direction in the specified units. # The minimum height of the row. The row wi…
22413 # at a height equal to or greater than this value in order to show all the
22414 # content in the row's cells.
22415 "magnitude": 3.14, # The magnitude.
22416 "unit": "A String", # The units for magnitude.
22419 "suggestedInsertionIds": [ # The suggested insertion IDs. A TableRow
22424 … "startIndex": 42, # The zero-based start index of this row, in UTF-16 code units.
22425 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
22429 …"suggestedTableRowStyleChanges": { # The suggested style changes to this row, keyed by suggestion …
22433 # the changes made in this suggestion. This can be used along with the
22436 …agnitude in a single direction in the specified units. # The minimum height of the row. The row wi…
22437 … # at a height equal to or greater than this value in order to show all the
22438 # content in the row's cells.
22439 "magnitude": 3.14, # The magnitude.
22440 "unit": "A String", # The units for magnitude.
22443 …ates which of the fields on the base TableRowStyle have been changed in this suggestion. # A mask …
22451 "columns": 42, # Number of columns in the table.
22460 …"namedStyles": { # The named styles. Paragraphs in the document can inherit their # The named styl…
22463 "styles": [ # The named styles.
22465 # There is an entry for each of the possible named style types.
22466 { # A named style. Paragraphs in the document can inherit their
22469 # when they have the same named style type.
22470 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this name…
22473 # text style's parent depends on where the text style is defined:
22475 # * The TextStyle of text in a Paragraph
22476 # inherits from the paragraph's corresponding named style type.
22477 # * The TextStyle on a named style
22478 # inherits from the normal text named style.
22479 # * The TextStyle of the normal text named style inherits
22480 # from the default text style in the Docs editor.
22481 # * The TextStyle on a Paragraph element
22482 # that is contained in a table may inherit its text style from the table
22485 # If the text style does not inherit from a parent, unsetting fields will
22486 # revert the style to a value matching the defaults in the Docs editor.
22487 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
22488 # or transparent, depending on the `color` field.
22491 "rgbColor": { # An RGB color. # The RGB color value.
22492 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
22493 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
22494 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
22498 "italic": True or False, # Whether or not the text is italicized.
22499 "baselineOffset": "A String", # The text's vertical offset from its normal position.
22502 # rendered in a smaller font size, computed based on the `font_size` field.
22503 # The `font_size` itself is not affected by changes in this field.
22504 "strikethrough": True or False, # Whether or not the text is struck through.
22505 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
22508 # `bold`, the `weighted_font_family` is applied first, then `bold`.
22515 "fontFamily": "A String", # The font family of the text.
22517 # The font family can be any font from the Font menu in Docs or from
22518 # [Google Fonts] (https://fonts.google.com/). If the font name is
22519 # unrecognized, the text is rendered in `Arial`.
22520 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
22521 # `100` between `100` and `900`, inclusive. This range corresponds to the
22522 # numerical values described in the CSS 2.1 Specification,
22526 # The default value is `400` ("normal").
22528 # The font weight makes up just one component of the rendered font weight.
22529 # The rendered weight is determined by a combination of the `weight` and the
22532 # * If the text is bold and the weight is less than `400`, the rendered
22534 # * If the text is bold and the weight is greater than or equal to `400` but
22535 # is less than `700`, the rendered weight is `700`.
22536 # * If the weight is greater than or equal to `700`, the rendered weight is
22537 # equal to the weight.
22538 # * If the text is not bold, the rendered weight is equal to the weight.
22540 "smallCaps": True or False, # Whether or not the text is in small capital letters.
22541 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
22542 "magnitude": 3.14, # The magnitude.
22543 "unit": "A String", # The units for magnitude.
22545 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
22546 # or transparent, depending on the `color` field.
22549 "rgbColor": { # An RGB color. # The RGB color value.
22550 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
22551 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
22552 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
22556 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
22559 # Changing the link in an update request causes some other changes to the
22560 # text style of the range:
22562 # * When setting a link, the text foreground color will be updated to the
22563 # default link color and the text will be underlined. If these fields are
22564 # modified in the same request, those values will be used instead of the
22567 # also update the existing link to point to the new URL.
22570 # will separate the newline character(s) into their own text runs. The
22571 # link will be applied separately to the runs before and after the newline.
22572 # * Removing a link will update the text style of the range to match the
22573 # style of the preceding text (or the default text styles if the preceding
22574 # text is another link) unless different styles are being set in the same
22576 "headingId": "A String", # The ID of a heading in this document.
22578 "bookmarkId": "A String", # The ID of a bookmark in this document.
22580 "underline": True or False, # Whether or not the text is underlined.
22581 "bold": True or False, # Whether or not the text is rendered as bold.
22583 "namedStyleType": "A String", # The type of this named style.
22584 …"paragraphStyle": { # Styles that apply to a whole paragraph. # The paragraph style of this named …
22587 # A paragraph style's parent depends on where the paragraph style is defined:
22589 # * The ParagraphStyle on a Paragraph
22590 # inherits from the paragraph's corresponding named style type.
22591 # * The ParagraphStyle on a named style
22592 # inherits from the normal text named style.
22593 # * The ParagraphStyle of the normal text named style inherits
22594 # from the default paragraph style in the Docs editor.
22595 # * The ParagraphStyle on a Paragraph
22597 # the table style.
22599 # If the paragraph style does not inherit from a parent, unsetting fields will
22600 # revert the style to a value matching the defaults in the Docs editor.
22601 "spacingMode": "A String", # The spacing mode for the paragraph.
22602 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
22605 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
22606 # inherited from the parent.
22607 "magnitude": 3.14, # The magnitude.
22608 "unit": "A String", # The units for magnitude.
22610 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
22611 # page or column as the next paragraph if possible. If unset, the value is
22612 # inherited from the parent.
22613 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
22614 # is represented as 100.0. If unset, the value is inherited from the parent.
22615 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
22616 # is inherited from the parent.
22617 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
22618 # inherited from the parent.
22620 # The bottom border is rendered when the paragraph below has different border
22624 # changes to a paragraph border the new border must be specified in
22626 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
22629 "rgbColor": { # An RGB color. # The RGB color value.
22630 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
22631 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
22632 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
22636 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
22637 "magnitude": 3.14, # The magnitude.
22638 "unit": "A String", # The units for magnitude.
22640 "dashStyle": "A String", # The dash style of the border.
22641 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
22642 "magnitude": 3.14, # The magnitude.
22643 "unit": "A String", # The units for magnitude.
22646 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
22647 # the start of the text, based on the current paragraph direction. If unset,
22648 # the value is inherited from the parent.
22649 "magnitude": 3.14, # The magnitude.
22650 "unit": "A String", # The units for magnitude.
22652 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
22653 # If unset, the value is inherited from the parent.
22655 # The between border is rendered when the adjacent paragraph has the same
22659 # changes to a paragraph border the new border must be specified in
22661 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
22664 "rgbColor": { # An RGB color. # The RGB color value.
22665 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
22666 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
22667 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
22671 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
22672 "magnitude": 3.14, # The magnitude.
22673 "unit": "A String", # The units for magnitude.
22675 "dashStyle": "A String", # The dash style of the border.
22676 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
22677 "magnitude": 3.14, # The magnitude.
22678 "unit": "A String", # The units for magnitude.
22681 "namedStyleType": "A String", # The named style type of the paragraph.
22683 # Since updating the named style type affects other properties within
22684 # ParagraphStyle, the named style type is applied before the other properties
22686 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
22687 # from the parent.
22690 # changes to a paragraph border the new border must be specified in
22692 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
22695 "rgbColor": { # An RGB color. # The RGB color value.
22696 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
22697 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
22698 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
22702 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
22703 "magnitude": 3.14, # The magnitude.
22704 "unit": "A String", # The units for magnitude.
22706 "dashStyle": "A String", # The dash style of the border.
22707 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
22708 "magnitude": 3.14, # The magnitude.
22709 "unit": "A String", # The units for magnitude.
22712 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
22713 # the end of the text, based on the current paragraph direction. If unset,
22714 # the value is inherited from the parent.
22715 "magnitude": 3.14, # The magnitude.
22716 "unit": "A String", # The units for magnitude.
22718 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
22719 # from the parent.
22722 # changes to a paragraph border the new border must be specified in
22724 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
22727 "rgbColor": { # An RGB color. # The RGB color value.
22728 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
22729 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
22730 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
22734 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
22735 "magnitude": 3.14, # The magnitude.
22736 "unit": "A String", # The units for magnitude.
22738 "dashStyle": "A String", # The dash style of the border.
22739 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
22740 "magnitude": 3.14, # The magnitude.
22741 "unit": "A String", # The units for magnitude.
22744 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
22745 # inherited from the parent.
22746 "magnitude": 3.14, # The magnitude.
22747 "unit": "A String", # The units for magnitude.
22749 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
22751 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
22753 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
22756 "rgbColor": { # An RGB color. # The RGB color value.
22757 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
22758 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
22759 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
22764 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
22765 # from the parent.
22767 # The top border is rendered when the paragraph above has different border
22771 # changes to a paragraph border the new border must be specified in
22773 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
22776 "rgbColor": { # An RGB color. # The RGB color value.
22777 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
22778 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
22779 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
22783 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
22784 "magnitude": 3.14, # The magnitude.
22785 "unit": "A String", # The units for magnitude.
22787 "dashStyle": "A String", # The dash style of the border.
22788 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
22789 "magnitude": 3.14, # The magnitude.
22790 "unit": "A String", # The units for magnitude.
22793 … "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
22796 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
22797 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
22798 "magnitude": 3.14, # The magnitude.
22799 "unit": "A String", # The units for magnitude.
22803 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
22804 # the value is inherited from the parent.
22805 "magnitude": 3.14, # The magnitude.
22806 "unit": "A String", # The units for magnitude.
22808 "alignment": "A String", # The text alignment for this paragraph.
22809 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
22810 # column if possible. If unset, the value is inherited from the parent.
22815 "footers": { # The footers in the document, keyed by footer ID.
22817 "content": [ # The contents of the footer.
22819 # The indexes for a footer's content begin at zero.
22820 { # A StructuralElement describes content that provides structure to the
22822 … "endIndex": 42, # The zero-based end index of this structural element, exclusive, in UTF-16
22825 # section break. A section is a range of content which has the same
22827 # the start of a new section, and the section style applies to the section
22828 # after the section break.
22830 # The document body always begins with a section break.
22831 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
22835 …"sectionStyle": { # The styling that applies to a section. # The style of the section after this s…
22836 …"contentDirection": "A String", # The content direction of this section. If unset, the value defau…
22838 "columnProperties": [ # The section's columns properties.
22840 # If empty, the section contains one column with the default properties in
22841 # the Docs editor.
22843 … "width": { # A magnitude in a single direction in the specified units. # The width of the column.
22844 "magnitude": 3.14, # The magnitude.
22845 "unit": "A String", # The units for magnitude.
22847 …ingEnd": { # A magnitude in a single direction in the specified units. # The padding at the end of…
22848 "magnitude": 3.14, # The magnitude.
22849 "unit": "A String", # The units for magnitude.
22853 "columnSeparatorStyle": "A String", # The style of column separators.
22855 # This style can be set even when there is one column in the section.
22857 …"suggestedInsertionIds": [ # The suggested insertion IDs. A SectionBreak may have multiple inserti…
22865 "content": [ # The content of the table of contents.
22868 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
22872 …"suggestedInsertionIds": [ # The suggested insertion IDs. A TableOfContents may have multiple inse…
22878 … "startIndex": 42, # The zero-based start index of this structural element, in UTF-16 code
22883 "elements": [ # The content of the paragraph broken down into its component parts.
22886 … "endIndex": 42, # The zero-base end index of this paragraph element, exclusive, in UTF-16
22890 "suggestedInsertionIds": [ # The suggested insertion IDs. A Equation
22895 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
22901 # column break. A column break makes the subsequent text start at the top of
22902 # the next column.
22903 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Colu…
22905 … # Similar to text content, like text runs and footnote references, the text
22906 … # style of a column break can affect content layout as well as the styling of
22910 # text style's parent depends on where the text style is defined:
22912 # * The TextStyle of text in a Paragraph
22913 # inherits from the paragraph's corresponding named style type.
22914 # * The TextStyle on a named style
22915 # inherits from the normal text named style.
22916 # * The TextStyle of the normal text named style inherits
22917 # from the default text style in the Docs editor.
22918 # * The TextStyle on a Paragraph element
22919 … # that is contained in a table may inherit its text style from the table
22922 # If the text style does not inherit from a parent, unsetting fields will
22923 # revert the style to a value matching the defaults in the Docs editor.
22924 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
22925 # or transparent, depending on the `color` field.
22928 "rgbColor": { # An RGB color. # The RGB color value.
22929 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
22930 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
22931 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
22935 "italic": True or False, # Whether or not the text is italicized.
22936 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
22939 … # rendered in a smaller font size, computed based on the `font_size` field.
22940 # The `font_size` itself is not affected by changes in this field.
22941 "strikethrough": True or False, # Whether or not the text is struck through.
22942 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
22945 # `bold`, the `weighted_font_family` is applied first, then `bold`.
22952 "fontFamily": "A String", # The font family of the text.
22954 # The font family can be any font from the Font menu in Docs or from
22955 # [Google Fonts] (https://fonts.google.com/). If the font name is
22956 # unrecognized, the text is rendered in `Arial`.
22957 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
22958 … # `100` between `100` and `900`, inclusive. This range corresponds to the
22959 # numerical values described in the CSS 2.1 Specification,
22963 # The default value is `400` ("normal").
22965 … # The font weight makes up just one component of the rendered font weight.
22966 … # The rendered weight is determined by a combination of the `weight` and the
22969 … # * If the text is bold and the weight is less than `400`, the rendered
22971 … # * If the text is bold and the weight is greater than or equal to `400` but
22972 # is less than `700`, the rendered weight is `700`.
22973 … # * If the weight is greater than or equal to `700`, the rendered weight is
22974 # equal to the weight.
22975 … # * If the text is not bold, the rendered weight is equal to the weight.
22977 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
22978 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
22979 "magnitude": 3.14, # The magnitude.
22980 "unit": "A String", # The units for magnitude.
22982 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
22983 # or transparent, depending on the `color` field.
22986 "rgbColor": { # An RGB color. # The RGB color value.
22987 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
22988 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
22989 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
22993 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
22996 … # Changing the link in an update request causes some other changes to the
22997 # text style of the range:
22999 … # * When setting a link, the text foreground color will be updated to the
23000 … # default link color and the text will be underlined. If these fields are
23001 … # modified in the same request, those values will be used instead of the
23004 # also update the existing link to point to the new URL.
23007 # will separate the newline character(s) into their own text runs. The
23008 … # link will be applied separately to the runs before and after the newline.
23009 # * Removing a link will update the text style of the range to match the
23010 … # style of the preceding text (or the default text styles if the preceding
23011 … # text is another link) unless different styles are being set in the same
23013 "headingId": "A String", # The ID of a heading in this document.
23015 "bookmarkId": "A String", # The ID of a bookmark in this document.
23017 "underline": True or False, # Whether or not the text is underlined.
23018 "bold": True or False, # Whether or not the text is rendered as bold.
23020 …"suggestedInsertionIds": [ # The suggested insertion IDs. A ColumnBreak may have multiple insertio…
23025 …"suggestedTextStyleChanges": { # The suggested text style changes to this ColumnBreak, keyed by su…
23028 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
23029 # the changes made in this suggestion. This can be used along with the
23034 # text style's parent depends on where the text style is defined:
23036 # * The TextStyle of text in a Paragraph
23037 # inherits from the paragraph's corresponding named style type.
23038 # * The TextStyle on a named style
23039 # inherits from the normal text named style.
23040 # * The TextStyle of the normal text named style inherits
23041 # from the default text style in the Docs editor.
23042 # * The TextStyle on a Paragraph element
23043 … # that is contained in a table may inherit its text style from the table
23046 … # If the text style does not inherit from a parent, unsetting fields will
23047 … # revert the style to a value matching the defaults in the Docs editor.
23048 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
23049 # or transparent, depending on the `color` field.
23052 "rgbColor": { # An RGB color. # The RGB color value.
23053 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
23054 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
23055 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
23059 "italic": True or False, # Whether or not the text is italicized.
23060 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
23063 … # rendered in a smaller font size, computed based on the `font_size` field.
23064 # The `font_size` itself is not affected by changes in this field.
23065 … "strikethrough": True or False, # Whether or not the text is struck through.
23066 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
23069 # `bold`, the `weighted_font_family` is applied first, then `bold`.
23076 "fontFamily": "A String", # The font family of the text.
23078 … # The font family can be any font from the Font menu in Docs or from
23079 # [Google Fonts] (https://fonts.google.com/). If the font name is
23080 # unrecognized, the text is rendered in `Arial`.
23081 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
23082 … # `100` between `100` and `900`, inclusive. This range corresponds to the
23083 # numerical values described in the CSS 2.1 Specification,
23087 # The default value is `400` ("normal").
23089 … # The font weight makes up just one component of the rendered font weight.
23090 … # The rendered weight is determined by a combination of the `weight` and the
23093 … # * If the text is bold and the weight is less than `400`, the rendered
23095 … # * If the text is bold and the weight is greater than or equal to `400` but
23096 # is less than `700`, the rendered weight is `700`.
23097 … # * If the weight is greater than or equal to `700`, the rendered weight is
23098 # equal to the weight.
23099 … # * If the text is not bold, the rendered weight is equal to the weight.
23101 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
23102 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
23103 "magnitude": 3.14, # The magnitude.
23104 "unit": "A String", # The units for magnitude.
23106 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
23107 # or transparent, depending on the `color` field.
23110 "rgbColor": { # An RGB color. # The RGB color value.
23111 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
23112 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
23113 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
23117 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
23120 … # Changing the link in an update request causes some other changes to the
23121 # text style of the range:
23123 … # * When setting a link, the text foreground color will be updated to the
23124 … # default link color and the text will be underlined. If these fields are
23125 … # modified in the same request, those values will be used instead of the
23128 # also update the existing link to point to the new URL.
23131 … # will separate the newline character(s) into their own text runs. The
23132 … # link will be applied separately to the runs before and after the newline.
23133 … # * Removing a link will update the text style of the range to match the
23134 … # style of the preceding text (or the default text styles if the preceding
23135 … # text is another link) unless different styles are being set in the same
23137 "headingId": "A String", # The ID of a heading in this document.
23139 "bookmarkId": "A String", # The ID of a bookmark in this document.
23141 "underline": True or False, # Whether or not the text is underlined.
23142 "bold": True or False, # Whether or not the text is rendered as bold.
23144 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
23160 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
23165 … "startIndex": 42, # The zero-based start index of this paragraph element, in UTF-16 code units.
23167 # page break. A page break makes the subsequent text start at the top of the
23169 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Page…
23171 … # Similar to text content, like text runs and footnote references, the text
23172 … # style of a page break can affect content layout as well as the styling of
23176 # text style's parent depends on where the text style is defined:
23178 # * The TextStyle of text in a Paragraph
23179 # inherits from the paragraph's corresponding named style type.
23180 # * The TextStyle on a named style
23181 # inherits from the normal text named style.
23182 # * The TextStyle of the normal text named style inherits
23183 # from the default text style in the Docs editor.
23184 # * The TextStyle on a Paragraph element
23185 … # that is contained in a table may inherit its text style from the table
23188 # If the text style does not inherit from a parent, unsetting fields will
23189 # revert the style to a value matching the defaults in the Docs editor.
23190 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
23191 # or transparent, depending on the `color` field.
23194 "rgbColor": { # An RGB color. # The RGB color value.
23195 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
23196 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
23197 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
23201 "italic": True or False, # Whether or not the text is italicized.
23202 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
23205 … # rendered in a smaller font size, computed based on the `font_size` field.
23206 # The `font_size` itself is not affected by changes in this field.
23207 "strikethrough": True or False, # Whether or not the text is struck through.
23208 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
23211 # `bold`, the `weighted_font_family` is applied first, then `bold`.
23218 "fontFamily": "A String", # The font family of the text.
23220 # The font family can be any font from the Font menu in Docs or from
23221 # [Google Fonts] (https://fonts.google.com/). If the font name is
23222 # unrecognized, the text is rendered in `Arial`.
23223 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
23224 … # `100` between `100` and `900`, inclusive. This range corresponds to the
23225 # numerical values described in the CSS 2.1 Specification,
23229 # The default value is `400` ("normal").
23231 … # The font weight makes up just one component of the rendered font weight.
23232 … # The rendered weight is determined by a combination of the `weight` and the
23235 … # * If the text is bold and the weight is less than `400`, the rendered
23237 … # * If the text is bold and the weight is greater than or equal to `400` but
23238 # is less than `700`, the rendered weight is `700`.
23239 … # * If the weight is greater than or equal to `700`, the rendered weight is
23240 # equal to the weight.
23241 … # * If the text is not bold, the rendered weight is equal to the weight.
23243 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
23244 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
23245 "magnitude": 3.14, # The magnitude.
23246 "unit": "A String", # The units for magnitude.
23248 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
23249 # or transparent, depending on the `color` field.
23252 "rgbColor": { # An RGB color. # The RGB color value.
23253 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
23254 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
23255 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
23259 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
23262 … # Changing the link in an update request causes some other changes to the
23263 # text style of the range:
23265 … # * When setting a link, the text foreground color will be updated to the
23266 … # default link color and the text will be underlined. If these fields are
23267 … # modified in the same request, those values will be used instead of the
23270 # also update the existing link to point to the new URL.
23273 # will separate the newline character(s) into their own text runs. The
23274 … # link will be applied separately to the runs before and after the newline.
23275 # * Removing a link will update the text style of the range to match the
23276 … # style of the preceding text (or the default text styles if the preceding
23277 … # text is another link) unless different styles are being set in the same
23279 "headingId": "A String", # The ID of a heading in this document.
23281 "bookmarkId": "A String", # The ID of a bookmark in this document.
23283 "underline": True or False, # Whether or not the text is underlined.
23284 "bold": True or False, # Whether or not the text is rendered as bold.
23286 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
23290 …"suggestedTextStyleChanges": { # The suggested text style changes to this PageBreak, keyed by sugg…
23292 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
23293 # the changes made in this suggestion. This can be used along with the
23298 # text style's parent depends on where the text style is defined:
23300 # * The TextStyle of text in a Paragraph
23301 # inherits from the paragraph's corresponding named style type.
23302 # * The TextStyle on a named style
23303 # inherits from the normal text named style.
23304 # * The TextStyle of the normal text named style inherits
23305 # from the default text style in the Docs editor.
23306 # * The TextStyle on a Paragraph element
23307 … # that is contained in a table may inherit its text style from the table
23310 … # If the text style does not inherit from a parent, unsetting fields will
23311 … # revert the style to a value matching the defaults in the Docs editor.
23312 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
23313 # or transparent, depending on the `color` field.
23316 "rgbColor": { # An RGB color. # The RGB color value.
23317 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
23318 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
23319 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
23323 "italic": True or False, # Whether or not the text is italicized.
23324 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
23327 … # rendered in a smaller font size, computed based on the `font_size` field.
23328 # The `font_size` itself is not affected by changes in this field.
23329 … "strikethrough": True or False, # Whether or not the text is struck through.
23330 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
23333 # `bold`, the `weighted_font_family` is applied first, then `bold`.
23340 "fontFamily": "A String", # The font family of the text.
23342 … # The font family can be any font from the Font menu in Docs or from
23343 # [Google Fonts] (https://fonts.google.com/). If the font name is
23344 # unrecognized, the text is rendered in `Arial`.
23345 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
23346 … # `100` between `100` and `900`, inclusive. This range corresponds to the
23347 # numerical values described in the CSS 2.1 Specification,
23351 # The default value is `400` ("normal").
23353 … # The font weight makes up just one component of the rendered font weight.
23354 … # The rendered weight is determined by a combination of the `weight` and the
23357 … # * If the text is bold and the weight is less than `400`, the rendered
23359 … # * If the text is bold and the weight is greater than or equal to `400` but
23360 # is less than `700`, the rendered weight is `700`.
23361 … # * If the weight is greater than or equal to `700`, the rendered weight is
23362 # equal to the weight.
23363 … # * If the text is not bold, the rendered weight is equal to the weight.
23365 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
23366 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
23367 "magnitude": 3.14, # The magnitude.
23368 "unit": "A String", # The units for magnitude.
23370 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
23371 # or transparent, depending on the `color` field.
23374 "rgbColor": { # An RGB color. # The RGB color value.
23375 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
23376 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
23377 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
23381 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
23384 … # Changing the link in an update request causes some other changes to the
23385 # text style of the range:
23387 … # * When setting a link, the text foreground color will be updated to the
23388 … # default link color and the text will be underlined. If these fields are
23389 … # modified in the same request, those values will be used instead of the
23392 # also update the existing link to point to the new URL.
23395 … # will separate the newline character(s) into their own text runs. The
23396 … # link will be applied separately to the runs before and after the newline.
23397 … # * Removing a link will update the text style of the range to match the
23398 … # style of the preceding text (or the default text styles if the preceding
23399 … # text is another link) unless different styles are being set in the same
23401 "headingId": "A String", # The ID of a heading in this document.
23403 "bookmarkId": "A String", # The ID of a bookmark in this document.
23405 "underline": True or False, # Whether or not the text is underlined.
23406 "bold": True or False, # Whether or not the text is rendered as bold.
23408 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
23424 "suggestedInsertionIds": [ # The suggested insertion IDs. A PageBreak
23432 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Hori…
23434 … # Similar to text content, like text runs and footnote references, the text
23435 … # style of a horizontal rule can affect content layout as well as the styling
23439 # text style's parent depends on where the text style is defined:
23441 # * The TextStyle of text in a Paragraph
23442 # inherits from the paragraph's corresponding named style type.
23443 # * The TextStyle on a named style
23444 # inherits from the normal text named style.
23445 # * The TextStyle of the normal text named style inherits
23446 # from the default text style in the Docs editor.
23447 # * The TextStyle on a Paragraph element
23448 … # that is contained in a table may inherit its text style from the table
23451 # If the text style does not inherit from a parent, unsetting fields will
23452 # revert the style to a value matching the defaults in the Docs editor.
23453 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
23454 # or transparent, depending on the `color` field.
23457 "rgbColor": { # An RGB color. # The RGB color value.
23458 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
23459 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
23460 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
23464 "italic": True or False, # Whether or not the text is italicized.
23465 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
23468 … # rendered in a smaller font size, computed based on the `font_size` field.
23469 # The `font_size` itself is not affected by changes in this field.
23470 "strikethrough": True or False, # Whether or not the text is struck through.
23471 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
23474 # `bold`, the `weighted_font_family` is applied first, then `bold`.
23481 "fontFamily": "A String", # The font family of the text.
23483 # The font family can be any font from the Font menu in Docs or from
23484 # [Google Fonts] (https://fonts.google.com/). If the font name is
23485 # unrecognized, the text is rendered in `Arial`.
23486 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
23487 … # `100` between `100` and `900`, inclusive. This range corresponds to the
23488 # numerical values described in the CSS 2.1 Specification,
23492 # The default value is `400` ("normal").
23494 … # The font weight makes up just one component of the rendered font weight.
23495 … # The rendered weight is determined by a combination of the `weight` and the
23498 … # * If the text is bold and the weight is less than `400`, the rendered
23500 … # * If the text is bold and the weight is greater than or equal to `400` but
23501 # is less than `700`, the rendered weight is `700`.
23502 … # * If the weight is greater than or equal to `700`, the rendered weight is
23503 # equal to the weight.
23504 … # * If the text is not bold, the rendered weight is equal to the weight.
23506 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
23507 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
23508 "magnitude": 3.14, # The magnitude.
23509 "unit": "A String", # The units for magnitude.
23511 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
23512 # or transparent, depending on the `color` field.
23515 "rgbColor": { # An RGB color. # The RGB color value.
23516 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
23517 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
23518 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
23522 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
23525 … # Changing the link in an update request causes some other changes to the
23526 # text style of the range:
23528 … # * When setting a link, the text foreground color will be updated to the
23529 … # default link color and the text will be underlined. If these fields are
23530 … # modified in the same request, those values will be used instead of the
23533 # also update the existing link to point to the new URL.
23536 # will separate the newline character(s) into their own text runs. The
23537 … # link will be applied separately to the runs before and after the newline.
23538 # * Removing a link will update the text style of the range to match the
23539 … # style of the preceding text (or the default text styles if the preceding
23540 … # text is another link) unless different styles are being set in the same
23542 "headingId": "A String", # The ID of a heading in this document.
23544 "bookmarkId": "A String", # The ID of a bookmark in this document.
23546 "underline": True or False, # Whether or not the text is underlined.
23547 "bold": True or False, # Whether or not the text is rendered as bold.
23549 …"suggestedInsertionIds": [ # The suggested insertion IDs. A HorizontalRule may have multiple inser…
23554 … "suggestedTextStyleChanges": { # The suggested text style changes to this HorizontalRule, keyed by
23557 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
23558 # the changes made in this suggestion. This can be used along with the
23563 # text style's parent depends on where the text style is defined:
23565 # * The TextStyle of text in a Paragraph
23566 # inherits from the paragraph's corresponding named style type.
23567 # * The TextStyle on a named style
23568 # inherits from the normal text named style.
23569 # * The TextStyle of the normal text named style inherits
23570 # from the default text style in the Docs editor.
23571 # * The TextStyle on a Paragraph element
23572 … # that is contained in a table may inherit its text style from the table
23575 … # If the text style does not inherit from a parent, unsetting fields will
23576 … # revert the style to a value matching the defaults in the Docs editor.
23577 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
23578 # or transparent, depending on the `color` field.
23581 "rgbColor": { # An RGB color. # The RGB color value.
23582 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
23583 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
23584 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
23588 "italic": True or False, # Whether or not the text is italicized.
23589 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
23592 … # rendered in a smaller font size, computed based on the `font_size` field.
23593 # The `font_size` itself is not affected by changes in this field.
23594 … "strikethrough": True or False, # Whether or not the text is struck through.
23595 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
23598 # `bold`, the `weighted_font_family` is applied first, then `bold`.
23605 "fontFamily": "A String", # The font family of the text.
23607 … # The font family can be any font from the Font menu in Docs or from
23608 # [Google Fonts] (https://fonts.google.com/). If the font name is
23609 # unrecognized, the text is rendered in `Arial`.
23610 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
23611 … # `100` between `100` and `900`, inclusive. This range corresponds to the
23612 # numerical values described in the CSS 2.1 Specification,
23616 # The default value is `400` ("normal").
23618 … # The font weight makes up just one component of the rendered font weight.
23619 … # The rendered weight is determined by a combination of the `weight` and the
23622 … # * If the text is bold and the weight is less than `400`, the rendered
23624 … # * If the text is bold and the weight is greater than or equal to `400` but
23625 # is less than `700`, the rendered weight is `700`.
23626 … # * If the weight is greater than or equal to `700`, the rendered weight is
23627 # equal to the weight.
23628 … # * If the text is not bold, the rendered weight is equal to the weight.
23630 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
23631 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
23632 "magnitude": 3.14, # The magnitude.
23633 "unit": "A String", # The units for magnitude.
23635 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
23636 # or transparent, depending on the `color` field.
23639 "rgbColor": { # An RGB color. # The RGB color value.
23640 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
23641 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
23642 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
23646 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
23649 … # Changing the link in an update request causes some other changes to the
23650 # text style of the range:
23652 … # * When setting a link, the text foreground color will be updated to the
23653 … # default link color and the text will be underlined. If these fields are
23654 … # modified in the same request, those values will be used instead of the
23657 # also update the existing link to point to the new URL.
23660 … # will separate the newline character(s) into their own text runs. The
23661 … # link will be applied separately to the runs before and after the newline.
23662 … # * Removing a link will update the text style of the range to match the
23663 … # style of the preceding text (or the default text styles if the preceding
23664 … # text is another link) unless different styles are being set in the same
23666 "headingId": "A String", # The ID of a heading in this document.
23668 "bookmarkId": "A String", # The ID of a bookmark in this document.
23670 "underline": True or False, # Whether or not the text is underlined.
23671 "bold": True or False, # Whether or not the text is rendered as bold.
23673 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
23689 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
23695 # run of text that all has the same styling.
23696 "content": "A String", # The text of this run.
23698 # Any non-text elements in the run are replaced with the Unicode character
23700 … "textStyle": { # Represents the styling that can be applied to text. # The text style of this run.
23703 # text style's parent depends on where the text style is defined:
23705 # * The TextStyle of text in a Paragraph
23706 # inherits from the paragraph's corresponding named style type.
23707 # * The TextStyle on a named style
23708 # inherits from the normal text named style.
23709 # * The TextStyle of the normal text named style inherits
23710 # from the default text style in the Docs editor.
23711 # * The TextStyle on a Paragraph element
23712 … # that is contained in a table may inherit its text style from the table
23715 # If the text style does not inherit from a parent, unsetting fields will
23716 # revert the style to a value matching the defaults in the Docs editor.
23717 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
23718 # or transparent, depending on the `color` field.
23721 "rgbColor": { # An RGB color. # The RGB color value.
23722 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
23723 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
23724 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
23728 "italic": True or False, # Whether or not the text is italicized.
23729 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
23732 … # rendered in a smaller font size, computed based on the `font_size` field.
23733 # The `font_size` itself is not affected by changes in this field.
23734 "strikethrough": True or False, # Whether or not the text is struck through.
23735 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
23738 # `bold`, the `weighted_font_family` is applied first, then `bold`.
23745 "fontFamily": "A String", # The font family of the text.
23747 # The font family can be any font from the Font menu in Docs or from
23748 # [Google Fonts] (https://fonts.google.com/). If the font name is
23749 # unrecognized, the text is rendered in `Arial`.
23750 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
23751 … # `100` between `100` and `900`, inclusive. This range corresponds to the
23752 # numerical values described in the CSS 2.1 Specification,
23756 # The default value is `400` ("normal").
23758 … # The font weight makes up just one component of the rendered font weight.
23759 … # The rendered weight is determined by a combination of the `weight` and the
23762 … # * If the text is bold and the weight is less than `400`, the rendered
23764 … # * If the text is bold and the weight is greater than or equal to `400` but
23765 # is less than `700`, the rendered weight is `700`.
23766 … # * If the weight is greater than or equal to `700`, the rendered weight is
23767 # equal to the weight.
23768 … # * If the text is not bold, the rendered weight is equal to the weight.
23770 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
23771 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
23772 "magnitude": 3.14, # The magnitude.
23773 "unit": "A String", # The units for magnitude.
23775 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
23776 # or transparent, depending on the `color` field.
23779 "rgbColor": { # An RGB color. # The RGB color value.
23780 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
23781 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
23782 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
23786 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
23789 … # Changing the link in an update request causes some other changes to the
23790 # text style of the range:
23792 … # * When setting a link, the text foreground color will be updated to the
23793 … # default link color and the text will be underlined. If these fields are
23794 … # modified in the same request, those values will be used instead of the
23797 # also update the existing link to point to the new URL.
23800 # will separate the newline character(s) into their own text runs. The
23801 … # link will be applied separately to the runs before and after the newline.
23802 # * Removing a link will update the text style of the range to match the
23803 … # style of the preceding text (or the default text styles if the preceding
23804 … # text is another link) unless different styles are being set in the same
23806 "headingId": "A String", # The ID of a heading in this document.
23808 "bookmarkId": "A String", # The ID of a bookmark in this document.
23810 "underline": True or False, # Whether or not the text is underlined.
23811 "bold": True or False, # Whether or not the text is rendered as bold.
23813 "suggestedInsertionIds": [ # The suggested insertion IDs. A TextRun may
23818 …"suggestedTextStyleChanges": { # The suggested text style changes to this run, keyed by suggestion…
23820 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
23821 # the changes made in this suggestion. This can be used along with the
23826 # text style's parent depends on where the text style is defined:
23828 # * The TextStyle of text in a Paragraph
23829 # inherits from the paragraph's corresponding named style type.
23830 # * The TextStyle on a named style
23831 # inherits from the normal text named style.
23832 # * The TextStyle of the normal text named style inherits
23833 # from the default text style in the Docs editor.
23834 # * The TextStyle on a Paragraph element
23835 … # that is contained in a table may inherit its text style from the table
23838 … # If the text style does not inherit from a parent, unsetting fields will
23839 … # revert the style to a value matching the defaults in the Docs editor.
23840 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
23841 # or transparent, depending on the `color` field.
23844 "rgbColor": { # An RGB color. # The RGB color value.
23845 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
23846 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
23847 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
23851 "italic": True or False, # Whether or not the text is italicized.
23852 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
23855 … # rendered in a smaller font size, computed based on the `font_size` field.
23856 # The `font_size` itself is not affected by changes in this field.
23857 … "strikethrough": True or False, # Whether or not the text is struck through.
23858 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
23861 # `bold`, the `weighted_font_family` is applied first, then `bold`.
23868 "fontFamily": "A String", # The font family of the text.
23870 … # The font family can be any font from the Font menu in Docs or from
23871 # [Google Fonts] (https://fonts.google.com/). If the font name is
23872 # unrecognized, the text is rendered in `Arial`.
23873 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
23874 … # `100` between `100` and `900`, inclusive. This range corresponds to the
23875 # numerical values described in the CSS 2.1 Specification,
23879 # The default value is `400` ("normal").
23881 … # The font weight makes up just one component of the rendered font weight.
23882 … # The rendered weight is determined by a combination of the `weight` and the
23885 … # * If the text is bold and the weight is less than `400`, the rendered
23887 … # * If the text is bold and the weight is greater than or equal to `400` but
23888 # is less than `700`, the rendered weight is `700`.
23889 … # * If the weight is greater than or equal to `700`, the rendered weight is
23890 # equal to the weight.
23891 … # * If the text is not bold, the rendered weight is equal to the weight.
23893 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
23894 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
23895 "magnitude": 3.14, # The magnitude.
23896 "unit": "A String", # The units for magnitude.
23898 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
23899 # or transparent, depending on the `color` field.
23902 "rgbColor": { # An RGB color. # The RGB color value.
23903 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
23904 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
23905 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
23909 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
23912 … # Changing the link in an update request causes some other changes to the
23913 # text style of the range:
23915 … # * When setting a link, the text foreground color will be updated to the
23916 … # default link color and the text will be underlined. If these fields are
23917 … # modified in the same request, those values will be used instead of the
23920 # also update the existing link to point to the new URL.
23923 … # will separate the newline character(s) into their own text runs. The
23924 … # link will be applied separately to the runs before and after the newline.
23925 … # * Removing a link will update the text style of the range to match the
23926 … # style of the preceding text (or the default text styles if the preceding
23927 … # text is another link) unless different styles are being set in the same
23929 "headingId": "A String", # The ID of a heading in this document.
23931 "bookmarkId": "A String", # The ID of a bookmark in this document.
23933 "underline": True or False, # Whether or not the text is underlined.
23934 "bold": True or False, # Whether or not the text is rendered as bold.
23936 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
23952 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
23958 # spot in the text that is dynamically replaced with content that can change
23960 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Auto…
23963 # text style's parent depends on where the text style is defined:
23965 # * The TextStyle of text in a Paragraph
23966 # inherits from the paragraph's corresponding named style type.
23967 # * The TextStyle on a named style
23968 # inherits from the normal text named style.
23969 # * The TextStyle of the normal text named style inherits
23970 # from the default text style in the Docs editor.
23971 # * The TextStyle on a Paragraph element
23972 … # that is contained in a table may inherit its text style from the table
23975 # If the text style does not inherit from a parent, unsetting fields will
23976 # revert the style to a value matching the defaults in the Docs editor.
23977 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
23978 # or transparent, depending on the `color` field.
23981 "rgbColor": { # An RGB color. # The RGB color value.
23982 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
23983 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
23984 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
23988 "italic": True or False, # Whether or not the text is italicized.
23989 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
23992 … # rendered in a smaller font size, computed based on the `font_size` field.
23993 # The `font_size` itself is not affected by changes in this field.
23994 "strikethrough": True or False, # Whether or not the text is struck through.
23995 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
23998 # `bold`, the `weighted_font_family` is applied first, then `bold`.
24005 "fontFamily": "A String", # The font family of the text.
24007 # The font family can be any font from the Font menu in Docs or from
24008 # [Google Fonts] (https://fonts.google.com/). If the font name is
24009 # unrecognized, the text is rendered in `Arial`.
24010 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
24011 … # `100` between `100` and `900`, inclusive. This range corresponds to the
24012 # numerical values described in the CSS 2.1 Specification,
24016 # The default value is `400` ("normal").
24018 … # The font weight makes up just one component of the rendered font weight.
24019 … # The rendered weight is determined by a combination of the `weight` and the
24022 … # * If the text is bold and the weight is less than `400`, the rendered
24024 … # * If the text is bold and the weight is greater than or equal to `400` but
24025 # is less than `700`, the rendered weight is `700`.
24026 … # * If the weight is greater than or equal to `700`, the rendered weight is
24027 # equal to the weight.
24028 … # * If the text is not bold, the rendered weight is equal to the weight.
24030 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
24031 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
24032 "magnitude": 3.14, # The magnitude.
24033 "unit": "A String", # The units for magnitude.
24035 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
24036 # or transparent, depending on the `color` field.
24039 "rgbColor": { # An RGB color. # The RGB color value.
24040 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
24041 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
24042 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
24046 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
24049 … # Changing the link in an update request causes some other changes to the
24050 # text style of the range:
24052 … # * When setting a link, the text foreground color will be updated to the
24053 … # default link color and the text will be underlined. If these fields are
24054 … # modified in the same request, those values will be used instead of the
24057 # also update the existing link to point to the new URL.
24060 # will separate the newline character(s) into their own text runs. The
24061 … # link will be applied separately to the runs before and after the newline.
24062 # * Removing a link will update the text style of the range to match the
24063 … # style of the preceding text (or the default text styles if the preceding
24064 … # text is another link) unless different styles are being set in the same
24066 "headingId": "A String", # The ID of a heading in this document.
24068 "bookmarkId": "A String", # The ID of a bookmark in this document.
24070 "underline": True or False, # Whether or not the text is underlined.
24071 "bold": True or False, # Whether or not the text is rendered as bold.
24073 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
24077 …"suggestedTextStyleChanges": { # The suggested text style changes to this AutoText, keyed by sugge…
24079 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
24080 # the changes made in this suggestion. This can be used along with the
24085 # text style's parent depends on where the text style is defined:
24087 # * The TextStyle of text in a Paragraph
24088 # inherits from the paragraph's corresponding named style type.
24089 # * The TextStyle on a named style
24090 # inherits from the normal text named style.
24091 # * The TextStyle of the normal text named style inherits
24092 # from the default text style in the Docs editor.
24093 # * The TextStyle on a Paragraph element
24094 … # that is contained in a table may inherit its text style from the table
24097 … # If the text style does not inherit from a parent, unsetting fields will
24098 … # revert the style to a value matching the defaults in the Docs editor.
24099 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
24100 # or transparent, depending on the `color` field.
24103 "rgbColor": { # An RGB color. # The RGB color value.
24104 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
24105 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
24106 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
24110 "italic": True or False, # Whether or not the text is italicized.
24111 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
24114 … # rendered in a smaller font size, computed based on the `font_size` field.
24115 # The `font_size` itself is not affected by changes in this field.
24116 … "strikethrough": True or False, # Whether or not the text is struck through.
24117 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
24120 # `bold`, the `weighted_font_family` is applied first, then `bold`.
24127 "fontFamily": "A String", # The font family of the text.
24129 … # The font family can be any font from the Font menu in Docs or from
24130 # [Google Fonts] (https://fonts.google.com/). If the font name is
24131 # unrecognized, the text is rendered in `Arial`.
24132 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
24133 … # `100` between `100` and `900`, inclusive. This range corresponds to the
24134 # numerical values described in the CSS 2.1 Specification,
24138 # The default value is `400` ("normal").
24140 … # The font weight makes up just one component of the rendered font weight.
24141 … # The rendered weight is determined by a combination of the `weight` and the
24144 … # * If the text is bold and the weight is less than `400`, the rendered
24146 … # * If the text is bold and the weight is greater than or equal to `400` but
24147 # is less than `700`, the rendered weight is `700`.
24148 … # * If the weight is greater than or equal to `700`, the rendered weight is
24149 # equal to the weight.
24150 … # * If the text is not bold, the rendered weight is equal to the weight.
24152 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
24153 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
24154 "magnitude": 3.14, # The magnitude.
24155 "unit": "A String", # The units for magnitude.
24157 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
24158 # or transparent, depending on the `color` field.
24161 "rgbColor": { # An RGB color. # The RGB color value.
24162 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
24163 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
24164 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
24168 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
24171 … # Changing the link in an update request causes some other changes to the
24172 # text style of the range:
24174 … # * When setting a link, the text foreground color will be updated to the
24175 … # default link color and the text will be underlined. If these fields are
24176 … # modified in the same request, those values will be used instead of the
24179 # also update the existing link to point to the new URL.
24182 … # will separate the newline character(s) into their own text runs. The
24183 … # link will be applied separately to the runs before and after the newline.
24184 … # * Removing a link will update the text style of the range to match the
24185 … # style of the preceding text (or the default text styles if the preceding
24186 … # text is another link) unless different styles are being set in the same
24188 "headingId": "A String", # The ID of a heading in this document.
24190 "bookmarkId": "A String", # The ID of a bookmark in this document.
24192 "underline": True or False, # Whether or not the text is underlined.
24193 "bold": True or False, # Whether or not the text is rendered as bold.
24195 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
24211 "type": "A String", # The type of this auto text.
24212 "suggestedInsertionIds": [ # The suggested insertion IDs. An AutoText
24220 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Inli…
24222 … # Similar to text content, like text runs and footnote references, the text
24223 … # style of an inline object element can affect content layout as well as the
24227 # text style's parent depends on where the text style is defined:
24229 # * The TextStyle of text in a Paragraph
24230 # inherits from the paragraph's corresponding named style type.
24231 # * The TextStyle on a named style
24232 # inherits from the normal text named style.
24233 # * The TextStyle of the normal text named style inherits
24234 # from the default text style in the Docs editor.
24235 # * The TextStyle on a Paragraph element
24236 … # that is contained in a table may inherit its text style from the table
24239 # If the text style does not inherit from a parent, unsetting fields will
24240 # revert the style to a value matching the defaults in the Docs editor.
24241 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
24242 # or transparent, depending on the `color` field.
24245 "rgbColor": { # An RGB color. # The RGB color value.
24246 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
24247 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
24248 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
24252 "italic": True or False, # Whether or not the text is italicized.
24253 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
24256 … # rendered in a smaller font size, computed based on the `font_size` field.
24257 # The `font_size` itself is not affected by changes in this field.
24258 "strikethrough": True or False, # Whether or not the text is struck through.
24259 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
24262 # `bold`, the `weighted_font_family` is applied first, then `bold`.
24269 "fontFamily": "A String", # The font family of the text.
24271 # The font family can be any font from the Font menu in Docs or from
24272 # [Google Fonts] (https://fonts.google.com/). If the font name is
24273 # unrecognized, the text is rendered in `Arial`.
24274 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
24275 … # `100` between `100` and `900`, inclusive. This range corresponds to the
24276 # numerical values described in the CSS 2.1 Specification,
24280 # The default value is `400` ("normal").
24282 … # The font weight makes up just one component of the rendered font weight.
24283 … # The rendered weight is determined by a combination of the `weight` and the
24286 … # * If the text is bold and the weight is less than `400`, the rendered
24288 … # * If the text is bold and the weight is greater than or equal to `400` but
24289 # is less than `700`, the rendered weight is `700`.
24290 … # * If the weight is greater than or equal to `700`, the rendered weight is
24291 # equal to the weight.
24292 … # * If the text is not bold, the rendered weight is equal to the weight.
24294 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
24295 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
24296 "magnitude": 3.14, # The magnitude.
24297 "unit": "A String", # The units for magnitude.
24299 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
24300 # or transparent, depending on the `color` field.
24303 "rgbColor": { # An RGB color. # The RGB color value.
24304 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
24305 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
24306 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
24310 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
24313 … # Changing the link in an update request causes some other changes to the
24314 # text style of the range:
24316 … # * When setting a link, the text foreground color will be updated to the
24317 … # default link color and the text will be underlined. If these fields are
24318 … # modified in the same request, those values will be used instead of the
24321 # also update the existing link to point to the new URL.
24324 # will separate the newline character(s) into their own text runs. The
24325 … # link will be applied separately to the runs before and after the newline.
24326 # * Removing a link will update the text style of the range to match the
24327 … # style of the preceding text (or the default text styles if the preceding
24328 … # text is another link) unless different styles are being set in the same
24330 "headingId": "A String", # The ID of a heading in this document.
24332 "bookmarkId": "A String", # The ID of a bookmark in this document.
24334 "underline": True or False, # Whether or not the text is underlined.
24335 "bold": True or False, # Whether or not the text is rendered as bold.
24337 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
24341 …"suggestedTextStyleChanges": { # The suggested text style changes to this InlineObject, keyed by s…
24344 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
24345 # the changes made in this suggestion. This can be used along with the
24350 # text style's parent depends on where the text style is defined:
24352 # * The TextStyle of text in a Paragraph
24353 # inherits from the paragraph's corresponding named style type.
24354 # * The TextStyle on a named style
24355 # inherits from the normal text named style.
24356 # * The TextStyle of the normal text named style inherits
24357 # from the default text style in the Docs editor.
24358 # * The TextStyle on a Paragraph element
24359 … # that is contained in a table may inherit its text style from the table
24362 … # If the text style does not inherit from a parent, unsetting fields will
24363 … # revert the style to a value matching the defaults in the Docs editor.
24364 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
24365 # or transparent, depending on the `color` field.
24368 "rgbColor": { # An RGB color. # The RGB color value.
24369 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
24370 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
24371 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
24375 "italic": True or False, # Whether or not the text is italicized.
24376 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
24379 … # rendered in a smaller font size, computed based on the `font_size` field.
24380 # The `font_size` itself is not affected by changes in this field.
24381 … "strikethrough": True or False, # Whether or not the text is struck through.
24382 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
24385 # `bold`, the `weighted_font_family` is applied first, then `bold`.
24392 "fontFamily": "A String", # The font family of the text.
24394 … # The font family can be any font from the Font menu in Docs or from
24395 # [Google Fonts] (https://fonts.google.com/). If the font name is
24396 # unrecognized, the text is rendered in `Arial`.
24397 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
24398 … # `100` between `100` and `900`, inclusive. This range corresponds to the
24399 # numerical values described in the CSS 2.1 Specification,
24403 # The default value is `400` ("normal").
24405 … # The font weight makes up just one component of the rendered font weight.
24406 … # The rendered weight is determined by a combination of the `weight` and the
24409 … # * If the text is bold and the weight is less than `400`, the rendered
24411 … # * If the text is bold and the weight is greater than or equal to `400` but
24412 # is less than `700`, the rendered weight is `700`.
24413 … # * If the weight is greater than or equal to `700`, the rendered weight is
24414 # equal to the weight.
24415 … # * If the text is not bold, the rendered weight is equal to the weight.
24417 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
24418 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
24419 "magnitude": 3.14, # The magnitude.
24420 "unit": "A String", # The units for magnitude.
24422 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
24423 # or transparent, depending on the `color` field.
24426 "rgbColor": { # An RGB color. # The RGB color value.
24427 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
24428 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
24429 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
24433 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
24436 … # Changing the link in an update request causes some other changes to the
24437 # text style of the range:
24439 … # * When setting a link, the text foreground color will be updated to the
24440 … # default link color and the text will be underlined. If these fields are
24441 … # modified in the same request, those values will be used instead of the
24444 # also update the existing link to point to the new URL.
24447 … # will separate the newline character(s) into their own text runs. The
24448 … # link will be applied separately to the runs before and after the newline.
24449 … # * Removing a link will update the text style of the range to match the
24450 … # style of the preceding text (or the default text styles if the preceding
24451 … # text is another link) unless different styles are being set in the same
24453 "headingId": "A String", # The ID of a heading in this document.
24455 "bookmarkId": "A String", # The ID of a bookmark in this document.
24457 "underline": True or False, # Whether or not the text is underlined.
24458 "bold": True or False, # Whether or not the text is rendered as bold.
24460 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
24476 "inlineObjectId": "A String", # The ID of the InlineObject this
24478 …"suggestedInsertionIds": [ # The suggested insertion IDs. An InlineObjectElement may have multiple…
24485 … # footnote reference. A footnote reference is the inline content rendered with
24486 # a number and is used to identify the footnote.
24487 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Foot…
24490 # text style's parent depends on where the text style is defined:
24492 # * The TextStyle of text in a Paragraph
24493 # inherits from the paragraph's corresponding named style type.
24494 # * The TextStyle on a named style
24495 # inherits from the normal text named style.
24496 # * The TextStyle of the normal text named style inherits
24497 # from the default text style in the Docs editor.
24498 # * The TextStyle on a Paragraph element
24499 … # that is contained in a table may inherit its text style from the table
24502 # If the text style does not inherit from a parent, unsetting fields will
24503 # revert the style to a value matching the defaults in the Docs editor.
24504 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
24505 # or transparent, depending on the `color` field.
24508 "rgbColor": { # An RGB color. # The RGB color value.
24509 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
24510 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
24511 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
24515 "italic": True or False, # Whether or not the text is italicized.
24516 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
24519 … # rendered in a smaller font size, computed based on the `font_size` field.
24520 # The `font_size` itself is not affected by changes in this field.
24521 "strikethrough": True or False, # Whether or not the text is struck through.
24522 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
24525 # `bold`, the `weighted_font_family` is applied first, then `bold`.
24532 "fontFamily": "A String", # The font family of the text.
24534 # The font family can be any font from the Font menu in Docs or from
24535 # [Google Fonts] (https://fonts.google.com/). If the font name is
24536 # unrecognized, the text is rendered in `Arial`.
24537 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
24538 … # `100` between `100` and `900`, inclusive. This range corresponds to the
24539 # numerical values described in the CSS 2.1 Specification,
24543 # The default value is `400` ("normal").
24545 … # The font weight makes up just one component of the rendered font weight.
24546 … # The rendered weight is determined by a combination of the `weight` and the
24549 … # * If the text is bold and the weight is less than `400`, the rendered
24551 … # * If the text is bold and the weight is greater than or equal to `400` but
24552 # is less than `700`, the rendered weight is `700`.
24553 … # * If the weight is greater than or equal to `700`, the rendered weight is
24554 # equal to the weight.
24555 … # * If the text is not bold, the rendered weight is equal to the weight.
24557 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
24558 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
24559 "magnitude": 3.14, # The magnitude.
24560 "unit": "A String", # The units for magnitude.
24562 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
24563 # or transparent, depending on the `color` field.
24566 "rgbColor": { # An RGB color. # The RGB color value.
24567 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
24568 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
24569 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
24573 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
24576 … # Changing the link in an update request causes some other changes to the
24577 # text style of the range:
24579 … # * When setting a link, the text foreground color will be updated to the
24580 … # default link color and the text will be underlined. If these fields are
24581 … # modified in the same request, those values will be used instead of the
24584 # also update the existing link to point to the new URL.
24587 # will separate the newline character(s) into their own text runs. The
24588 … # link will be applied separately to the runs before and after the newline.
24589 # * Removing a link will update the text style of the range to match the
24590 … # style of the preceding text (or the default text styles if the preceding
24591 … # text is another link) unless different styles are being set in the same
24593 "headingId": "A String", # The ID of a heading in this document.
24595 "bookmarkId": "A String", # The ID of a bookmark in this document.
24597 "underline": True or False, # Whether or not the text is underlined.
24598 "bold": True or False, # Whether or not the text is rendered as bold.
24600 "footnoteNumber": "A String", # The rendered number of this footnote.
24601 …"suggestedInsertionIds": [ # The suggested insertion IDs. A FootnoteReference may have multiple in…
24606 "footnoteId": "A String", # The ID of the footnote that
24607 # contains the content of this footnote reference.
24608 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
24612 …"suggestedTextStyleChanges": { # The suggested text style changes to this FootnoteReference, keyed…
24615 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
24616 # the changes made in this suggestion. This can be used along with the
24621 # text style's parent depends on where the text style is defined:
24623 # * The TextStyle of text in a Paragraph
24624 # inherits from the paragraph's corresponding named style type.
24625 # * The TextStyle on a named style
24626 # inherits from the normal text named style.
24627 # * The TextStyle of the normal text named style inherits
24628 # from the default text style in the Docs editor.
24629 # * The TextStyle on a Paragraph element
24630 … # that is contained in a table may inherit its text style from the table
24633 … # If the text style does not inherit from a parent, unsetting fields will
24634 … # revert the style to a value matching the defaults in the Docs editor.
24635 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
24636 # or transparent, depending on the `color` field.
24639 "rgbColor": { # An RGB color. # The RGB color value.
24640 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
24641 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
24642 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
24646 "italic": True or False, # Whether or not the text is italicized.
24647 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
24650 … # rendered in a smaller font size, computed based on the `font_size` field.
24651 # The `font_size` itself is not affected by changes in this field.
24652 … "strikethrough": True or False, # Whether or not the text is struck through.
24653 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
24656 # `bold`, the `weighted_font_family` is applied first, then `bold`.
24663 "fontFamily": "A String", # The font family of the text.
24665 … # The font family can be any font from the Font menu in Docs or from
24666 # [Google Fonts] (https://fonts.google.com/). If the font name is
24667 # unrecognized, the text is rendered in `Arial`.
24668 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
24669 … # `100` between `100` and `900`, inclusive. This range corresponds to the
24670 # numerical values described in the CSS 2.1 Specification,
24674 # The default value is `400` ("normal").
24676 … # The font weight makes up just one component of the rendered font weight.
24677 … # The rendered weight is determined by a combination of the `weight` and the
24680 … # * If the text is bold and the weight is less than `400`, the rendered
24682 … # * If the text is bold and the weight is greater than or equal to `400` but
24683 # is less than `700`, the rendered weight is `700`.
24684 … # * If the weight is greater than or equal to `700`, the rendered weight is
24685 # equal to the weight.
24686 … # * If the text is not bold, the rendered weight is equal to the weight.
24688 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
24689 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
24690 "magnitude": 3.14, # The magnitude.
24691 "unit": "A String", # The units for magnitude.
24693 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
24694 # or transparent, depending on the `color` field.
24697 "rgbColor": { # An RGB color. # The RGB color value.
24698 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
24699 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
24700 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
24704 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
24707 … # Changing the link in an update request causes some other changes to the
24708 # text style of the range:
24710 … # * When setting a link, the text foreground color will be updated to the
24711 … # default link color and the text will be underlined. If these fields are
24712 … # modified in the same request, those values will be used instead of the
24715 # also update the existing link to point to the new URL.
24718 … # will separate the newline character(s) into their own text runs. The
24719 … # link will be applied separately to the runs before and after the newline.
24720 … # * Removing a link will update the text style of the range to match the
24721 … # style of the preceding text (or the default text styles if the preceding
24722 … # text is another link) unless different styles are being set in the same
24724 "headingId": "A String", # The ID of a heading in this document.
24726 "bookmarkId": "A String", # The ID of a bookmark in this document.
24728 "underline": True or False, # Whether or not the text is underlined.
24729 "bold": True or False, # Whether or not the text is rendered as bold.
24731 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
24750 …"suggestedPositionedObjectIds": { # The IDs of the positioned objects that are suggested to be att…
24753 "objectIds": [ # The object IDs.
24758 …"bullet": { # Describes the bullet of a paragraph. # The bullet for this paragraph. If not present…
24760 "nestingLevel": 42, # The nesting level of this paragraph in the list.
24761 "listId": "A String", # The ID of the list this paragraph belongs to.
24762 …"textStyle": { # Represents the styling that can be applied to text. # The paragraph specific text…
24765 # text style's parent depends on where the text style is defined:
24767 # * The TextStyle of text in a Paragraph
24768 # inherits from the paragraph's corresponding named style type.
24769 # * The TextStyle on a named style
24770 # inherits from the normal text named style.
24771 # * The TextStyle of the normal text named style inherits
24772 # from the default text style in the Docs editor.
24773 # * The TextStyle on a Paragraph element
24774 # that is contained in a table may inherit its text style from the table
24777 # If the text style does not inherit from a parent, unsetting fields will
24778 # revert the style to a value matching the defaults in the Docs editor.
24779 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
24780 # or transparent, depending on the `color` field.
24783 "rgbColor": { # An RGB color. # The RGB color value.
24784 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
24785 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
24786 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
24790 "italic": True or False, # Whether or not the text is italicized.
24791 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
24794 # rendered in a smaller font size, computed based on the `font_size` field.
24795 # The `font_size` itself is not affected by changes in this field.
24796 "strikethrough": True or False, # Whether or not the text is struck through.
24797 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
24800 # `bold`, the `weighted_font_family` is applied first, then `bold`.
24807 "fontFamily": "A String", # The font family of the text.
24809 # The font family can be any font from the Font menu in Docs or from
24810 # [Google Fonts] (https://fonts.google.com/). If the font name is
24811 # unrecognized, the text is rendered in `Arial`.
24812 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
24813 # `100` between `100` and `900`, inclusive. This range corresponds to the
24814 # numerical values described in the CSS 2.1 Specification,
24818 # The default value is `400` ("normal").
24820 # The font weight makes up just one component of the rendered font weight.
24821 … # The rendered weight is determined by a combination of the `weight` and the
24824 # * If the text is bold and the weight is less than `400`, the rendered
24826 … # * If the text is bold and the weight is greater than or equal to `400` but
24827 # is less than `700`, the rendered weight is `700`.
24828 … # * If the weight is greater than or equal to `700`, the rendered weight is
24829 # equal to the weight.
24830 # * If the text is not bold, the rendered weight is equal to the weight.
24832 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
24833 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
24834 "magnitude": 3.14, # The magnitude.
24835 "unit": "A String", # The units for magnitude.
24837 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
24838 # or transparent, depending on the `color` field.
24841 "rgbColor": { # An RGB color. # The RGB color value.
24842 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
24843 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
24844 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
24848 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
24851 # Changing the link in an update request causes some other changes to the
24852 # text style of the range:
24854 # * When setting a link, the text foreground color will be updated to the
24855 # default link color and the text will be underlined. If these fields are
24856 # modified in the same request, those values will be used instead of the
24859 # also update the existing link to point to the new URL.
24862 # will separate the newline character(s) into their own text runs. The
24863 … # link will be applied separately to the runs before and after the newline.
24864 # * Removing a link will update the text style of the range to match the
24865 # style of the preceding text (or the default text styles if the preceding
24866 # text is another link) unless different styles are being set in the same
24868 "headingId": "A String", # The ID of a heading in this document.
24870 "bookmarkId": "A String", # The ID of a bookmark in this document.
24872 "underline": True or False, # Whether or not the text is underlined.
24873 "bold": True or False, # Whether or not the text is rendered as bold.
24876 "suggestedBulletChanges": { # The suggested changes to this paragraph's bullet.
24878 … "bullet": { # Describes the bullet of a paragraph. # A Bullet that only includes the changes made
24879 # in this suggestion. This can be used along with the
24882 "nestingLevel": 42, # The nesting level of this paragraph in the list.
24883 "listId": "A String", # The ID of the list this paragraph belongs to.
24884 …"textStyle": { # Represents the styling that can be applied to text. # The paragraph specific text…
24887 # text style's parent depends on where the text style is defined:
24889 # * The TextStyle of text in a Paragraph
24890 # inherits from the paragraph's corresponding named style type.
24891 # * The TextStyle on a named style
24892 # inherits from the normal text named style.
24893 # * The TextStyle of the normal text named style inherits
24894 # from the default text style in the Docs editor.
24895 # * The TextStyle on a Paragraph element
24896 … # that is contained in a table may inherit its text style from the table
24899 # If the text style does not inherit from a parent, unsetting fields will
24900 # revert the style to a value matching the defaults in the Docs editor.
24901 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
24902 # or transparent, depending on the `color` field.
24905 "rgbColor": { # An RGB color. # The RGB color value.
24906 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
24907 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
24908 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
24912 "italic": True or False, # Whether or not the text is italicized.
24913 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
24916 … # rendered in a smaller font size, computed based on the `font_size` field.
24917 # The `font_size` itself is not affected by changes in this field.
24918 "strikethrough": True or False, # Whether or not the text is struck through.
24919 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
24922 # `bold`, the `weighted_font_family` is applied first, then `bold`.
24929 "fontFamily": "A String", # The font family of the text.
24931 # The font family can be any font from the Font menu in Docs or from
24932 # [Google Fonts] (https://fonts.google.com/). If the font name is
24933 # unrecognized, the text is rendered in `Arial`.
24934 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
24935 … # `100` between `100` and `900`, inclusive. This range corresponds to the
24936 # numerical values described in the CSS 2.1 Specification,
24940 # The default value is `400` ("normal").
24942 … # The font weight makes up just one component of the rendered font weight.
24943 … # The rendered weight is determined by a combination of the `weight` and the
24946 … # * If the text is bold and the weight is less than `400`, the rendered
24948 … # * If the text is bold and the weight is greater than or equal to `400` but
24949 # is less than `700`, the rendered weight is `700`.
24950 … # * If the weight is greater than or equal to `700`, the rendered weight is
24951 # equal to the weight.
24952 … # * If the text is not bold, the rendered weight is equal to the weight.
24954 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
24955 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
24956 "magnitude": 3.14, # The magnitude.
24957 "unit": "A String", # The units for magnitude.
24959 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
24960 # or transparent, depending on the `color` field.
24963 "rgbColor": { # An RGB color. # The RGB color value.
24964 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
24965 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
24966 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
24970 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
24973 … # Changing the link in an update request causes some other changes to the
24974 # text style of the range:
24976 … # * When setting a link, the text foreground color will be updated to the
24977 … # default link color and the text will be underlined. If these fields are
24978 … # modified in the same request, those values will be used instead of the
24981 # also update the existing link to point to the new URL.
24984 # will separate the newline character(s) into their own text runs. The
24985 … # link will be applied separately to the runs before and after the newline.
24986 # * Removing a link will update the text style of the range to match the
24987 … # style of the preceding text (or the default text styles if the preceding
24988 … # text is another link) unless different styles are being set in the same
24990 "headingId": "A String", # The ID of a heading in this document.
24992 "bookmarkId": "A String", # The ID of a bookmark in this document.
24994 "underline": True or False, # Whether or not the text is underlined.
24995 "bold": True or False, # Whether or not the text is rendered as bold.
24998 …te": { # A mask that indicates which of the fields on the base # A mask that indicates which of th…
25002 … "nestingLevelSuggested": True or False, # Indicates if there was a suggested change to the
25004 …hat indicates which of the fields on the base TextStyle have been changed in this suggestion. # A …
25019 … "listIdSuggested": True or False, # Indicates if there was a suggested change to the
25024 … "positionedObjectIds": [ # The IDs of the positioned objects tethered to this paragraph.
25027 …"suggestedParagraphStyleChanges": { # The suggested paragraph style changes to this paragraph, key…
25031 …tes which of the fields on the base ParagraphStyle have been changed in this suggestion. # A mask …
25052 … mask that indicates which of the fields on the base Shading have been changed in this # A mask th…
25055 …ckgroundColorSuggested": True or False, # Indicates if there was a suggested change to the Shading.
25059 # the changes made in this suggestion. This can be used along with the
25064 … # A paragraph style's parent depends on where the paragraph style is defined:
25066 # * The ParagraphStyle on a Paragraph
25067 # inherits from the paragraph's corresponding named style type.
25068 # * The ParagraphStyle on a named style
25069 # inherits from the normal text named style.
25070 # * The ParagraphStyle of the normal text named style inherits
25071 # from the default paragraph style in the Docs editor.
25072 # * The ParagraphStyle on a Paragraph
25074 # the table style.
25076 … # If the paragraph style does not inherit from a parent, unsetting fields will
25077 # revert the style to a value matching the defaults in the Docs editor.
25078 "spacingMode": "A String", # The spacing mode for the paragraph.
25079 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
25082 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
25083 # inherited from the parent.
25084 "magnitude": 3.14, # The magnitude.
25085 "unit": "A String", # The units for magnitude.
25087 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
25088 # page or column as the next paragraph if possible. If unset, the value is
25089 # inherited from the parent.
25090 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
25091 … # is represented as 100.0. If unset, the value is inherited from the parent.
25092 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
25093 # is inherited from the parent.
25094 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
25095 # inherited from the parent.
25097 … # The bottom border is rendered when the paragraph below has different border
25101 # changes to a paragraph border the new border must be specified in
25103 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
25106 "rgbColor": { # An RGB color. # The RGB color value.
25107 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
25108 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
25109 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
25113 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
25114 "magnitude": 3.14, # The magnitude.
25115 "unit": "A String", # The units for magnitude.
25117 "dashStyle": "A String", # The dash style of the border.
25118 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
25119 "magnitude": 3.14, # The magnitude.
25120 "unit": "A String", # The units for magnitude.
25123 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
25124 … # the start of the text, based on the current paragraph direction. If unset,
25125 # the value is inherited from the parent.
25126 "magnitude": 3.14, # The magnitude.
25127 "unit": "A String", # The units for magnitude.
25129 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
25130 # If unset, the value is inherited from the parent.
25132 # The between border is rendered when the adjacent paragraph has the same
25136 # changes to a paragraph border the new border must be specified in
25138 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
25141 "rgbColor": { # An RGB color. # The RGB color value.
25142 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
25143 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
25144 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
25148 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
25149 "magnitude": 3.14, # The magnitude.
25150 "unit": "A String", # The units for magnitude.
25152 "dashStyle": "A String", # The dash style of the border.
25153 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
25154 "magnitude": 3.14, # The magnitude.
25155 "unit": "A String", # The units for magnitude.
25158 "namedStyleType": "A String", # The named style type of the paragraph.
25160 # Since updating the named style type affects other properties within
25161 … # ParagraphStyle, the named style type is applied before the other properties
25163 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
25164 # from the parent.
25167 # changes to a paragraph border the new border must be specified in
25169 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
25172 "rgbColor": { # An RGB color. # The RGB color value.
25173 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
25174 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
25175 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
25179 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
25180 "magnitude": 3.14, # The magnitude.
25181 "unit": "A String", # The units for magnitude.
25183 "dashStyle": "A String", # The dash style of the border.
25184 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
25185 "magnitude": 3.14, # The magnitude.
25186 "unit": "A String", # The units for magnitude.
25189 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
25190 # the end of the text, based on the current paragraph direction. If unset,
25191 # the value is inherited from the parent.
25192 "magnitude": 3.14, # The magnitude.
25193 "unit": "A String", # The units for magnitude.
25195 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
25196 # from the parent.
25199 # changes to a paragraph border the new border must be specified in
25201 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
25204 "rgbColor": { # An RGB color. # The RGB color value.
25205 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
25206 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
25207 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
25211 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
25212 "magnitude": 3.14, # The magnitude.
25213 "unit": "A String", # The units for magnitude.
25215 "dashStyle": "A String", # The dash style of the border.
25216 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
25217 "magnitude": 3.14, # The magnitude.
25218 "unit": "A String", # The units for magnitude.
25221 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
25222 # inherited from the parent.
25223 "magnitude": 3.14, # The magnitude.
25224 "unit": "A String", # The units for magnitude.
25226 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
25228 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
25230 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
25233 "rgbColor": { # An RGB color. # The RGB color value.
25234 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
25235 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
25236 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
25241 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
25242 # from the parent.
25244 # The top border is rendered when the paragraph above has different border
25248 # changes to a paragraph border the new border must be specified in
25250 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
25253 "rgbColor": { # An RGB color. # The RGB color value.
25254 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
25255 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
25256 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
25260 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
25261 "magnitude": 3.14, # The magnitude.
25262 "unit": "A String", # The units for magnitude.
25264 "dashStyle": "A String", # The dash style of the border.
25265 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
25266 "magnitude": 3.14, # The magnitude.
25267 "unit": "A String", # The units for magnitude.
25270 … "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
25273 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
25274 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
25275 "magnitude": 3.14, # The magnitude.
25276 "unit": "A String", # The units for magnitude.
25280 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
25281 # the value is inherited from the parent.
25282 "magnitude": 3.14, # The magnitude.
25283 "unit": "A String", # The units for magnitude.
25285 "alignment": "A String", # The text alignment for this paragraph.
25286 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
25287 # column if possible. If unset, the value is inherited from the parent.
25291 … "paragraphStyle": { # Styles that apply to a whole paragraph. # The style of this paragraph.
25294 # A paragraph style's parent depends on where the paragraph style is defined:
25296 # * The ParagraphStyle on a Paragraph
25297 # inherits from the paragraph's corresponding named style type.
25298 # * The ParagraphStyle on a named style
25299 # inherits from the normal text named style.
25300 # * The ParagraphStyle of the normal text named style inherits
25301 # from the default paragraph style in the Docs editor.
25302 # * The ParagraphStyle on a Paragraph
25304 # the table style.
25306 # If the paragraph style does not inherit from a parent, unsetting fields will
25307 # revert the style to a value matching the defaults in the Docs editor.
25308 "spacingMode": "A String", # The spacing mode for the paragraph.
25309 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
25312 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
25313 # inherited from the parent.
25314 "magnitude": 3.14, # The magnitude.
25315 "unit": "A String", # The units for magnitude.
25317 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
25318 # page or column as the next paragraph if possible. If unset, the value is
25319 # inherited from the parent.
25320 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
25321 # is represented as 100.0. If unset, the value is inherited from the parent.
25322 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
25323 # is inherited from the parent.
25324 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
25325 # inherited from the parent.
25327 # The bottom border is rendered when the paragraph below has different border
25331 # changes to a paragraph border the new border must be specified in
25333 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
25336 "rgbColor": { # An RGB color. # The RGB color value.
25337 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
25338 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
25339 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
25343 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
25344 "magnitude": 3.14, # The magnitude.
25345 "unit": "A String", # The units for magnitude.
25347 "dashStyle": "A String", # The dash style of the border.
25348 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
25349 "magnitude": 3.14, # The magnitude.
25350 "unit": "A String", # The units for magnitude.
25353 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
25354 # the start of the text, based on the current paragraph direction. If unset,
25355 # the value is inherited from the parent.
25356 "magnitude": 3.14, # The magnitude.
25357 "unit": "A String", # The units for magnitude.
25359 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
25360 # If unset, the value is inherited from the parent.
25362 # The between border is rendered when the adjacent paragraph has the same
25366 # changes to a paragraph border the new border must be specified in
25368 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
25371 "rgbColor": { # An RGB color. # The RGB color value.
25372 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
25373 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
25374 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
25378 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
25379 "magnitude": 3.14, # The magnitude.
25380 "unit": "A String", # The units for magnitude.
25382 "dashStyle": "A String", # The dash style of the border.
25383 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
25384 "magnitude": 3.14, # The magnitude.
25385 "unit": "A String", # The units for magnitude.
25388 "namedStyleType": "A String", # The named style type of the paragraph.
25390 # Since updating the named style type affects other properties within
25391 # ParagraphStyle, the named style type is applied before the other properties
25393 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
25394 # from the parent.
25397 # changes to a paragraph border the new border must be specified in
25399 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
25402 "rgbColor": { # An RGB color. # The RGB color value.
25403 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
25404 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
25405 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
25409 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
25410 "magnitude": 3.14, # The magnitude.
25411 "unit": "A String", # The units for magnitude.
25413 "dashStyle": "A String", # The dash style of the border.
25414 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
25415 "magnitude": 3.14, # The magnitude.
25416 "unit": "A String", # The units for magnitude.
25419 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
25420 # the end of the text, based on the current paragraph direction. If unset,
25421 # the value is inherited from the parent.
25422 "magnitude": 3.14, # The magnitude.
25423 "unit": "A String", # The units for magnitude.
25425 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
25426 # from the parent.
25429 # changes to a paragraph border the new border must be specified in
25431 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
25434 "rgbColor": { # An RGB color. # The RGB color value.
25435 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
25436 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
25437 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
25441 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
25442 "magnitude": 3.14, # The magnitude.
25443 "unit": "A String", # The units for magnitude.
25445 "dashStyle": "A String", # The dash style of the border.
25446 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
25447 "magnitude": 3.14, # The magnitude.
25448 "unit": "A String", # The units for magnitude.
25451 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
25452 # inherited from the parent.
25453 "magnitude": 3.14, # The magnitude.
25454 "unit": "A String", # The units for magnitude.
25456 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
25458 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
25460 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
25463 "rgbColor": { # An RGB color. # The RGB color value.
25464 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
25465 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
25466 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
25471 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
25472 # from the parent.
25474 # The top border is rendered when the paragraph above has different border
25478 # changes to a paragraph border the new border must be specified in
25480 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
25483 "rgbColor": { # An RGB color. # The RGB color value.
25484 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
25485 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
25486 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
25490 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
25491 "magnitude": 3.14, # The magnitude.
25492 "unit": "A String", # The units for magnitude.
25494 "dashStyle": "A String", # The dash style of the border.
25495 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
25496 "magnitude": 3.14, # The magnitude.
25497 "unit": "A String", # The units for magnitude.
25500 … "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
25503 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
25504 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
25505 "magnitude": 3.14, # The magnitude.
25506 "unit": "A String", # The units for magnitude.
25510 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
25511 # the value is inherited from the parent.
25512 "magnitude": 3.14, # The magnitude.
25513 "unit": "A String", # The units for magnitude.
25515 "alignment": "A String", # The text alignment for this paragraph.
25516 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
25517 # column if possible. If unset, the value is inherited from the parent.
25522 "rows": 42, # Number of rows in the table.
25523 "tableStyle": { # Styles that apply to a table. # The style of the table.
25524 "tableColumnProperties": [ # The properties of each column.
25527 # HTML. So the properties for a row can be found on the row's
25529 { # The properties of a column in a table.
25530 …th": { # A magnitude in a single direction in the specified units. # The width of the column. Set …
25532 "magnitude": 3.14, # The magnitude.
25533 "unit": "A String", # The units for magnitude.
25535 "widthType": "A String", # The width type of the column.
25539 "suggestedInsertionIds": [ # The suggested insertion IDs. A Table may have
25544 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
25548 "tableRows": [ # The contents and style of each row.
25549 { # The contents and style of a row in a Table.
25550 … "endIndex": 42, # The zero-based end index of this row, exclusive, in UTF-16 code units.
25551 "tableCells": [ # The contents and style of each cell in this row.
25554 # different number of cells than other rows in the same table.
25555 { # The contents and style of a cell in a Table.
25556 … "endIndex": 42, # The zero-based end index of this cell, exclusive, in UTF-16 code units.
25557 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
25561 "suggestedInsertionIds": [ # The suggested insertion IDs. A TableCell
25566 "content": [ # The content of the cell.
25569 "tableCellStyle": { # The style of a TableCell. # The style of the cell.
25572 # A table cell style can inherit from the table's style.
25573 …ngBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of t…
25574 "magnitude": 3.14, # The magnitude.
25575 "unit": "A String", # The units for magnitude.
25577 … "borderBottom": { # A border around a table cell. # The bottom border of the cell.
25578 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
25581 "rgbColor": { # An RGB color. # The RGB color value.
25582 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
25583 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
25584 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
25588 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
25589 "magnitude": 3.14, # The magnitude.
25590 "unit": "A String", # The units for magnitude.
25592 "dashStyle": "A String", # The dash style of the border.
25594 …ddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of th…
25595 "magnitude": 3.14, # The magnitude.
25596 "unit": "A String", # The units for magnitude.
25598 …paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of th…
25599 "magnitude": 3.14, # The magnitude.
25600 "unit": "A String", # The units for magnitude.
25602 … "borderLeft": { # A border around a table cell. # The left border of the cell.
25603 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
25606 "rgbColor": { # An RGB color. # The RGB color value.
25607 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
25608 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
25609 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
25613 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
25614 "magnitude": 3.14, # The magnitude.
25615 "unit": "A String", # The units for magnitude.
25617 "dashStyle": "A String", # The dash style of the border.
25619 … "columnSpan": 42, # The column span of the cell. This property is read-only.
25620 …# A color that can either be fully opaque or fully transparent. # The background color of the cell.
25623 "rgbColor": { # An RGB color. # The RGB color value.
25624 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
25625 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
25626 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
25630 … "borderRight": { # A border around a table cell. # The right border of the cell.
25631 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
25634 "rgbColor": { # An RGB color. # The RGB color value.
25635 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
25636 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
25637 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
25641 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
25642 "magnitude": 3.14, # The magnitude.
25643 "unit": "A String", # The units for magnitude.
25645 "dashStyle": "A String", # The dash style of the border.
25647 "rowSpan": 42, # The row span of the cell. This property is read-only.
25648 …"contentAlignment": "A String", # The alignment of the content in the table cell. The default alig…
25649 … # matches the alignment for newly created table cells in the Docs editor.
25650 …dingRight": { # A magnitude in a single direction in the specified units. # The right padding of t…
25651 "magnitude": 3.14, # The magnitude.
25652 "unit": "A String", # The units for magnitude.
25654 … "borderTop": { # A border around a table cell. # The top border of the cell.
25655 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
25658 "rgbColor": { # An RGB color. # The RGB color value.
25659 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
25660 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
25661 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
25665 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
25666 "magnitude": 3.14, # The magnitude.
25667 "unit": "A String", # The units for magnitude.
25669 "dashStyle": "A String", # The dash style of the border.
25672 … "startIndex": 42, # The zero-based start index of this cell, in UTF-16 code units.
25673 …"suggestedTableCellStyleChanges": { # The suggested changes to the table cell style, keyed by sugg…
25675 … "tableCellStyle": { # The style of a TableCell. # A TableCellStyle that only includes
25676 … # the changes made in this suggestion. This can be used along with the
25681 # A table cell style can inherit from the table's style.
25682 …ngBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of t…
25683 "magnitude": 3.14, # The magnitude.
25684 "unit": "A String", # The units for magnitude.
25686 … "borderBottom": { # A border around a table cell. # The bottom border of the cell.
25687 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
25690 "rgbColor": { # An RGB color. # The RGB color value.
25691 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
25692 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
25693 … "red": 3.14, # The red component of the color, from 0.0 to 1.0.
25697 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
25698 "magnitude": 3.14, # The magnitude.
25699 "unit": "A String", # The units for magnitude.
25701 "dashStyle": "A String", # The dash style of the border.
25703 …ddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of th…
25704 "magnitude": 3.14, # The magnitude.
25705 "unit": "A String", # The units for magnitude.
25707 …paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of th…
25708 "magnitude": 3.14, # The magnitude.
25709 "unit": "A String", # The units for magnitude.
25711 … "borderLeft": { # A border around a table cell. # The left border of the cell.
25712 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
25715 "rgbColor": { # An RGB color. # The RGB color value.
25716 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
25717 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
25718 … "red": 3.14, # The red component of the color, from 0.0 to 1.0.
25722 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
25723 "magnitude": 3.14, # The magnitude.
25724 "unit": "A String", # The units for magnitude.
25726 "dashStyle": "A String", # The dash style of the border.
25728 … "columnSpan": 42, # The column span of the cell. This property is read-only.
25729 …# A color that can either be fully opaque or fully transparent. # The background color of the cell.
25732 "rgbColor": { # An RGB color. # The RGB color value.
25733 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
25734 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
25735 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
25739 … "borderRight": { # A border around a table cell. # The right border of the cell.
25740 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
25743 "rgbColor": { # An RGB color. # The RGB color value.
25744 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
25745 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
25746 … "red": 3.14, # The red component of the color, from 0.0 to 1.0.
25750 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
25751 "magnitude": 3.14, # The magnitude.
25752 "unit": "A String", # The units for magnitude.
25754 "dashStyle": "A String", # The dash style of the border.
25756 "rowSpan": 42, # The row span of the cell. This property is read-only.
25757 …"contentAlignment": "A String", # The alignment of the content in the table cell. The default alig…
25758 … # matches the alignment for newly created table cells in the Docs editor.
25759 …dingRight": { # A magnitude in a single direction in the specified units. # The right padding of t…
25760 "magnitude": 3.14, # The magnitude.
25761 "unit": "A String", # The units for magnitude.
25763 … "borderTop": { # A border around a table cell. # The top border of the cell.
25764 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
25767 "rgbColor": { # An RGB color. # The RGB color value.
25768 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
25769 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
25770 … "red": 3.14, # The red component of the color, from 0.0 to 1.0.
25774 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
25775 "magnitude": 3.14, # The magnitude.
25776 "unit": "A String", # The units for magnitude.
25778 "dashStyle": "A String", # The dash style of the border.
25781 …tes which of the fields on the base TableCellStyle have been changed in this suggestion. # A mask …
25800 … "tableRowStyle": { # Styles that apply to a table row. # The style of the table row.
25801 …agnitude in a single direction in the specified units. # The minimum height of the row. The row wi…
25802 # at a height equal to or greater than this value in order to show all the
25803 # content in the row's cells.
25804 "magnitude": 3.14, # The magnitude.
25805 "unit": "A String", # The units for magnitude.
25808 "suggestedInsertionIds": [ # The suggested insertion IDs. A TableRow
25813 … "startIndex": 42, # The zero-based start index of this row, in UTF-16 code units.
25814 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
25818 …"suggestedTableRowStyleChanges": { # The suggested style changes to this row, keyed by suggestion …
25822 # the changes made in this suggestion. This can be used along with the
25825 …agnitude in a single direction in the specified units. # The minimum height of the row. The row wi…
25826 … # at a height equal to or greater than this value in order to show all the
25827 # content in the row's cells.
25828 "magnitude": 3.14, # The magnitude.
25829 "unit": "A String", # The units for magnitude.
25832 …ates which of the fields on the base TableRowStyle have been changed in this suggestion. # A mask …
25840 "columns": 42, # Number of columns in the table.
25847 "footerId": "A String", # The ID of the footer.
25850 "footnotes": { # The footnotes in the document, keyed by footnote ID.
25852 "content": [ # The contents of the footnote.
25854 # The indexes for a footnote's content begin at zero.
25855 { # A StructuralElement describes content that provides structure to the
25857 … "endIndex": 42, # The zero-based end index of this structural element, exclusive, in UTF-16
25860 # section break. A section is a range of content which has the same
25862 # the start of a new section, and the section style applies to the section
25863 # after the section break.
25865 # The document body always begins with a section break.
25866 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
25870 …"sectionStyle": { # The styling that applies to a section. # The style of the section after this s…
25871 …"contentDirection": "A String", # The content direction of this section. If unset, the value defau…
25873 "columnProperties": [ # The section's columns properties.
25875 # If empty, the section contains one column with the default properties in
25876 # the Docs editor.
25878 … "width": { # A magnitude in a single direction in the specified units. # The width of the column.
25879 "magnitude": 3.14, # The magnitude.
25880 "unit": "A String", # The units for magnitude.
25882 …ingEnd": { # A magnitude in a single direction in the specified units. # The padding at the end of…
25883 "magnitude": 3.14, # The magnitude.
25884 "unit": "A String", # The units for magnitude.
25888 "columnSeparatorStyle": "A String", # The style of column separators.
25890 # This style can be set even when there is one column in the section.
25892 …"suggestedInsertionIds": [ # The suggested insertion IDs. A SectionBreak may have multiple inserti…
25900 "content": [ # The content of the table of contents.
25903 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
25907 …"suggestedInsertionIds": [ # The suggested insertion IDs. A TableOfContents may have multiple inse…
25913 … "startIndex": 42, # The zero-based start index of this structural element, in UTF-16 code
25918 "elements": [ # The content of the paragraph broken down into its component parts.
25921 … "endIndex": 42, # The zero-base end index of this paragraph element, exclusive, in UTF-16
25925 "suggestedInsertionIds": [ # The suggested insertion IDs. A Equation
25930 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
25936 # column break. A column break makes the subsequent text start at the top of
25937 # the next column.
25938 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Colu…
25940 … # Similar to text content, like text runs and footnote references, the text
25941 … # style of a column break can affect content layout as well as the styling of
25945 # text style's parent depends on where the text style is defined:
25947 # * The TextStyle of text in a Paragraph
25948 # inherits from the paragraph's corresponding named style type.
25949 # * The TextStyle on a named style
25950 # inherits from the normal text named style.
25951 # * The TextStyle of the normal text named style inherits
25952 # from the default text style in the Docs editor.
25953 # * The TextStyle on a Paragraph element
25954 … # that is contained in a table may inherit its text style from the table
25957 # If the text style does not inherit from a parent, unsetting fields will
25958 # revert the style to a value matching the defaults in the Docs editor.
25959 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
25960 # or transparent, depending on the `color` field.
25963 "rgbColor": { # An RGB color. # The RGB color value.
25964 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
25965 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
25966 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
25970 "italic": True or False, # Whether or not the text is italicized.
25971 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
25974 … # rendered in a smaller font size, computed based on the `font_size` field.
25975 # The `font_size` itself is not affected by changes in this field.
25976 "strikethrough": True or False, # Whether or not the text is struck through.
25977 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
25980 # `bold`, the `weighted_font_family` is applied first, then `bold`.
25987 "fontFamily": "A String", # The font family of the text.
25989 # The font family can be any font from the Font menu in Docs or from
25990 # [Google Fonts] (https://fonts.google.com/). If the font name is
25991 # unrecognized, the text is rendered in `Arial`.
25992 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
25993 … # `100` between `100` and `900`, inclusive. This range corresponds to the
25994 # numerical values described in the CSS 2.1 Specification,
25998 # The default value is `400` ("normal").
26000 … # The font weight makes up just one component of the rendered font weight.
26001 … # The rendered weight is determined by a combination of the `weight` and the
26004 … # * If the text is bold and the weight is less than `400`, the rendered
26006 … # * If the text is bold and the weight is greater than or equal to `400` but
26007 # is less than `700`, the rendered weight is `700`.
26008 … # * If the weight is greater than or equal to `700`, the rendered weight is
26009 # equal to the weight.
26010 … # * If the text is not bold, the rendered weight is equal to the weight.
26012 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
26013 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
26014 "magnitude": 3.14, # The magnitude.
26015 "unit": "A String", # The units for magnitude.
26017 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
26018 # or transparent, depending on the `color` field.
26021 "rgbColor": { # An RGB color. # The RGB color value.
26022 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
26023 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
26024 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
26028 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
26031 … # Changing the link in an update request causes some other changes to the
26032 # text style of the range:
26034 … # * When setting a link, the text foreground color will be updated to the
26035 … # default link color and the text will be underlined. If these fields are
26036 … # modified in the same request, those values will be used instead of the
26039 # also update the existing link to point to the new URL.
26042 # will separate the newline character(s) into their own text runs. The
26043 … # link will be applied separately to the runs before and after the newline.
26044 # * Removing a link will update the text style of the range to match the
26045 … # style of the preceding text (or the default text styles if the preceding
26046 … # text is another link) unless different styles are being set in the same
26048 "headingId": "A String", # The ID of a heading in this document.
26050 "bookmarkId": "A String", # The ID of a bookmark in this document.
26052 "underline": True or False, # Whether or not the text is underlined.
26053 "bold": True or False, # Whether or not the text is rendered as bold.
26055 …"suggestedInsertionIds": [ # The suggested insertion IDs. A ColumnBreak may have multiple insertio…
26060 …"suggestedTextStyleChanges": { # The suggested text style changes to this ColumnBreak, keyed by su…
26063 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
26064 # the changes made in this suggestion. This can be used along with the
26069 # text style's parent depends on where the text style is defined:
26071 # * The TextStyle of text in a Paragraph
26072 # inherits from the paragraph's corresponding named style type.
26073 # * The TextStyle on a named style
26074 # inherits from the normal text named style.
26075 # * The TextStyle of the normal text named style inherits
26076 # from the default text style in the Docs editor.
26077 # * The TextStyle on a Paragraph element
26078 … # that is contained in a table may inherit its text style from the table
26081 … # If the text style does not inherit from a parent, unsetting fields will
26082 … # revert the style to a value matching the defaults in the Docs editor.
26083 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
26084 # or transparent, depending on the `color` field.
26087 "rgbColor": { # An RGB color. # The RGB color value.
26088 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
26089 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
26090 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
26094 "italic": True or False, # Whether or not the text is italicized.
26095 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
26098 … # rendered in a smaller font size, computed based on the `font_size` field.
26099 # The `font_size` itself is not affected by changes in this field.
26100 … "strikethrough": True or False, # Whether or not the text is struck through.
26101 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
26104 # `bold`, the `weighted_font_family` is applied first, then `bold`.
26111 "fontFamily": "A String", # The font family of the text.
26113 … # The font family can be any font from the Font menu in Docs or from
26114 # [Google Fonts] (https://fonts.google.com/). If the font name is
26115 # unrecognized, the text is rendered in `Arial`.
26116 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
26117 … # `100` between `100` and `900`, inclusive. This range corresponds to the
26118 # numerical values described in the CSS 2.1 Specification,
26122 # The default value is `400` ("normal").
26124 … # The font weight makes up just one component of the rendered font weight.
26125 … # The rendered weight is determined by a combination of the `weight` and the
26128 … # * If the text is bold and the weight is less than `400`, the rendered
26130 … # * If the text is bold and the weight is greater than or equal to `400` but
26131 # is less than `700`, the rendered weight is `700`.
26132 … # * If the weight is greater than or equal to `700`, the rendered weight is
26133 # equal to the weight.
26134 … # * If the text is not bold, the rendered weight is equal to the weight.
26136 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
26137 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
26138 "magnitude": 3.14, # The magnitude.
26139 "unit": "A String", # The units for magnitude.
26141 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
26142 # or transparent, depending on the `color` field.
26145 "rgbColor": { # An RGB color. # The RGB color value.
26146 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
26147 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
26148 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
26152 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
26155 … # Changing the link in an update request causes some other changes to the
26156 # text style of the range:
26158 … # * When setting a link, the text foreground color will be updated to the
26159 … # default link color and the text will be underlined. If these fields are
26160 … # modified in the same request, those values will be used instead of the
26163 # also update the existing link to point to the new URL.
26166 … # will separate the newline character(s) into their own text runs. The
26167 … # link will be applied separately to the runs before and after the newline.
26168 … # * Removing a link will update the text style of the range to match the
26169 … # style of the preceding text (or the default text styles if the preceding
26170 … # text is another link) unless different styles are being set in the same
26172 "headingId": "A String", # The ID of a heading in this document.
26174 "bookmarkId": "A String", # The ID of a bookmark in this document.
26176 "underline": True or False, # Whether or not the text is underlined.
26177 "bold": True or False, # Whether or not the text is rendered as bold.
26179 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
26195 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
26200 … "startIndex": 42, # The zero-based start index of this paragraph element, in UTF-16 code units.
26202 # page break. A page break makes the subsequent text start at the top of the
26204 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Page…
26206 … # Similar to text content, like text runs and footnote references, the text
26207 … # style of a page break can affect content layout as well as the styling of
26211 # text style's parent depends on where the text style is defined:
26213 # * The TextStyle of text in a Paragraph
26214 # inherits from the paragraph's corresponding named style type.
26215 # * The TextStyle on a named style
26216 # inherits from the normal text named style.
26217 # * The TextStyle of the normal text named style inherits
26218 # from the default text style in the Docs editor.
26219 # * The TextStyle on a Paragraph element
26220 … # that is contained in a table may inherit its text style from the table
26223 # If the text style does not inherit from a parent, unsetting fields will
26224 # revert the style to a value matching the defaults in the Docs editor.
26225 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
26226 # or transparent, depending on the `color` field.
26229 "rgbColor": { # An RGB color. # The RGB color value.
26230 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
26231 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
26232 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
26236 "italic": True or False, # Whether or not the text is italicized.
26237 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
26240 … # rendered in a smaller font size, computed based on the `font_size` field.
26241 # The `font_size` itself is not affected by changes in this field.
26242 "strikethrough": True or False, # Whether or not the text is struck through.
26243 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
26246 # `bold`, the `weighted_font_family` is applied first, then `bold`.
26253 "fontFamily": "A String", # The font family of the text.
26255 # The font family can be any font from the Font menu in Docs or from
26256 # [Google Fonts] (https://fonts.google.com/). If the font name is
26257 # unrecognized, the text is rendered in `Arial`.
26258 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
26259 … # `100` between `100` and `900`, inclusive. This range corresponds to the
26260 # numerical values described in the CSS 2.1 Specification,
26264 # The default value is `400` ("normal").
26266 … # The font weight makes up just one component of the rendered font weight.
26267 … # The rendered weight is determined by a combination of the `weight` and the
26270 … # * If the text is bold and the weight is less than `400`, the rendered
26272 … # * If the text is bold and the weight is greater than or equal to `400` but
26273 # is less than `700`, the rendered weight is `700`.
26274 … # * If the weight is greater than or equal to `700`, the rendered weight is
26275 # equal to the weight.
26276 … # * If the text is not bold, the rendered weight is equal to the weight.
26278 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
26279 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
26280 "magnitude": 3.14, # The magnitude.
26281 "unit": "A String", # The units for magnitude.
26283 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
26284 # or transparent, depending on the `color` field.
26287 "rgbColor": { # An RGB color. # The RGB color value.
26288 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
26289 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
26290 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
26294 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
26297 … # Changing the link in an update request causes some other changes to the
26298 # text style of the range:
26300 … # * When setting a link, the text foreground color will be updated to the
26301 … # default link color and the text will be underlined. If these fields are
26302 … # modified in the same request, those values will be used instead of the
26305 # also update the existing link to point to the new URL.
26308 # will separate the newline character(s) into their own text runs. The
26309 … # link will be applied separately to the runs before and after the newline.
26310 # * Removing a link will update the text style of the range to match the
26311 … # style of the preceding text (or the default text styles if the preceding
26312 … # text is another link) unless different styles are being set in the same
26314 "headingId": "A String", # The ID of a heading in this document.
26316 "bookmarkId": "A String", # The ID of a bookmark in this document.
26318 "underline": True or False, # Whether or not the text is underlined.
26319 "bold": True or False, # Whether or not the text is rendered as bold.
26321 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
26325 …"suggestedTextStyleChanges": { # The suggested text style changes to this PageBreak, keyed by sugg…
26327 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
26328 # the changes made in this suggestion. This can be used along with the
26333 # text style's parent depends on where the text style is defined:
26335 # * The TextStyle of text in a Paragraph
26336 # inherits from the paragraph's corresponding named style type.
26337 # * The TextStyle on a named style
26338 # inherits from the normal text named style.
26339 # * The TextStyle of the normal text named style inherits
26340 # from the default text style in the Docs editor.
26341 # * The TextStyle on a Paragraph element
26342 … # that is contained in a table may inherit its text style from the table
26345 … # If the text style does not inherit from a parent, unsetting fields will
26346 … # revert the style to a value matching the defaults in the Docs editor.
26347 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
26348 # or transparent, depending on the `color` field.
26351 "rgbColor": { # An RGB color. # The RGB color value.
26352 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
26353 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
26354 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
26358 "italic": True or False, # Whether or not the text is italicized.
26359 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
26362 … # rendered in a smaller font size, computed based on the `font_size` field.
26363 # The `font_size` itself is not affected by changes in this field.
26364 … "strikethrough": True or False, # Whether or not the text is struck through.
26365 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
26368 # `bold`, the `weighted_font_family` is applied first, then `bold`.
26375 "fontFamily": "A String", # The font family of the text.
26377 … # The font family can be any font from the Font menu in Docs or from
26378 # [Google Fonts] (https://fonts.google.com/). If the font name is
26379 # unrecognized, the text is rendered in `Arial`.
26380 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
26381 … # `100` between `100` and `900`, inclusive. This range corresponds to the
26382 # numerical values described in the CSS 2.1 Specification,
26386 # The default value is `400` ("normal").
26388 … # The font weight makes up just one component of the rendered font weight.
26389 … # The rendered weight is determined by a combination of the `weight` and the
26392 … # * If the text is bold and the weight is less than `400`, the rendered
26394 … # * If the text is bold and the weight is greater than or equal to `400` but
26395 # is less than `700`, the rendered weight is `700`.
26396 … # * If the weight is greater than or equal to `700`, the rendered weight is
26397 # equal to the weight.
26398 … # * If the text is not bold, the rendered weight is equal to the weight.
26400 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
26401 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
26402 "magnitude": 3.14, # The magnitude.
26403 "unit": "A String", # The units for magnitude.
26405 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
26406 # or transparent, depending on the `color` field.
26409 "rgbColor": { # An RGB color. # The RGB color value.
26410 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
26411 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
26412 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
26416 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
26419 … # Changing the link in an update request causes some other changes to the
26420 # text style of the range:
26422 … # * When setting a link, the text foreground color will be updated to the
26423 … # default link color and the text will be underlined. If these fields are
26424 … # modified in the same request, those values will be used instead of the
26427 # also update the existing link to point to the new URL.
26430 … # will separate the newline character(s) into their own text runs. The
26431 … # link will be applied separately to the runs before and after the newline.
26432 … # * Removing a link will update the text style of the range to match the
26433 … # style of the preceding text (or the default text styles if the preceding
26434 … # text is another link) unless different styles are being set in the same
26436 "headingId": "A String", # The ID of a heading in this document.
26438 "bookmarkId": "A String", # The ID of a bookmark in this document.
26440 "underline": True or False, # Whether or not the text is underlined.
26441 "bold": True or False, # Whether or not the text is rendered as bold.
26443 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
26459 "suggestedInsertionIds": [ # The suggested insertion IDs. A PageBreak
26467 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Hori…
26469 … # Similar to text content, like text runs and footnote references, the text
26470 … # style of a horizontal rule can affect content layout as well as the styling
26474 # text style's parent depends on where the text style is defined:
26476 # * The TextStyle of text in a Paragraph
26477 # inherits from the paragraph's corresponding named style type.
26478 # * The TextStyle on a named style
26479 # inherits from the normal text named style.
26480 # * The TextStyle of the normal text named style inherits
26481 # from the default text style in the Docs editor.
26482 # * The TextStyle on a Paragraph element
26483 … # that is contained in a table may inherit its text style from the table
26486 # If the text style does not inherit from a parent, unsetting fields will
26487 # revert the style to a value matching the defaults in the Docs editor.
26488 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
26489 # or transparent, depending on the `color` field.
26492 "rgbColor": { # An RGB color. # The RGB color value.
26493 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
26494 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
26495 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
26499 "italic": True or False, # Whether or not the text is italicized.
26500 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
26503 … # rendered in a smaller font size, computed based on the `font_size` field.
26504 # The `font_size` itself is not affected by changes in this field.
26505 "strikethrough": True or False, # Whether or not the text is struck through.
26506 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
26509 # `bold`, the `weighted_font_family` is applied first, then `bold`.
26516 "fontFamily": "A String", # The font family of the text.
26518 # The font family can be any font from the Font menu in Docs or from
26519 # [Google Fonts] (https://fonts.google.com/). If the font name is
26520 # unrecognized, the text is rendered in `Arial`.
26521 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
26522 … # `100` between `100` and `900`, inclusive. This range corresponds to the
26523 # numerical values described in the CSS 2.1 Specification,
26527 # The default value is `400` ("normal").
26529 … # The font weight makes up just one component of the rendered font weight.
26530 … # The rendered weight is determined by a combination of the `weight` and the
26533 … # * If the text is bold and the weight is less than `400`, the rendered
26535 … # * If the text is bold and the weight is greater than or equal to `400` but
26536 # is less than `700`, the rendered weight is `700`.
26537 … # * If the weight is greater than or equal to `700`, the rendered weight is
26538 # equal to the weight.
26539 … # * If the text is not bold, the rendered weight is equal to the weight.
26541 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
26542 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
26543 "magnitude": 3.14, # The magnitude.
26544 "unit": "A String", # The units for magnitude.
26546 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
26547 # or transparent, depending on the `color` field.
26550 "rgbColor": { # An RGB color. # The RGB color value.
26551 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
26552 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
26553 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
26557 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
26560 … # Changing the link in an update request causes some other changes to the
26561 # text style of the range:
26563 … # * When setting a link, the text foreground color will be updated to the
26564 … # default link color and the text will be underlined. If these fields are
26565 … # modified in the same request, those values will be used instead of the
26568 # also update the existing link to point to the new URL.
26571 # will separate the newline character(s) into their own text runs. The
26572 … # link will be applied separately to the runs before and after the newline.
26573 # * Removing a link will update the text style of the range to match the
26574 … # style of the preceding text (or the default text styles if the preceding
26575 … # text is another link) unless different styles are being set in the same
26577 "headingId": "A String", # The ID of a heading in this document.
26579 "bookmarkId": "A String", # The ID of a bookmark in this document.
26581 "underline": True or False, # Whether or not the text is underlined.
26582 "bold": True or False, # Whether or not the text is rendered as bold.
26584 …"suggestedInsertionIds": [ # The suggested insertion IDs. A HorizontalRule may have multiple inser…
26589 … "suggestedTextStyleChanges": { # The suggested text style changes to this HorizontalRule, keyed by
26592 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
26593 # the changes made in this suggestion. This can be used along with the
26598 # text style's parent depends on where the text style is defined:
26600 # * The TextStyle of text in a Paragraph
26601 # inherits from the paragraph's corresponding named style type.
26602 # * The TextStyle on a named style
26603 # inherits from the normal text named style.
26604 # * The TextStyle of the normal text named style inherits
26605 # from the default text style in the Docs editor.
26606 # * The TextStyle on a Paragraph element
26607 … # that is contained in a table may inherit its text style from the table
26610 … # If the text style does not inherit from a parent, unsetting fields will
26611 … # revert the style to a value matching the defaults in the Docs editor.
26612 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
26613 # or transparent, depending on the `color` field.
26616 "rgbColor": { # An RGB color. # The RGB color value.
26617 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
26618 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
26619 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
26623 "italic": True or False, # Whether or not the text is italicized.
26624 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
26627 … # rendered in a smaller font size, computed based on the `font_size` field.
26628 # The `font_size` itself is not affected by changes in this field.
26629 … "strikethrough": True or False, # Whether or not the text is struck through.
26630 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
26633 # `bold`, the `weighted_font_family` is applied first, then `bold`.
26640 "fontFamily": "A String", # The font family of the text.
26642 … # The font family can be any font from the Font menu in Docs or from
26643 # [Google Fonts] (https://fonts.google.com/). If the font name is
26644 # unrecognized, the text is rendered in `Arial`.
26645 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
26646 … # `100` between `100` and `900`, inclusive. This range corresponds to the
26647 # numerical values described in the CSS 2.1 Specification,
26651 # The default value is `400` ("normal").
26653 … # The font weight makes up just one component of the rendered font weight.
26654 … # The rendered weight is determined by a combination of the `weight` and the
26657 … # * If the text is bold and the weight is less than `400`, the rendered
26659 … # * If the text is bold and the weight is greater than or equal to `400` but
26660 # is less than `700`, the rendered weight is `700`.
26661 … # * If the weight is greater than or equal to `700`, the rendered weight is
26662 # equal to the weight.
26663 … # * If the text is not bold, the rendered weight is equal to the weight.
26665 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
26666 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
26667 "magnitude": 3.14, # The magnitude.
26668 "unit": "A String", # The units for magnitude.
26670 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
26671 # or transparent, depending on the `color` field.
26674 "rgbColor": { # An RGB color. # The RGB color value.
26675 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
26676 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
26677 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
26681 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
26684 … # Changing the link in an update request causes some other changes to the
26685 # text style of the range:
26687 … # * When setting a link, the text foreground color will be updated to the
26688 … # default link color and the text will be underlined. If these fields are
26689 … # modified in the same request, those values will be used instead of the
26692 # also update the existing link to point to the new URL.
26695 … # will separate the newline character(s) into their own text runs. The
26696 … # link will be applied separately to the runs before and after the newline.
26697 … # * Removing a link will update the text style of the range to match the
26698 … # style of the preceding text (or the default text styles if the preceding
26699 … # text is another link) unless different styles are being set in the same
26701 "headingId": "A String", # The ID of a heading in this document.
26703 "bookmarkId": "A String", # The ID of a bookmark in this document.
26705 "underline": True or False, # Whether or not the text is underlined.
26706 "bold": True or False, # Whether or not the text is rendered as bold.
26708 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
26724 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
26730 # run of text that all has the same styling.
26731 "content": "A String", # The text of this run.
26733 # Any non-text elements in the run are replaced with the Unicode character
26735 … "textStyle": { # Represents the styling that can be applied to text. # The text style of this run.
26738 # text style's parent depends on where the text style is defined:
26740 # * The TextStyle of text in a Paragraph
26741 # inherits from the paragraph's corresponding named style type.
26742 # * The TextStyle on a named style
26743 # inherits from the normal text named style.
26744 # * The TextStyle of the normal text named style inherits
26745 # from the default text style in the Docs editor.
26746 # * The TextStyle on a Paragraph element
26747 … # that is contained in a table may inherit its text style from the table
26750 # If the text style does not inherit from a parent, unsetting fields will
26751 # revert the style to a value matching the defaults in the Docs editor.
26752 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
26753 # or transparent, depending on the `color` field.
26756 "rgbColor": { # An RGB color. # The RGB color value.
26757 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
26758 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
26759 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
26763 "italic": True or False, # Whether or not the text is italicized.
26764 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
26767 … # rendered in a smaller font size, computed based on the `font_size` field.
26768 # The `font_size` itself is not affected by changes in this field.
26769 "strikethrough": True or False, # Whether or not the text is struck through.
26770 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
26773 # `bold`, the `weighted_font_family` is applied first, then `bold`.
26780 "fontFamily": "A String", # The font family of the text.
26782 # The font family can be any font from the Font menu in Docs or from
26783 # [Google Fonts] (https://fonts.google.com/). If the font name is
26784 # unrecognized, the text is rendered in `Arial`.
26785 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
26786 … # `100` between `100` and `900`, inclusive. This range corresponds to the
26787 # numerical values described in the CSS 2.1 Specification,
26791 # The default value is `400` ("normal").
26793 … # The font weight makes up just one component of the rendered font weight.
26794 … # The rendered weight is determined by a combination of the `weight` and the
26797 … # * If the text is bold and the weight is less than `400`, the rendered
26799 … # * If the text is bold and the weight is greater than or equal to `400` but
26800 # is less than `700`, the rendered weight is `700`.
26801 … # * If the weight is greater than or equal to `700`, the rendered weight is
26802 # equal to the weight.
26803 … # * If the text is not bold, the rendered weight is equal to the weight.
26805 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
26806 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
26807 "magnitude": 3.14, # The magnitude.
26808 "unit": "A String", # The units for magnitude.
26810 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
26811 # or transparent, depending on the `color` field.
26814 "rgbColor": { # An RGB color. # The RGB color value.
26815 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
26816 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
26817 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
26821 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
26824 … # Changing the link in an update request causes some other changes to the
26825 # text style of the range:
26827 … # * When setting a link, the text foreground color will be updated to the
26828 … # default link color and the text will be underlined. If these fields are
26829 … # modified in the same request, those values will be used instead of the
26832 # also update the existing link to point to the new URL.
26835 # will separate the newline character(s) into their own text runs. The
26836 … # link will be applied separately to the runs before and after the newline.
26837 # * Removing a link will update the text style of the range to match the
26838 … # style of the preceding text (or the default text styles if the preceding
26839 … # text is another link) unless different styles are being set in the same
26841 "headingId": "A String", # The ID of a heading in this document.
26843 "bookmarkId": "A String", # The ID of a bookmark in this document.
26845 "underline": True or False, # Whether or not the text is underlined.
26846 "bold": True or False, # Whether or not the text is rendered as bold.
26848 "suggestedInsertionIds": [ # The suggested insertion IDs. A TextRun may
26853 …"suggestedTextStyleChanges": { # The suggested text style changes to this run, keyed by suggestion…
26855 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
26856 # the changes made in this suggestion. This can be used along with the
26861 # text style's parent depends on where the text style is defined:
26863 # * The TextStyle of text in a Paragraph
26864 # inherits from the paragraph's corresponding named style type.
26865 # * The TextStyle on a named style
26866 # inherits from the normal text named style.
26867 # * The TextStyle of the normal text named style inherits
26868 # from the default text style in the Docs editor.
26869 # * The TextStyle on a Paragraph element
26870 … # that is contained in a table may inherit its text style from the table
26873 … # If the text style does not inherit from a parent, unsetting fields will
26874 … # revert the style to a value matching the defaults in the Docs editor.
26875 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
26876 # or transparent, depending on the `color` field.
26879 "rgbColor": { # An RGB color. # The RGB color value.
26880 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
26881 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
26882 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
26886 "italic": True or False, # Whether or not the text is italicized.
26887 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
26890 … # rendered in a smaller font size, computed based on the `font_size` field.
26891 # The `font_size` itself is not affected by changes in this field.
26892 … "strikethrough": True or False, # Whether or not the text is struck through.
26893 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
26896 # `bold`, the `weighted_font_family` is applied first, then `bold`.
26903 "fontFamily": "A String", # The font family of the text.
26905 … # The font family can be any font from the Font menu in Docs or from
26906 # [Google Fonts] (https://fonts.google.com/). If the font name is
26907 # unrecognized, the text is rendered in `Arial`.
26908 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
26909 … # `100` between `100` and `900`, inclusive. This range corresponds to the
26910 # numerical values described in the CSS 2.1 Specification,
26914 # The default value is `400` ("normal").
26916 … # The font weight makes up just one component of the rendered font weight.
26917 … # The rendered weight is determined by a combination of the `weight` and the
26920 … # * If the text is bold and the weight is less than `400`, the rendered
26922 … # * If the text is bold and the weight is greater than or equal to `400` but
26923 # is less than `700`, the rendered weight is `700`.
26924 … # * If the weight is greater than or equal to `700`, the rendered weight is
26925 # equal to the weight.
26926 … # * If the text is not bold, the rendered weight is equal to the weight.
26928 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
26929 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
26930 "magnitude": 3.14, # The magnitude.
26931 "unit": "A String", # The units for magnitude.
26933 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
26934 # or transparent, depending on the `color` field.
26937 "rgbColor": { # An RGB color. # The RGB color value.
26938 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
26939 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
26940 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
26944 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
26947 … # Changing the link in an update request causes some other changes to the
26948 # text style of the range:
26950 … # * When setting a link, the text foreground color will be updated to the
26951 … # default link color and the text will be underlined. If these fields are
26952 … # modified in the same request, those values will be used instead of the
26955 # also update the existing link to point to the new URL.
26958 … # will separate the newline character(s) into their own text runs. The
26959 … # link will be applied separately to the runs before and after the newline.
26960 … # * Removing a link will update the text style of the range to match the
26961 … # style of the preceding text (or the default text styles if the preceding
26962 … # text is another link) unless different styles are being set in the same
26964 "headingId": "A String", # The ID of a heading in this document.
26966 "bookmarkId": "A String", # The ID of a bookmark in this document.
26968 "underline": True or False, # Whether or not the text is underlined.
26969 "bold": True or False, # Whether or not the text is rendered as bold.
26971 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
26987 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
26993 # spot in the text that is dynamically replaced with content that can change
26995 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Auto…
26998 # text style's parent depends on where the text style is defined:
27000 # * The TextStyle of text in a Paragraph
27001 # inherits from the paragraph's corresponding named style type.
27002 # * The TextStyle on a named style
27003 # inherits from the normal text named style.
27004 # * The TextStyle of the normal text named style inherits
27005 # from the default text style in the Docs editor.
27006 # * The TextStyle on a Paragraph element
27007 … # that is contained in a table may inherit its text style from the table
27010 # If the text style does not inherit from a parent, unsetting fields will
27011 # revert the style to a value matching the defaults in the Docs editor.
27012 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
27013 # or transparent, depending on the `color` field.
27016 "rgbColor": { # An RGB color. # The RGB color value.
27017 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
27018 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
27019 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
27023 "italic": True or False, # Whether or not the text is italicized.
27024 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
27027 … # rendered in a smaller font size, computed based on the `font_size` field.
27028 # The `font_size` itself is not affected by changes in this field.
27029 "strikethrough": True or False, # Whether or not the text is struck through.
27030 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
27033 # `bold`, the `weighted_font_family` is applied first, then `bold`.
27040 "fontFamily": "A String", # The font family of the text.
27042 # The font family can be any font from the Font menu in Docs or from
27043 # [Google Fonts] (https://fonts.google.com/). If the font name is
27044 # unrecognized, the text is rendered in `Arial`.
27045 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
27046 … # `100` between `100` and `900`, inclusive. This range corresponds to the
27047 # numerical values described in the CSS 2.1 Specification,
27051 # The default value is `400` ("normal").
27053 … # The font weight makes up just one component of the rendered font weight.
27054 … # The rendered weight is determined by a combination of the `weight` and the
27057 … # * If the text is bold and the weight is less than `400`, the rendered
27059 … # * If the text is bold and the weight is greater than or equal to `400` but
27060 # is less than `700`, the rendered weight is `700`.
27061 … # * If the weight is greater than or equal to `700`, the rendered weight is
27062 # equal to the weight.
27063 … # * If the text is not bold, the rendered weight is equal to the weight.
27065 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
27066 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
27067 "magnitude": 3.14, # The magnitude.
27068 "unit": "A String", # The units for magnitude.
27070 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
27071 # or transparent, depending on the `color` field.
27074 "rgbColor": { # An RGB color. # The RGB color value.
27075 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
27076 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
27077 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
27081 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
27084 … # Changing the link in an update request causes some other changes to the
27085 # text style of the range:
27087 … # * When setting a link, the text foreground color will be updated to the
27088 … # default link color and the text will be underlined. If these fields are
27089 … # modified in the same request, those values will be used instead of the
27092 # also update the existing link to point to the new URL.
27095 # will separate the newline character(s) into their own text runs. The
27096 … # link will be applied separately to the runs before and after the newline.
27097 # * Removing a link will update the text style of the range to match the
27098 … # style of the preceding text (or the default text styles if the preceding
27099 … # text is another link) unless different styles are being set in the same
27101 "headingId": "A String", # The ID of a heading in this document.
27103 "bookmarkId": "A String", # The ID of a bookmark in this document.
27105 "underline": True or False, # Whether or not the text is underlined.
27106 "bold": True or False, # Whether or not the text is rendered as bold.
27108 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
27112 …"suggestedTextStyleChanges": { # The suggested text style changes to this AutoText, keyed by sugge…
27114 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
27115 # the changes made in this suggestion. This can be used along with the
27120 # text style's parent depends on where the text style is defined:
27122 # * The TextStyle of text in a Paragraph
27123 # inherits from the paragraph's corresponding named style type.
27124 # * The TextStyle on a named style
27125 # inherits from the normal text named style.
27126 # * The TextStyle of the normal text named style inherits
27127 # from the default text style in the Docs editor.
27128 # * The TextStyle on a Paragraph element
27129 … # that is contained in a table may inherit its text style from the table
27132 … # If the text style does not inherit from a parent, unsetting fields will
27133 … # revert the style to a value matching the defaults in the Docs editor.
27134 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
27135 # or transparent, depending on the `color` field.
27138 "rgbColor": { # An RGB color. # The RGB color value.
27139 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
27140 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
27141 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
27145 "italic": True or False, # Whether or not the text is italicized.
27146 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
27149 … # rendered in a smaller font size, computed based on the `font_size` field.
27150 # The `font_size` itself is not affected by changes in this field.
27151 … "strikethrough": True or False, # Whether or not the text is struck through.
27152 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
27155 # `bold`, the `weighted_font_family` is applied first, then `bold`.
27162 "fontFamily": "A String", # The font family of the text.
27164 … # The font family can be any font from the Font menu in Docs or from
27165 # [Google Fonts] (https://fonts.google.com/). If the font name is
27166 # unrecognized, the text is rendered in `Arial`.
27167 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
27168 … # `100` between `100` and `900`, inclusive. This range corresponds to the
27169 # numerical values described in the CSS 2.1 Specification,
27173 # The default value is `400` ("normal").
27175 … # The font weight makes up just one component of the rendered font weight.
27176 … # The rendered weight is determined by a combination of the `weight` and the
27179 … # * If the text is bold and the weight is less than `400`, the rendered
27181 … # * If the text is bold and the weight is greater than or equal to `400` but
27182 # is less than `700`, the rendered weight is `700`.
27183 … # * If the weight is greater than or equal to `700`, the rendered weight is
27184 # equal to the weight.
27185 … # * If the text is not bold, the rendered weight is equal to the weight.
27187 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
27188 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
27189 "magnitude": 3.14, # The magnitude.
27190 "unit": "A String", # The units for magnitude.
27192 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
27193 # or transparent, depending on the `color` field.
27196 "rgbColor": { # An RGB color. # The RGB color value.
27197 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
27198 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
27199 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
27203 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
27206 … # Changing the link in an update request causes some other changes to the
27207 # text style of the range:
27209 … # * When setting a link, the text foreground color will be updated to the
27210 … # default link color and the text will be underlined. If these fields are
27211 … # modified in the same request, those values will be used instead of the
27214 # also update the existing link to point to the new URL.
27217 … # will separate the newline character(s) into their own text runs. The
27218 … # link will be applied separately to the runs before and after the newline.
27219 … # * Removing a link will update the text style of the range to match the
27220 … # style of the preceding text (or the default text styles if the preceding
27221 … # text is another link) unless different styles are being set in the same
27223 "headingId": "A String", # The ID of a heading in this document.
27225 "bookmarkId": "A String", # The ID of a bookmark in this document.
27227 "underline": True or False, # Whether or not the text is underlined.
27228 "bold": True or False, # Whether or not the text is rendered as bold.
27230 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
27246 "type": "A String", # The type of this auto text.
27247 "suggestedInsertionIds": [ # The suggested insertion IDs. An AutoText
27255 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Inli…
27257 … # Similar to text content, like text runs and footnote references, the text
27258 … # style of an inline object element can affect content layout as well as the
27262 # text style's parent depends on where the text style is defined:
27264 # * The TextStyle of text in a Paragraph
27265 # inherits from the paragraph's corresponding named style type.
27266 # * The TextStyle on a named style
27267 # inherits from the normal text named style.
27268 # * The TextStyle of the normal text named style inherits
27269 # from the default text style in the Docs editor.
27270 # * The TextStyle on a Paragraph element
27271 … # that is contained in a table may inherit its text style from the table
27274 # If the text style does not inherit from a parent, unsetting fields will
27275 # revert the style to a value matching the defaults in the Docs editor.
27276 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
27277 # or transparent, depending on the `color` field.
27280 "rgbColor": { # An RGB color. # The RGB color value.
27281 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
27282 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
27283 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
27287 "italic": True or False, # Whether or not the text is italicized.
27288 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
27291 … # rendered in a smaller font size, computed based on the `font_size` field.
27292 # The `font_size` itself is not affected by changes in this field.
27293 "strikethrough": True or False, # Whether or not the text is struck through.
27294 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
27297 # `bold`, the `weighted_font_family` is applied first, then `bold`.
27304 "fontFamily": "A String", # The font family of the text.
27306 # The font family can be any font from the Font menu in Docs or from
27307 # [Google Fonts] (https://fonts.google.com/). If the font name is
27308 # unrecognized, the text is rendered in `Arial`.
27309 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
27310 … # `100` between `100` and `900`, inclusive. This range corresponds to the
27311 # numerical values described in the CSS 2.1 Specification,
27315 # The default value is `400` ("normal").
27317 … # The font weight makes up just one component of the rendered font weight.
27318 … # The rendered weight is determined by a combination of the `weight` and the
27321 … # * If the text is bold and the weight is less than `400`, the rendered
27323 … # * If the text is bold and the weight is greater than or equal to `400` but
27324 # is less than `700`, the rendered weight is `700`.
27325 … # * If the weight is greater than or equal to `700`, the rendered weight is
27326 # equal to the weight.
27327 … # * If the text is not bold, the rendered weight is equal to the weight.
27329 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
27330 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
27331 "magnitude": 3.14, # The magnitude.
27332 "unit": "A String", # The units for magnitude.
27334 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
27335 # or transparent, depending on the `color` field.
27338 "rgbColor": { # An RGB color. # The RGB color value.
27339 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
27340 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
27341 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
27345 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
27348 … # Changing the link in an update request causes some other changes to the
27349 # text style of the range:
27351 … # * When setting a link, the text foreground color will be updated to the
27352 … # default link color and the text will be underlined. If these fields are
27353 … # modified in the same request, those values will be used instead of the
27356 # also update the existing link to point to the new URL.
27359 # will separate the newline character(s) into their own text runs. The
27360 … # link will be applied separately to the runs before and after the newline.
27361 # * Removing a link will update the text style of the range to match the
27362 … # style of the preceding text (or the default text styles if the preceding
27363 … # text is another link) unless different styles are being set in the same
27365 "headingId": "A String", # The ID of a heading in this document.
27367 "bookmarkId": "A String", # The ID of a bookmark in this document.
27369 "underline": True or False, # Whether or not the text is underlined.
27370 "bold": True or False, # Whether or not the text is rendered as bold.
27372 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
27376 …"suggestedTextStyleChanges": { # The suggested text style changes to this InlineObject, keyed by s…
27379 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
27380 # the changes made in this suggestion. This can be used along with the
27385 # text style's parent depends on where the text style is defined:
27387 # * The TextStyle of text in a Paragraph
27388 # inherits from the paragraph's corresponding named style type.
27389 # * The TextStyle on a named style
27390 # inherits from the normal text named style.
27391 # * The TextStyle of the normal text named style inherits
27392 # from the default text style in the Docs editor.
27393 # * The TextStyle on a Paragraph element
27394 … # that is contained in a table may inherit its text style from the table
27397 … # If the text style does not inherit from a parent, unsetting fields will
27398 … # revert the style to a value matching the defaults in the Docs editor.
27399 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
27400 # or transparent, depending on the `color` field.
27403 "rgbColor": { # An RGB color. # The RGB color value.
27404 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
27405 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
27406 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
27410 "italic": True or False, # Whether or not the text is italicized.
27411 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
27414 … # rendered in a smaller font size, computed based on the `font_size` field.
27415 # The `font_size` itself is not affected by changes in this field.
27416 … "strikethrough": True or False, # Whether or not the text is struck through.
27417 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
27420 # `bold`, the `weighted_font_family` is applied first, then `bold`.
27427 "fontFamily": "A String", # The font family of the text.
27429 … # The font family can be any font from the Font menu in Docs or from
27430 # [Google Fonts] (https://fonts.google.com/). If the font name is
27431 # unrecognized, the text is rendered in `Arial`.
27432 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
27433 … # `100` between `100` and `900`, inclusive. This range corresponds to the
27434 # numerical values described in the CSS 2.1 Specification,
27438 # The default value is `400` ("normal").
27440 … # The font weight makes up just one component of the rendered font weight.
27441 … # The rendered weight is determined by a combination of the `weight` and the
27444 … # * If the text is bold and the weight is less than `400`, the rendered
27446 … # * If the text is bold and the weight is greater than or equal to `400` but
27447 # is less than `700`, the rendered weight is `700`.
27448 … # * If the weight is greater than or equal to `700`, the rendered weight is
27449 # equal to the weight.
27450 … # * If the text is not bold, the rendered weight is equal to the weight.
27452 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
27453 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
27454 "magnitude": 3.14, # The magnitude.
27455 "unit": "A String", # The units for magnitude.
27457 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
27458 # or transparent, depending on the `color` field.
27461 "rgbColor": { # An RGB color. # The RGB color value.
27462 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
27463 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
27464 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
27468 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
27471 … # Changing the link in an update request causes some other changes to the
27472 # text style of the range:
27474 … # * When setting a link, the text foreground color will be updated to the
27475 … # default link color and the text will be underlined. If these fields are
27476 … # modified in the same request, those values will be used instead of the
27479 # also update the existing link to point to the new URL.
27482 … # will separate the newline character(s) into their own text runs. The
27483 … # link will be applied separately to the runs before and after the newline.
27484 … # * Removing a link will update the text style of the range to match the
27485 … # style of the preceding text (or the default text styles if the preceding
27486 … # text is another link) unless different styles are being set in the same
27488 "headingId": "A String", # The ID of a heading in this document.
27490 "bookmarkId": "A String", # The ID of a bookmark in this document.
27492 "underline": True or False, # Whether or not the text is underlined.
27493 "bold": True or False, # Whether or not the text is rendered as bold.
27495 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
27511 "inlineObjectId": "A String", # The ID of the InlineObject this
27513 …"suggestedInsertionIds": [ # The suggested insertion IDs. An InlineObjectElement may have multiple…
27520 … # footnote reference. A footnote reference is the inline content rendered with
27521 # a number and is used to identify the footnote.
27522 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Foot…
27525 # text style's parent depends on where the text style is defined:
27527 # * The TextStyle of text in a Paragraph
27528 # inherits from the paragraph's corresponding named style type.
27529 # * The TextStyle on a named style
27530 # inherits from the normal text named style.
27531 # * The TextStyle of the normal text named style inherits
27532 # from the default text style in the Docs editor.
27533 # * The TextStyle on a Paragraph element
27534 … # that is contained in a table may inherit its text style from the table
27537 # If the text style does not inherit from a parent, unsetting fields will
27538 # revert the style to a value matching the defaults in the Docs editor.
27539 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
27540 # or transparent, depending on the `color` field.
27543 "rgbColor": { # An RGB color. # The RGB color value.
27544 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
27545 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
27546 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
27550 "italic": True or False, # Whether or not the text is italicized.
27551 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
27554 … # rendered in a smaller font size, computed based on the `font_size` field.
27555 # The `font_size` itself is not affected by changes in this field.
27556 "strikethrough": True or False, # Whether or not the text is struck through.
27557 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
27560 # `bold`, the `weighted_font_family` is applied first, then `bold`.
27567 "fontFamily": "A String", # The font family of the text.
27569 # The font family can be any font from the Font menu in Docs or from
27570 # [Google Fonts] (https://fonts.google.com/). If the font name is
27571 # unrecognized, the text is rendered in `Arial`.
27572 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
27573 … # `100` between `100` and `900`, inclusive. This range corresponds to the
27574 # numerical values described in the CSS 2.1 Specification,
27578 # The default value is `400` ("normal").
27580 … # The font weight makes up just one component of the rendered font weight.
27581 … # The rendered weight is determined by a combination of the `weight` and the
27584 … # * If the text is bold and the weight is less than `400`, the rendered
27586 … # * If the text is bold and the weight is greater than or equal to `400` but
27587 # is less than `700`, the rendered weight is `700`.
27588 … # * If the weight is greater than or equal to `700`, the rendered weight is
27589 # equal to the weight.
27590 … # * If the text is not bold, the rendered weight is equal to the weight.
27592 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
27593 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
27594 "magnitude": 3.14, # The magnitude.
27595 "unit": "A String", # The units for magnitude.
27597 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
27598 # or transparent, depending on the `color` field.
27601 "rgbColor": { # An RGB color. # The RGB color value.
27602 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
27603 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
27604 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
27608 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
27611 … # Changing the link in an update request causes some other changes to the
27612 # text style of the range:
27614 … # * When setting a link, the text foreground color will be updated to the
27615 … # default link color and the text will be underlined. If these fields are
27616 … # modified in the same request, those values will be used instead of the
27619 # also update the existing link to point to the new URL.
27622 # will separate the newline character(s) into their own text runs. The
27623 … # link will be applied separately to the runs before and after the newline.
27624 # * Removing a link will update the text style of the range to match the
27625 … # style of the preceding text (or the default text styles if the preceding
27626 … # text is another link) unless different styles are being set in the same
27628 "headingId": "A String", # The ID of a heading in this document.
27630 "bookmarkId": "A String", # The ID of a bookmark in this document.
27632 "underline": True or False, # Whether or not the text is underlined.
27633 "bold": True or False, # Whether or not the text is rendered as bold.
27635 "footnoteNumber": "A String", # The rendered number of this footnote.
27636 …"suggestedInsertionIds": [ # The suggested insertion IDs. A FootnoteReference may have multiple in…
27641 "footnoteId": "A String", # The ID of the footnote that
27642 # contains the content of this footnote reference.
27643 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
27647 …"suggestedTextStyleChanges": { # The suggested text style changes to this FootnoteReference, keyed…
27650 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
27651 # the changes made in this suggestion. This can be used along with the
27656 # text style's parent depends on where the text style is defined:
27658 # * The TextStyle of text in a Paragraph
27659 # inherits from the paragraph's corresponding named style type.
27660 # * The TextStyle on a named style
27661 # inherits from the normal text named style.
27662 # * The TextStyle of the normal text named style inherits
27663 # from the default text style in the Docs editor.
27664 # * The TextStyle on a Paragraph element
27665 … # that is contained in a table may inherit its text style from the table
27668 … # If the text style does not inherit from a parent, unsetting fields will
27669 … # revert the style to a value matching the defaults in the Docs editor.
27670 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
27671 # or transparent, depending on the `color` field.
27674 "rgbColor": { # An RGB color. # The RGB color value.
27675 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
27676 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
27677 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
27681 "italic": True or False, # Whether or not the text is italicized.
27682 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
27685 … # rendered in a smaller font size, computed based on the `font_size` field.
27686 # The `font_size` itself is not affected by changes in this field.
27687 … "strikethrough": True or False, # Whether or not the text is struck through.
27688 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
27691 # `bold`, the `weighted_font_family` is applied first, then `bold`.
27698 "fontFamily": "A String", # The font family of the text.
27700 … # The font family can be any font from the Font menu in Docs or from
27701 # [Google Fonts] (https://fonts.google.com/). If the font name is
27702 # unrecognized, the text is rendered in `Arial`.
27703 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
27704 … # `100` between `100` and `900`, inclusive. This range corresponds to the
27705 # numerical values described in the CSS 2.1 Specification,
27709 # The default value is `400` ("normal").
27711 … # The font weight makes up just one component of the rendered font weight.
27712 … # The rendered weight is determined by a combination of the `weight` and the
27715 … # * If the text is bold and the weight is less than `400`, the rendered
27717 … # * If the text is bold and the weight is greater than or equal to `400` but
27718 # is less than `700`, the rendered weight is `700`.
27719 … # * If the weight is greater than or equal to `700`, the rendered weight is
27720 # equal to the weight.
27721 … # * If the text is not bold, the rendered weight is equal to the weight.
27723 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
27724 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
27725 "magnitude": 3.14, # The magnitude.
27726 "unit": "A String", # The units for magnitude.
27728 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
27729 # or transparent, depending on the `color` field.
27732 "rgbColor": { # An RGB color. # The RGB color value.
27733 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
27734 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
27735 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
27739 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
27742 … # Changing the link in an update request causes some other changes to the
27743 # text style of the range:
27745 … # * When setting a link, the text foreground color will be updated to the
27746 … # default link color and the text will be underlined. If these fields are
27747 … # modified in the same request, those values will be used instead of the
27750 # also update the existing link to point to the new URL.
27753 … # will separate the newline character(s) into their own text runs. The
27754 … # link will be applied separately to the runs before and after the newline.
27755 … # * Removing a link will update the text style of the range to match the
27756 … # style of the preceding text (or the default text styles if the preceding
27757 … # text is another link) unless different styles are being set in the same
27759 "headingId": "A String", # The ID of a heading in this document.
27761 "bookmarkId": "A String", # The ID of a bookmark in this document.
27763 "underline": True or False, # Whether or not the text is underlined.
27764 "bold": True or False, # Whether or not the text is rendered as bold.
27766 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
27785 …"suggestedPositionedObjectIds": { # The IDs of the positioned objects that are suggested to be att…
27788 "objectIds": [ # The object IDs.
27793 …"bullet": { # Describes the bullet of a paragraph. # The bullet for this paragraph. If not present…
27795 "nestingLevel": 42, # The nesting level of this paragraph in the list.
27796 "listId": "A String", # The ID of the list this paragraph belongs to.
27797 …"textStyle": { # Represents the styling that can be applied to text. # The paragraph specific text…
27800 # text style's parent depends on where the text style is defined:
27802 # * The TextStyle of text in a Paragraph
27803 # inherits from the paragraph's corresponding named style type.
27804 # * The TextStyle on a named style
27805 # inherits from the normal text named style.
27806 # * The TextStyle of the normal text named style inherits
27807 # from the default text style in the Docs editor.
27808 # * The TextStyle on a Paragraph element
27809 # that is contained in a table may inherit its text style from the table
27812 # If the text style does not inherit from a parent, unsetting fields will
27813 # revert the style to a value matching the defaults in the Docs editor.
27814 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
27815 # or transparent, depending on the `color` field.
27818 "rgbColor": { # An RGB color. # The RGB color value.
27819 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
27820 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
27821 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
27825 "italic": True or False, # Whether or not the text is italicized.
27826 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
27829 # rendered in a smaller font size, computed based on the `font_size` field.
27830 # The `font_size` itself is not affected by changes in this field.
27831 "strikethrough": True or False, # Whether or not the text is struck through.
27832 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
27835 # `bold`, the `weighted_font_family` is applied first, then `bold`.
27842 "fontFamily": "A String", # The font family of the text.
27844 # The font family can be any font from the Font menu in Docs or from
27845 # [Google Fonts] (https://fonts.google.com/). If the font name is
27846 # unrecognized, the text is rendered in `Arial`.
27847 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
27848 # `100` between `100` and `900`, inclusive. This range corresponds to the
27849 # numerical values described in the CSS 2.1 Specification,
27853 # The default value is `400` ("normal").
27855 # The font weight makes up just one component of the rendered font weight.
27856 … # The rendered weight is determined by a combination of the `weight` and the
27859 # * If the text is bold and the weight is less than `400`, the rendered
27861 … # * If the text is bold and the weight is greater than or equal to `400` but
27862 # is less than `700`, the rendered weight is `700`.
27863 … # * If the weight is greater than or equal to `700`, the rendered weight is
27864 # equal to the weight.
27865 # * If the text is not bold, the rendered weight is equal to the weight.
27867 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
27868 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
27869 "magnitude": 3.14, # The magnitude.
27870 "unit": "A String", # The units for magnitude.
27872 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
27873 # or transparent, depending on the `color` field.
27876 "rgbColor": { # An RGB color. # The RGB color value.
27877 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
27878 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
27879 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
27883 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
27886 # Changing the link in an update request causes some other changes to the
27887 # text style of the range:
27889 # * When setting a link, the text foreground color will be updated to the
27890 # default link color and the text will be underlined. If these fields are
27891 # modified in the same request, those values will be used instead of the
27894 # also update the existing link to point to the new URL.
27897 # will separate the newline character(s) into their own text runs. The
27898 … # link will be applied separately to the runs before and after the newline.
27899 # * Removing a link will update the text style of the range to match the
27900 # style of the preceding text (or the default text styles if the preceding
27901 # text is another link) unless different styles are being set in the same
27903 "headingId": "A String", # The ID of a heading in this document.
27905 "bookmarkId": "A String", # The ID of a bookmark in this document.
27907 "underline": True or False, # Whether or not the text is underlined.
27908 "bold": True or False, # Whether or not the text is rendered as bold.
27911 "suggestedBulletChanges": { # The suggested changes to this paragraph's bullet.
27913 … "bullet": { # Describes the bullet of a paragraph. # A Bullet that only includes the changes made
27914 # in this suggestion. This can be used along with the
27917 "nestingLevel": 42, # The nesting level of this paragraph in the list.
27918 "listId": "A String", # The ID of the list this paragraph belongs to.
27919 …"textStyle": { # Represents the styling that can be applied to text. # The paragraph specific text…
27922 # text style's parent depends on where the text style is defined:
27924 # * The TextStyle of text in a Paragraph
27925 # inherits from the paragraph's corresponding named style type.
27926 # * The TextStyle on a named style
27927 # inherits from the normal text named style.
27928 # * The TextStyle of the normal text named style inherits
27929 # from the default text style in the Docs editor.
27930 # * The TextStyle on a Paragraph element
27931 … # that is contained in a table may inherit its text style from the table
27934 # If the text style does not inherit from a parent, unsetting fields will
27935 # revert the style to a value matching the defaults in the Docs editor.
27936 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
27937 # or transparent, depending on the `color` field.
27940 "rgbColor": { # An RGB color. # The RGB color value.
27941 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
27942 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
27943 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
27947 "italic": True or False, # Whether or not the text is italicized.
27948 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
27951 … # rendered in a smaller font size, computed based on the `font_size` field.
27952 # The `font_size` itself is not affected by changes in this field.
27953 "strikethrough": True or False, # Whether or not the text is struck through.
27954 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
27957 # `bold`, the `weighted_font_family` is applied first, then `bold`.
27964 "fontFamily": "A String", # The font family of the text.
27966 # The font family can be any font from the Font menu in Docs or from
27967 # [Google Fonts] (https://fonts.google.com/). If the font name is
27968 # unrecognized, the text is rendered in `Arial`.
27969 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
27970 … # `100` between `100` and `900`, inclusive. This range corresponds to the
27971 # numerical values described in the CSS 2.1 Specification,
27975 # The default value is `400` ("normal").
27977 … # The font weight makes up just one component of the rendered font weight.
27978 … # The rendered weight is determined by a combination of the `weight` and the
27981 … # * If the text is bold and the weight is less than `400`, the rendered
27983 … # * If the text is bold and the weight is greater than or equal to `400` but
27984 # is less than `700`, the rendered weight is `700`.
27985 … # * If the weight is greater than or equal to `700`, the rendered weight is
27986 # equal to the weight.
27987 … # * If the text is not bold, the rendered weight is equal to the weight.
27989 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
27990 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
27991 "magnitude": 3.14, # The magnitude.
27992 "unit": "A String", # The units for magnitude.
27994 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
27995 # or transparent, depending on the `color` field.
27998 "rgbColor": { # An RGB color. # The RGB color value.
27999 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
28000 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
28001 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
28005 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
28008 … # Changing the link in an update request causes some other changes to the
28009 # text style of the range:
28011 … # * When setting a link, the text foreground color will be updated to the
28012 … # default link color and the text will be underlined. If these fields are
28013 … # modified in the same request, those values will be used instead of the
28016 # also update the existing link to point to the new URL.
28019 # will separate the newline character(s) into their own text runs. The
28020 … # link will be applied separately to the runs before and after the newline.
28021 # * Removing a link will update the text style of the range to match the
28022 … # style of the preceding text (or the default text styles if the preceding
28023 … # text is another link) unless different styles are being set in the same
28025 "headingId": "A String", # The ID of a heading in this document.
28027 "bookmarkId": "A String", # The ID of a bookmark in this document.
28029 "underline": True or False, # Whether or not the text is underlined.
28030 "bold": True or False, # Whether or not the text is rendered as bold.
28033 …te": { # A mask that indicates which of the fields on the base # A mask that indicates which of th…
28037 … "nestingLevelSuggested": True or False, # Indicates if there was a suggested change to the
28039 …hat indicates which of the fields on the base TextStyle have been changed in this suggestion. # A …
28054 … "listIdSuggested": True or False, # Indicates if there was a suggested change to the
28059 … "positionedObjectIds": [ # The IDs of the positioned objects tethered to this paragraph.
28062 …"suggestedParagraphStyleChanges": { # The suggested paragraph style changes to this paragraph, key…
28066 …tes which of the fields on the base ParagraphStyle have been changed in this suggestion. # A mask …
28087 … mask that indicates which of the fields on the base Shading have been changed in this # A mask th…
28090 …ckgroundColorSuggested": True or False, # Indicates if there was a suggested change to the Shading.
28094 # the changes made in this suggestion. This can be used along with the
28099 … # A paragraph style's parent depends on where the paragraph style is defined:
28101 # * The ParagraphStyle on a Paragraph
28102 # inherits from the paragraph's corresponding named style type.
28103 # * The ParagraphStyle on a named style
28104 # inherits from the normal text named style.
28105 # * The ParagraphStyle of the normal text named style inherits
28106 # from the default paragraph style in the Docs editor.
28107 # * The ParagraphStyle on a Paragraph
28109 # the table style.
28111 … # If the paragraph style does not inherit from a parent, unsetting fields will
28112 # revert the style to a value matching the defaults in the Docs editor.
28113 "spacingMode": "A String", # The spacing mode for the paragraph.
28114 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
28117 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
28118 # inherited from the parent.
28119 "magnitude": 3.14, # The magnitude.
28120 "unit": "A String", # The units for magnitude.
28122 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
28123 # page or column as the next paragraph if possible. If unset, the value is
28124 # inherited from the parent.
28125 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
28126 … # is represented as 100.0. If unset, the value is inherited from the parent.
28127 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
28128 # is inherited from the parent.
28129 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
28130 # inherited from the parent.
28132 … # The bottom border is rendered when the paragraph below has different border
28136 # changes to a paragraph border the new border must be specified in
28138 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
28141 "rgbColor": { # An RGB color. # The RGB color value.
28142 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
28143 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
28144 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
28148 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
28149 "magnitude": 3.14, # The magnitude.
28150 "unit": "A String", # The units for magnitude.
28152 "dashStyle": "A String", # The dash style of the border.
28153 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
28154 "magnitude": 3.14, # The magnitude.
28155 "unit": "A String", # The units for magnitude.
28158 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
28159 … # the start of the text, based on the current paragraph direction. If unset,
28160 # the value is inherited from the parent.
28161 "magnitude": 3.14, # The magnitude.
28162 "unit": "A String", # The units for magnitude.
28164 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
28165 # If unset, the value is inherited from the parent.
28167 # The between border is rendered when the adjacent paragraph has the same
28171 # changes to a paragraph border the new border must be specified in
28173 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
28176 "rgbColor": { # An RGB color. # The RGB color value.
28177 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
28178 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
28179 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
28183 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
28184 "magnitude": 3.14, # The magnitude.
28185 "unit": "A String", # The units for magnitude.
28187 "dashStyle": "A String", # The dash style of the border.
28188 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
28189 "magnitude": 3.14, # The magnitude.
28190 "unit": "A String", # The units for magnitude.
28193 "namedStyleType": "A String", # The named style type of the paragraph.
28195 # Since updating the named style type affects other properties within
28196 … # ParagraphStyle, the named style type is applied before the other properties
28198 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
28199 # from the parent.
28202 # changes to a paragraph border the new border must be specified in
28204 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
28207 "rgbColor": { # An RGB color. # The RGB color value.
28208 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
28209 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
28210 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
28214 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
28215 "magnitude": 3.14, # The magnitude.
28216 "unit": "A String", # The units for magnitude.
28218 "dashStyle": "A String", # The dash style of the border.
28219 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
28220 "magnitude": 3.14, # The magnitude.
28221 "unit": "A String", # The units for magnitude.
28224 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
28225 # the end of the text, based on the current paragraph direction. If unset,
28226 # the value is inherited from the parent.
28227 "magnitude": 3.14, # The magnitude.
28228 "unit": "A String", # The units for magnitude.
28230 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
28231 # from the parent.
28234 # changes to a paragraph border the new border must be specified in
28236 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
28239 "rgbColor": { # An RGB color. # The RGB color value.
28240 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
28241 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
28242 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
28246 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
28247 "magnitude": 3.14, # The magnitude.
28248 "unit": "A String", # The units for magnitude.
28250 "dashStyle": "A String", # The dash style of the border.
28251 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
28252 "magnitude": 3.14, # The magnitude.
28253 "unit": "A String", # The units for magnitude.
28256 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
28257 # inherited from the parent.
28258 "magnitude": 3.14, # The magnitude.
28259 "unit": "A String", # The units for magnitude.
28261 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
28263 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
28265 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
28268 "rgbColor": { # An RGB color. # The RGB color value.
28269 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
28270 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
28271 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
28276 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
28277 # from the parent.
28279 # The top border is rendered when the paragraph above has different border
28283 # changes to a paragraph border the new border must be specified in
28285 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
28288 "rgbColor": { # An RGB color. # The RGB color value.
28289 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
28290 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
28291 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
28295 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
28296 "magnitude": 3.14, # The magnitude.
28297 "unit": "A String", # The units for magnitude.
28299 "dashStyle": "A String", # The dash style of the border.
28300 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
28301 "magnitude": 3.14, # The magnitude.
28302 "unit": "A String", # The units for magnitude.
28305 … "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
28308 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
28309 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
28310 "magnitude": 3.14, # The magnitude.
28311 "unit": "A String", # The units for magnitude.
28315 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
28316 # the value is inherited from the parent.
28317 "magnitude": 3.14, # The magnitude.
28318 "unit": "A String", # The units for magnitude.
28320 "alignment": "A String", # The text alignment for this paragraph.
28321 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
28322 # column if possible. If unset, the value is inherited from the parent.
28326 … "paragraphStyle": { # Styles that apply to a whole paragraph. # The style of this paragraph.
28329 # A paragraph style's parent depends on where the paragraph style is defined:
28331 # * The ParagraphStyle on a Paragraph
28332 # inherits from the paragraph's corresponding named style type.
28333 # * The ParagraphStyle on a named style
28334 # inherits from the normal text named style.
28335 # * The ParagraphStyle of the normal text named style inherits
28336 # from the default paragraph style in the Docs editor.
28337 # * The ParagraphStyle on a Paragraph
28339 # the table style.
28341 # If the paragraph style does not inherit from a parent, unsetting fields will
28342 # revert the style to a value matching the defaults in the Docs editor.
28343 "spacingMode": "A String", # The spacing mode for the paragraph.
28344 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
28347 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
28348 # inherited from the parent.
28349 "magnitude": 3.14, # The magnitude.
28350 "unit": "A String", # The units for magnitude.
28352 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
28353 # page or column as the next paragraph if possible. If unset, the value is
28354 # inherited from the parent.
28355 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
28356 # is represented as 100.0. If unset, the value is inherited from the parent.
28357 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
28358 # is inherited from the parent.
28359 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
28360 # inherited from the parent.
28362 # The bottom border is rendered when the paragraph below has different border
28366 # changes to a paragraph border the new border must be specified in
28368 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
28371 "rgbColor": { # An RGB color. # The RGB color value.
28372 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
28373 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
28374 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
28378 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
28379 "magnitude": 3.14, # The magnitude.
28380 "unit": "A String", # The units for magnitude.
28382 "dashStyle": "A String", # The dash style of the border.
28383 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
28384 "magnitude": 3.14, # The magnitude.
28385 "unit": "A String", # The units for magnitude.
28388 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
28389 # the start of the text, based on the current paragraph direction. If unset,
28390 # the value is inherited from the parent.
28391 "magnitude": 3.14, # The magnitude.
28392 "unit": "A String", # The units for magnitude.
28394 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
28395 # If unset, the value is inherited from the parent.
28397 # The between border is rendered when the adjacent paragraph has the same
28401 # changes to a paragraph border the new border must be specified in
28403 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
28406 "rgbColor": { # An RGB color. # The RGB color value.
28407 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
28408 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
28409 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
28413 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
28414 "magnitude": 3.14, # The magnitude.
28415 "unit": "A String", # The units for magnitude.
28417 "dashStyle": "A String", # The dash style of the border.
28418 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
28419 "magnitude": 3.14, # The magnitude.
28420 "unit": "A String", # The units for magnitude.
28423 "namedStyleType": "A String", # The named style type of the paragraph.
28425 # Since updating the named style type affects other properties within
28426 # ParagraphStyle, the named style type is applied before the other properties
28428 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
28429 # from the parent.
28432 # changes to a paragraph border the new border must be specified in
28434 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
28437 "rgbColor": { # An RGB color. # The RGB color value.
28438 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
28439 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
28440 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
28444 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
28445 "magnitude": 3.14, # The magnitude.
28446 "unit": "A String", # The units for magnitude.
28448 "dashStyle": "A String", # The dash style of the border.
28449 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
28450 "magnitude": 3.14, # The magnitude.
28451 "unit": "A String", # The units for magnitude.
28454 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
28455 # the end of the text, based on the current paragraph direction. If unset,
28456 # the value is inherited from the parent.
28457 "magnitude": 3.14, # The magnitude.
28458 "unit": "A String", # The units for magnitude.
28460 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
28461 # from the parent.
28464 # changes to a paragraph border the new border must be specified in
28466 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
28469 "rgbColor": { # An RGB color. # The RGB color value.
28470 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
28471 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
28472 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
28476 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
28477 "magnitude": 3.14, # The magnitude.
28478 "unit": "A String", # The units for magnitude.
28480 "dashStyle": "A String", # The dash style of the border.
28481 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
28482 "magnitude": 3.14, # The magnitude.
28483 "unit": "A String", # The units for magnitude.
28486 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
28487 # inherited from the parent.
28488 "magnitude": 3.14, # The magnitude.
28489 "unit": "A String", # The units for magnitude.
28491 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
28493 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
28495 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
28498 "rgbColor": { # An RGB color. # The RGB color value.
28499 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
28500 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
28501 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
28506 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
28507 # from the parent.
28509 # The top border is rendered when the paragraph above has different border
28513 # changes to a paragraph border the new border must be specified in
28515 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
28518 "rgbColor": { # An RGB color. # The RGB color value.
28519 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
28520 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
28521 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
28525 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
28526 "magnitude": 3.14, # The magnitude.
28527 "unit": "A String", # The units for magnitude.
28529 "dashStyle": "A String", # The dash style of the border.
28530 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
28531 "magnitude": 3.14, # The magnitude.
28532 "unit": "A String", # The units for magnitude.
28535 … "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
28538 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
28539 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
28540 "magnitude": 3.14, # The magnitude.
28541 "unit": "A String", # The units for magnitude.
28545 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
28546 # the value is inherited from the parent.
28547 "magnitude": 3.14, # The magnitude.
28548 "unit": "A String", # The units for magnitude.
28550 "alignment": "A String", # The text alignment for this paragraph.
28551 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
28552 # column if possible. If unset, the value is inherited from the parent.
28557 "rows": 42, # Number of rows in the table.
28558 "tableStyle": { # Styles that apply to a table. # The style of the table.
28559 "tableColumnProperties": [ # The properties of each column.
28562 # HTML. So the properties for a row can be found on the row's
28564 { # The properties of a column in a table.
28565 …th": { # A magnitude in a single direction in the specified units. # The width of the column. Set …
28567 "magnitude": 3.14, # The magnitude.
28568 "unit": "A String", # The units for magnitude.
28570 "widthType": "A String", # The width type of the column.
28574 "suggestedInsertionIds": [ # The suggested insertion IDs. A Table may have
28579 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
28583 "tableRows": [ # The contents and style of each row.
28584 { # The contents and style of a row in a Table.
28585 … "endIndex": 42, # The zero-based end index of this row, exclusive, in UTF-16 code units.
28586 "tableCells": [ # The contents and style of each cell in this row.
28589 # different number of cells than other rows in the same table.
28590 { # The contents and style of a cell in a Table.
28591 … "endIndex": 42, # The zero-based end index of this cell, exclusive, in UTF-16 code units.
28592 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
28596 "suggestedInsertionIds": [ # The suggested insertion IDs. A TableCell
28601 "content": [ # The content of the cell.
28604 "tableCellStyle": { # The style of a TableCell. # The style of the cell.
28607 # A table cell style can inherit from the table's style.
28608 …ngBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of t…
28609 "magnitude": 3.14, # The magnitude.
28610 "unit": "A String", # The units for magnitude.
28612 … "borderBottom": { # A border around a table cell. # The bottom border of the cell.
28613 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
28616 "rgbColor": { # An RGB color. # The RGB color value.
28617 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
28618 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
28619 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
28623 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
28624 "magnitude": 3.14, # The magnitude.
28625 "unit": "A String", # The units for magnitude.
28627 "dashStyle": "A String", # The dash style of the border.
28629 …ddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of th…
28630 "magnitude": 3.14, # The magnitude.
28631 "unit": "A String", # The units for magnitude.
28633 …paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of th…
28634 "magnitude": 3.14, # The magnitude.
28635 "unit": "A String", # The units for magnitude.
28637 … "borderLeft": { # A border around a table cell. # The left border of the cell.
28638 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
28641 "rgbColor": { # An RGB color. # The RGB color value.
28642 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
28643 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
28644 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
28648 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
28649 "magnitude": 3.14, # The magnitude.
28650 "unit": "A String", # The units for magnitude.
28652 "dashStyle": "A String", # The dash style of the border.
28654 … "columnSpan": 42, # The column span of the cell. This property is read-only.
28655 …# A color that can either be fully opaque or fully transparent. # The background color of the cell.
28658 "rgbColor": { # An RGB color. # The RGB color value.
28659 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
28660 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
28661 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
28665 … "borderRight": { # A border around a table cell. # The right border of the cell.
28666 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
28669 "rgbColor": { # An RGB color. # The RGB color value.
28670 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
28671 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
28672 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
28676 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
28677 "magnitude": 3.14, # The magnitude.
28678 "unit": "A String", # The units for magnitude.
28680 "dashStyle": "A String", # The dash style of the border.
28682 "rowSpan": 42, # The row span of the cell. This property is read-only.
28683 …"contentAlignment": "A String", # The alignment of the content in the table cell. The default alig…
28684 … # matches the alignment for newly created table cells in the Docs editor.
28685 …dingRight": { # A magnitude in a single direction in the specified units. # The right padding of t…
28686 "magnitude": 3.14, # The magnitude.
28687 "unit": "A String", # The units for magnitude.
28689 … "borderTop": { # A border around a table cell. # The top border of the cell.
28690 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
28693 "rgbColor": { # An RGB color. # The RGB color value.
28694 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
28695 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
28696 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
28700 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
28701 "magnitude": 3.14, # The magnitude.
28702 "unit": "A String", # The units for magnitude.
28704 "dashStyle": "A String", # The dash style of the border.
28707 … "startIndex": 42, # The zero-based start index of this cell, in UTF-16 code units.
28708 …"suggestedTableCellStyleChanges": { # The suggested changes to the table cell style, keyed by sugg…
28710 … "tableCellStyle": { # The style of a TableCell. # A TableCellStyle that only includes
28711 … # the changes made in this suggestion. This can be used along with the
28716 # A table cell style can inherit from the table's style.
28717 …ngBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of t…
28718 "magnitude": 3.14, # The magnitude.
28719 "unit": "A String", # The units for magnitude.
28721 … "borderBottom": { # A border around a table cell. # The bottom border of the cell.
28722 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
28725 "rgbColor": { # An RGB color. # The RGB color value.
28726 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
28727 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
28728 … "red": 3.14, # The red component of the color, from 0.0 to 1.0.
28732 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
28733 "magnitude": 3.14, # The magnitude.
28734 "unit": "A String", # The units for magnitude.
28736 "dashStyle": "A String", # The dash style of the border.
28738 …ddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of th…
28739 "magnitude": 3.14, # The magnitude.
28740 "unit": "A String", # The units for magnitude.
28742 …paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of th…
28743 "magnitude": 3.14, # The magnitude.
28744 "unit": "A String", # The units for magnitude.
28746 … "borderLeft": { # A border around a table cell. # The left border of the cell.
28747 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
28750 "rgbColor": { # An RGB color. # The RGB color value.
28751 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
28752 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
28753 … "red": 3.14, # The red component of the color, from 0.0 to 1.0.
28757 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
28758 "magnitude": 3.14, # The magnitude.
28759 "unit": "A String", # The units for magnitude.
28761 "dashStyle": "A String", # The dash style of the border.
28763 … "columnSpan": 42, # The column span of the cell. This property is read-only.
28764 …# A color that can either be fully opaque or fully transparent. # The background color of the cell.
28767 "rgbColor": { # An RGB color. # The RGB color value.
28768 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
28769 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
28770 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
28774 … "borderRight": { # A border around a table cell. # The right border of the cell.
28775 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
28778 "rgbColor": { # An RGB color. # The RGB color value.
28779 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
28780 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
28781 … "red": 3.14, # The red component of the color, from 0.0 to 1.0.
28785 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
28786 "magnitude": 3.14, # The magnitude.
28787 "unit": "A String", # The units for magnitude.
28789 "dashStyle": "A String", # The dash style of the border.
28791 "rowSpan": 42, # The row span of the cell. This property is read-only.
28792 …"contentAlignment": "A String", # The alignment of the content in the table cell. The default alig…
28793 … # matches the alignment for newly created table cells in the Docs editor.
28794 …dingRight": { # A magnitude in a single direction in the specified units. # The right padding of t…
28795 "magnitude": 3.14, # The magnitude.
28796 "unit": "A String", # The units for magnitude.
28798 … "borderTop": { # A border around a table cell. # The top border of the cell.
28799 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
28802 "rgbColor": { # An RGB color. # The RGB color value.
28803 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
28804 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
28805 … "red": 3.14, # The red component of the color, from 0.0 to 1.0.
28809 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
28810 "magnitude": 3.14, # The magnitude.
28811 "unit": "A String", # The units for magnitude.
28813 "dashStyle": "A String", # The dash style of the border.
28816 …tes which of the fields on the base TableCellStyle have been changed in this suggestion. # A mask …
28835 … "tableRowStyle": { # Styles that apply to a table row. # The style of the table row.
28836 …agnitude in a single direction in the specified units. # The minimum height of the row. The row wi…
28837 # at a height equal to or greater than this value in order to show all the
28838 # content in the row's cells.
28839 "magnitude": 3.14, # The magnitude.
28840 "unit": "A String", # The units for magnitude.
28843 "suggestedInsertionIds": [ # The suggested insertion IDs. A TableRow
28848 … "startIndex": 42, # The zero-based start index of this row, in UTF-16 code units.
28849 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
28853 …"suggestedTableRowStyleChanges": { # The suggested style changes to this row, keyed by suggestion …
28857 # the changes made in this suggestion. This can be used along with the
28860 …agnitude in a single direction in the specified units. # The minimum height of the row. The row wi…
28861 … # at a height equal to or greater than this value in order to show all the
28862 # content in the row's cells.
28863 "magnitude": 3.14, # The magnitude.
28864 "unit": "A String", # The units for magnitude.
28867 …ates which of the fields on the base TableRowStyle have been changed in this suggestion. # A mask …
28875 "columns": 42, # Number of columns in the table.
28882 "footnoteId": "A String", # The ID of the footnote.
28885 "positionedObjects": { # The positioned objects in the document, keyed by object ID.
28887 # and positioned relative to the beginning of the paragraph. A PositionedObject
28890 …"positionedObjectProperties": { # Properties of a PositionedObject. # The properties of this posit…
28891 …# The positioning of a PositionedObject. The positioned object is positioned # The positioning of …
28894 # relative to the beginning of the Paragraph
28896 …itude in a single direction in the specified units. # The offset of the left edge of the positione…
28897 # beginning of the Paragraph it is tethered
28898 # to. The exact positioning of the object can depend on other content in the
28899 # document and the document's styling.
28900 "magnitude": 3.14, # The magnitude.
28901 "unit": "A String", # The units for magnitude.
28903 …itude in a single direction in the specified units. # The offset of the top edge of the positioned…
28904 # beginning of the Paragraph it is tethered
28905 # to. The exact positioning of the object can depend on other content in the
28906 # document and the document's styling.
28907 "magnitude": 3.14, # The magnitude.
28908 "unit": "A String", # The units for magnitude.
28910 "layout": "A String", # The layout of this positioned object.
28912 …"embeddedObject": { # An embedded object in the document. # The embedded object of this positioned…
28913 "imageProperties": { # The properties of an image. # The properties of an image.
28914 "angle": 3.14, # The clockwise rotation angle of the image, in radians.
28915 … "contentUri": "A String", # A URI to the image with a default lifetime of 30 minutes.
28916 # This URI is tagged with the account of the requester. Anyone with the URI
28917 # effectively accesses the image as the original requester. Access to the
28918 # image may be lost if the document's sharing settings change.
28919 …"sourceUri": "A String", # The source URI is the URI used to insert the image. The source URI can …
28921 … "brightness": 3.14, # The brightness effect of the image. The value should be in the interval
28923 … "transparency": 3.14, # The transparency effect of the image. The value should be in the interval
28925 … "cropProperties": { # The crop properties of an image. # The crop properties of the image.
28927 # The crop rectangle is represented using fractional offsets from the original
28930 # - If the offset is in the interval (0, 1), the corresponding edge of crop
28931 # rectangle is positioned inside of the image's original bounding rectangle.
28932 # - If the offset is negative or greater than 1, the corresponding edge of crop
28933 # rectangle is positioned outside of the image's original bounding rectangle.
28934 # - If all offsets and rotation angle are 0, the image is not cropped.
28935 … "offsetBottom": 3.14, # The offset specifies how far inwards the bottom edge of the crop rectangle
28936 # is from the bottom edge of the original content as a fraction of the
28938 … "angle": 3.14, # The clockwise rotation angle of the crop rectangle around its center, in
28939 # radians. Rotation is applied after the offsets.
28940 … "offsetLeft": 3.14, # The offset specifies how far inwards the left edge of the crop rectangle is
28941 # from the left edge of the original content as a fraction of the original
28943 … "offsetRight": 3.14, # The offset specifies how far inwards the right edge of the crop rectangle
28944 # is from the right edge of the original content as a fraction of the
28946 … "offsetTop": 3.14, # The offset specifies how far inwards the top edge of the crop rectangle is
28947 # from the top edge of the original content as a fraction of the original
28950 … "contrast": 3.14, # The contrast effect of the image. The value should be in the interval
28953 …"description": "A String", # The description of the embedded object. The `title` and `description`…
28955 … "title": "A String", # The title of the embedded object. The `title` and `description` are both
28957 …"embeddedDrawingProperties": { # The properties of an embedded drawing. # The properties of an emb…
28959 …"linkedContentReference": { # A reference to the external linked source content. # A reference to
28960 # a reference to the source Sheets chart when the embedded object is a linked
28963 # If unset, then the embedded object is not linked.
28964 …: { # A reference to a linked chart embedded from Google Sheets. # A reference to the linked chart.
28965 …"spreadsheetId": "A String", # The ID of the Google Sheets spreadsheet that contains the source ch…
28966 … "chartId": 42, # The ID of the specific chart in the Google Sheets spreadsheet that is
28970 …"embeddedObjectBorder": { # A border around an EmbeddedObject. # The border of the embedded object.
28971 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
28974 "rgbColor": { # An RGB color. # The RGB color value.
28975 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
28976 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
28977 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
28981 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
28982 "magnitude": 3.14, # The magnitude.
28983 "unit": "A String", # The units for magnitude.
28985 "dashStyle": "A String", # The dash style of the border.
28986 "propertyState": "A String", # The property state of the border property.
28988 …ginBottom": { # A magnitude in a single direction in the specified units. # The bottom margin of t…
28989 "magnitude": 3.14, # The magnitude.
28990 "unit": "A String", # The units for magnitude.
28992 …marginLeft": { # A magnitude in a single direction in the specified units. # The left margin of th…
28993 "magnitude": 3.14, # The magnitude.
28994 "unit": "A String", # The units for magnitude.
28996 …rginRight": { # A magnitude in a single direction in the specified units. # The right margin of th…
28997 "magnitude": 3.14, # The magnitude.
28998 "unit": "A String", # The units for magnitude.
29000 …"marginTop": { # A magnitude in a single direction in the specified units. # The top margin of the
29001 "magnitude": 3.14, # The magnitude.
29002 "unit": "A String", # The units for magnitude.
29004 "size": { # A width and height. # The visible size of the image after cropping.
29005 … "width": { # A magnitude in a single direction in the specified units. # The width of the object.
29006 "magnitude": 3.14, # The magnitude.
29007 "unit": "A String", # The units for magnitude.
29009 …"height": { # A magnitude in a single direction in the specified units. # The height of the object.
29010 "magnitude": 3.14, # The magnitude.
29011 "unit": "A String", # The units for magnitude.
29016 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
29020 …"suggestedPositionedObjectPropertiesChanges": { # The suggested changes to the positioned object p…
29023 …te": { # A mask that indicates which of the fields on the base # A mask that indicates which of th…
29029 …tionState": { # A mask that indicates which of the fields on the base # A mask that indicates whic…
29037 … indicates which of the fields on the base EmbeddedObject have been changed in this suggestion. # …
29040 …tionState": { # A mask that indicates which of the fields on the base # A mask that indicates whic…
29045 …hat indicates which of the fields on the base SheetsChartReference have been changed in this # A m…
29052 … that indicates which of the fields on the base Size have been changed in this suggestion. # A mas…
29054 # For any field set to true, the Size has
29059 …tionState": { # A mask that indicates which of the fields on the base # A mask that indicates whic…
29066 … indicates which of the fields on the base ImageProperties have been changed in this suggestion. #…
29069 … indicates which of the fields on the base CropProperties have been changed in this suggestion. # …
29091 …hat indicates which of the fields on the base EmbeddedObjectBorder have been changed in this # A m…
29101 …rties": { # Properties of a PositionedObject. # A PositionedObjectProperties that only includes the
29102 # changes made in this suggestion. This can be used along with the
29105 …# The positioning of a PositionedObject. The positioned object is positioned # The positioning of …
29108 # relative to the beginning of the Paragraph
29110 …itude in a single direction in the specified units. # The offset of the left edge of the positione…
29111 # beginning of the Paragraph it is tethered
29112 # to. The exact positioning of the object can depend on other content in the
29113 # document and the document's styling.
29114 "magnitude": 3.14, # The magnitude.
29115 "unit": "A String", # The units for magnitude.
29117 …itude in a single direction in the specified units. # The offset of the top edge of the positioned…
29118 # beginning of the Paragraph it is tethered
29119 # to. The exact positioning of the object can depend on other content in the
29120 # document and the document's styling.
29121 "magnitude": 3.14, # The magnitude.
29122 "unit": "A String", # The units for magnitude.
29124 "layout": "A String", # The layout of this positioned object.
29126 …"embeddedObject": { # An embedded object in the document. # The embedded object of this positioned…
29127 "imageProperties": { # The properties of an image. # The properties of an image.
29128 "angle": 3.14, # The clockwise rotation angle of the image, in radians.
29129 … "contentUri": "A String", # A URI to the image with a default lifetime of 30 minutes.
29130 # This URI is tagged with the account of the requester. Anyone with the URI
29131 # effectively accesses the image as the original requester. Access to the
29132 # image may be lost if the document's sharing settings change.
29133 …"sourceUri": "A String", # The source URI is the URI used to insert the image. The source URI can …
29135 … "brightness": 3.14, # The brightness effect of the image. The value should be in the interval
29137 … "transparency": 3.14, # The transparency effect of the image. The value should be in the interval
29139 … "cropProperties": { # The crop properties of an image. # The crop properties of the image.
29141 … # The crop rectangle is represented using fractional offsets from the original
29144 # - If the offset is in the interval (0, 1), the corresponding edge of crop
29145 # rectangle is positioned inside of the image's original bounding rectangle.
29146 … # - If the offset is negative or greater than 1, the corresponding edge of crop
29147 … # rectangle is positioned outside of the image's original bounding rectangle.
29148 # - If all offsets and rotation angle are 0, the image is not cropped.
29149 … "offsetBottom": 3.14, # The offset specifies how far inwards the bottom edge of the crop rectangle
29150 # is from the bottom edge of the original content as a fraction of the
29152 … "angle": 3.14, # The clockwise rotation angle of the crop rectangle around its center, in
29153 # radians. Rotation is applied after the offsets.
29154 … "offsetLeft": 3.14, # The offset specifies how far inwards the left edge of the crop rectangle is
29155 # from the left edge of the original content as a fraction of the original
29157 … "offsetRight": 3.14, # The offset specifies how far inwards the right edge of the crop rectangle
29158 # is from the right edge of the original content as a fraction of the
29160 … "offsetTop": 3.14, # The offset specifies how far inwards the top edge of the crop rectangle is
29161 # from the top edge of the original content as a fraction of the original
29164 … "contrast": 3.14, # The contrast effect of the image. The value should be in the interval
29167 …"description": "A String", # The description of the embedded object. The `title` and `description`…
29169 … "title": "A String", # The title of the embedded object. The `title` and `description` are both
29171 …"embeddedDrawingProperties": { # The properties of an embedded drawing. # The properties of an emb…
29173 …"linkedContentReference": { # A reference to the external linked source content. # A reference to
29174 # a reference to the source Sheets chart when the embedded object is a linked
29177 # If unset, then the embedded object is not linked.
29178 …: { # A reference to a linked chart embedded from Google Sheets. # A reference to the linked chart.
29179 …"spreadsheetId": "A String", # The ID of the Google Sheets spreadsheet that contains the source ch…
29180 … "chartId": 42, # The ID of the specific chart in the Google Sheets spreadsheet that is
29184 …"embeddedObjectBorder": { # A border around an EmbeddedObject. # The border of the embedded object.
29185 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
29188 "rgbColor": { # An RGB color. # The RGB color value.
29189 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
29190 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
29191 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
29195 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
29196 "magnitude": 3.14, # The magnitude.
29197 "unit": "A String", # The units for magnitude.
29199 "dashStyle": "A String", # The dash style of the border.
29200 "propertyState": "A String", # The property state of the border property.
29202 …ginBottom": { # A magnitude in a single direction in the specified units. # The bottom margin of t…
29203 "magnitude": 3.14, # The magnitude.
29204 "unit": "A String", # The units for magnitude.
29206 …marginLeft": { # A magnitude in a single direction in the specified units. # The left margin of th…
29207 "magnitude": 3.14, # The magnitude.
29208 "unit": "A String", # The units for magnitude.
29210 …rginRight": { # A magnitude in a single direction in the specified units. # The right margin of th…
29211 "magnitude": 3.14, # The magnitude.
29212 "unit": "A String", # The units for magnitude.
29214 …"marginTop": { # A magnitude in a single direction in the specified units. # The top margin of the
29215 "magnitude": 3.14, # The magnitude.
29216 "unit": "A String", # The units for magnitude.
29218 "size": { # A width and height. # The visible size of the image after cropping.
29219 … "width": { # A magnitude in a single direction in the specified units. # The width of the object.
29220 "magnitude": 3.14, # The magnitude.
29221 "unit": "A String", # The units for magnitude.
29223 …"height": { # A magnitude in a single direction in the specified units. # The height of the object.
29224 "magnitude": 3.14, # The magnitude.
29225 "unit": "A String", # The units for magnitude.
29232 "objectId": "A String", # The ID of this positioned object.
29233 …"suggestedInsertionId": "A String", # The suggested insertion ID. If empty, then this is not a sug…
29237 "inlineObjects": { # The inline objects in the document, keyed by object ID.
29240 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
29244 …"inlineObjectProperties": { # Properties of an InlineObject. # The properties of this inline objec…
29245 …"embeddedObject": { # An embedded object in the document. # The embedded object of this inline obj…
29246 "imageProperties": { # The properties of an image. # The properties of an image.
29247 "angle": 3.14, # The clockwise rotation angle of the image, in radians.
29248 … "contentUri": "A String", # A URI to the image with a default lifetime of 30 minutes.
29249 # This URI is tagged with the account of the requester. Anyone with the URI
29250 # effectively accesses the image as the original requester. Access to the
29251 # image may be lost if the document's sharing settings change.
29252 …"sourceUri": "A String", # The source URI is the URI used to insert the image. The source URI can …
29254 … "brightness": 3.14, # The brightness effect of the image. The value should be in the interval
29256 … "transparency": 3.14, # The transparency effect of the image. The value should be in the interval
29258 … "cropProperties": { # The crop properties of an image. # The crop properties of the image.
29260 # The crop rectangle is represented using fractional offsets from the original
29263 # - If the offset is in the interval (0, 1), the corresponding edge of crop
29264 # rectangle is positioned inside of the image's original bounding rectangle.
29265 # - If the offset is negative or greater than 1, the corresponding edge of crop
29266 # rectangle is positioned outside of the image's original bounding rectangle.
29267 # - If all offsets and rotation angle are 0, the image is not cropped.
29268 … "offsetBottom": 3.14, # The offset specifies how far inwards the bottom edge of the crop rectangle
29269 # is from the bottom edge of the original content as a fraction of the
29271 … "angle": 3.14, # The clockwise rotation angle of the crop rectangle around its center, in
29272 # radians. Rotation is applied after the offsets.
29273 … "offsetLeft": 3.14, # The offset specifies how far inwards the left edge of the crop rectangle is
29274 # from the left edge of the original content as a fraction of the original
29276 … "offsetRight": 3.14, # The offset specifies how far inwards the right edge of the crop rectangle
29277 # is from the right edge of the original content as a fraction of the
29279 … "offsetTop": 3.14, # The offset specifies how far inwards the top edge of the crop rectangle is
29280 # from the top edge of the original content as a fraction of the original
29283 … "contrast": 3.14, # The contrast effect of the image. The value should be in the interval
29286 …"description": "A String", # The description of the embedded object. The `title` and `description`…
29288 … "title": "A String", # The title of the embedded object. The `title` and `description` are both
29290 …"embeddedDrawingProperties": { # The properties of an embedded drawing. # The properties of an emb…
29292 …"linkedContentReference": { # A reference to the external linked source content. # A reference to
29293 # a reference to the source Sheets chart when the embedded object is a linked
29296 # If unset, then the embedded object is not linked.
29297 …: { # A reference to a linked chart embedded from Google Sheets. # A reference to the linked chart.
29298 …"spreadsheetId": "A String", # The ID of the Google Sheets spreadsheet that contains the source ch…
29299 … "chartId": 42, # The ID of the specific chart in the Google Sheets spreadsheet that is
29303 …"embeddedObjectBorder": { # A border around an EmbeddedObject. # The border of the embedded object.
29304 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
29307 "rgbColor": { # An RGB color. # The RGB color value.
29308 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
29309 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
29310 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
29314 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
29315 "magnitude": 3.14, # The magnitude.
29316 "unit": "A String", # The units for magnitude.
29318 "dashStyle": "A String", # The dash style of the border.
29319 "propertyState": "A String", # The property state of the border property.
29321 …ginBottom": { # A magnitude in a single direction in the specified units. # The bottom margin of t…
29322 "magnitude": 3.14, # The magnitude.
29323 "unit": "A String", # The units for magnitude.
29325 …marginLeft": { # A magnitude in a single direction in the specified units. # The left margin of th…
29326 "magnitude": 3.14, # The magnitude.
29327 "unit": "A String", # The units for magnitude.
29329 …rginRight": { # A magnitude in a single direction in the specified units. # The right margin of th…
29330 "magnitude": 3.14, # The magnitude.
29331 "unit": "A String", # The units for magnitude.
29333 …"marginTop": { # A magnitude in a single direction in the specified units. # The top margin of the
29334 "magnitude": 3.14, # The magnitude.
29335 "unit": "A String", # The units for magnitude.
29337 "size": { # A width and height. # The visible size of the image after cropping.
29338 … "width": { # A magnitude in a single direction in the specified units. # The width of the object.
29339 "magnitude": 3.14, # The magnitude.
29340 "unit": "A String", # The units for magnitude.
29342 …"height": { # A magnitude in a single direction in the specified units. # The height of the object.
29343 "magnitude": 3.14, # The magnitude.
29344 "unit": "A String", # The units for magnitude.
29349 …"suggestedInlineObjectPropertiesChanges": { # The suggested changes to the inline object propertie…
29353 # that only includes the changes made in this suggestion. This can be used
29354 # along with the inline_object_properties_suggestion_state
29356 …"embeddedObject": { # An embedded object in the document. # The embedded object of this inline obj…
29357 "imageProperties": { # The properties of an image. # The properties of an image.
29358 "angle": 3.14, # The clockwise rotation angle of the image, in radians.
29359 … "contentUri": "A String", # A URI to the image with a default lifetime of 30 minutes.
29360 # This URI is tagged with the account of the requester. Anyone with the URI
29361 # effectively accesses the image as the original requester. Access to the
29362 # image may be lost if the document's sharing settings change.
29363 …"sourceUri": "A String", # The source URI is the URI used to insert the image. The source URI can …
29365 … "brightness": 3.14, # The brightness effect of the image. The value should be in the interval
29367 … "transparency": 3.14, # The transparency effect of the image. The value should be in the interval
29369 … "cropProperties": { # The crop properties of an image. # The crop properties of the image.
29371 … # The crop rectangle is represented using fractional offsets from the original
29374 # - If the offset is in the interval (0, 1), the corresponding edge of crop
29375 # rectangle is positioned inside of the image's original bounding rectangle.
29376 … # - If the offset is negative or greater than 1, the corresponding edge of crop
29377 … # rectangle is positioned outside of the image's original bounding rectangle.
29378 # - If all offsets and rotation angle are 0, the image is not cropped.
29379 … "offsetBottom": 3.14, # The offset specifies how far inwards the bottom edge of the crop rectangle
29380 # is from the bottom edge of the original content as a fraction of the
29382 … "angle": 3.14, # The clockwise rotation angle of the crop rectangle around its center, in
29383 # radians. Rotation is applied after the offsets.
29384 … "offsetLeft": 3.14, # The offset specifies how far inwards the left edge of the crop rectangle is
29385 # from the left edge of the original content as a fraction of the original
29387 … "offsetRight": 3.14, # The offset specifies how far inwards the right edge of the crop rectangle
29388 # is from the right edge of the original content as a fraction of the
29390 … "offsetTop": 3.14, # The offset specifies how far inwards the top edge of the crop rectangle is
29391 # from the top edge of the original content as a fraction of the original
29394 … "contrast": 3.14, # The contrast effect of the image. The value should be in the interval
29397 …"description": "A String", # The description of the embedded object. The `title` and `description`…
29399 … "title": "A String", # The title of the embedded object. The `title` and `description` are both
29401 …"embeddedDrawingProperties": { # The properties of an embedded drawing. # The properties of an emb…
29403 …"linkedContentReference": { # A reference to the external linked source content. # A reference to
29404 # a reference to the source Sheets chart when the embedded object is a linked
29407 # If unset, then the embedded object is not linked.
29408 …: { # A reference to a linked chart embedded from Google Sheets. # A reference to the linked chart.
29409 …"spreadsheetId": "A String", # The ID of the Google Sheets spreadsheet that contains the source ch…
29410 … "chartId": 42, # The ID of the specific chart in the Google Sheets spreadsheet that is
29414 …"embeddedObjectBorder": { # A border around an EmbeddedObject. # The border of the embedded object.
29415 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
29418 "rgbColor": { # An RGB color. # The RGB color value.
29419 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
29420 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
29421 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
29425 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
29426 "magnitude": 3.14, # The magnitude.
29427 "unit": "A String", # The units for magnitude.
29429 "dashStyle": "A String", # The dash style of the border.
29430 "propertyState": "A String", # The property state of the border property.
29432 …ginBottom": { # A magnitude in a single direction in the specified units. # The bottom margin of t…
29433 "magnitude": 3.14, # The magnitude.
29434 "unit": "A String", # The units for magnitude.
29436 …marginLeft": { # A magnitude in a single direction in the specified units. # The left margin of th…
29437 "magnitude": 3.14, # The magnitude.
29438 "unit": "A String", # The units for magnitude.
29440 …rginRight": { # A magnitude in a single direction in the specified units. # The right margin of th…
29441 "magnitude": 3.14, # The magnitude.
29442 "unit": "A String", # The units for magnitude.
29444 …"marginTop": { # A magnitude in a single direction in the specified units. # The top margin of the
29445 "magnitude": 3.14, # The magnitude.
29446 "unit": "A String", # The units for magnitude.
29448 "size": { # A width and height. # The visible size of the image after cropping.
29449 … "width": { # A magnitude in a single direction in the specified units. # The width of the object.
29450 "magnitude": 3.14, # The magnitude.
29451 "unit": "A String", # The units for magnitude.
29453 …"height": { # A magnitude in a single direction in the specified units. # The height of the object.
29454 "magnitude": 3.14, # The magnitude.
29455 "unit": "A String", # The units for magnitude.
29460 …te": { # A mask that indicates which of the fields on the base # A mask that indicates which of th…
29466 … indicates which of the fields on the base EmbeddedObject have been changed in this suggestion. # …
29469 …tionState": { # A mask that indicates which of the fields on the base # A mask that indicates whic…
29474 …hat indicates which of the fields on the base SheetsChartReference have been changed in this # A m…
29481 … that indicates which of the fields on the base Size have been changed in this suggestion. # A mas…
29483 # For any field set to true, the Size has
29488 …tionState": { # A mask that indicates which of the fields on the base # A mask that indicates whic…
29495 … indicates which of the fields on the base ImageProperties have been changed in this suggestion. #…
29498 … indicates which of the fields on the base CropProperties have been changed in this suggestion. # …
29520 …hat indicates which of the fields on the base EmbeddedObjectBorder have been changed in this # A m…
29532 "objectId": "A String", # The ID of this inline object.
29533 …"suggestedInsertionId": "A String", # The suggested insertion ID. If empty, then this is not a sug…
29537 …"revisionId": "A String", # The revision ID of the document. Can be used in update requests to spe…
29538 # which revision of a document to apply updates to and how the request should
29539 # behave if the document has been edited since that revision. Only populated
29540 # if the user has edit access to the document.
29542 # The format of the revision ID may change over time, so it should be treated
29544 # hours after it has been returned and cannot be shared across users. If the
29545 # revision ID is unchanged between calls, then the document has not changed.
29546 # Conversely, a changed ID (for the same document and user) usually means the
29549 "documentId": "A String", # The ID of the document.
29555 <pre>Gets the latest version of the specified document.
29558 documentId: string, The ID of the document to retrieve. (required)
29563 …suggestionsViewMode: string, The suggestions view mode to apply to the document. This allows viewi…
29569 An object of the form:
29572 "body": { # The document body. # The main body of the document.
29574 # The body typically contains the full document contents except for
29577 "content": [ # The contents of the body.
29579 # The indexes for the body's content begin at zero.
29580 { # A StructuralElement describes content that provides structure to the
29582 … "endIndex": 42, # The zero-based end index of this structural element, exclusive, in UTF-16
29585 # section break. A section is a range of content which has the same
29587 # the start of a new section, and the section style applies to the section
29588 # after the section break.
29590 # The document body always begins with a section break.
29591 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
29595 …"sectionStyle": { # The styling that applies to a section. # The style of the section after this s…
29596 …"contentDirection": "A String", # The content direction of this section. If unset, the value defau…
29598 "columnProperties": [ # The section's columns properties.
29600 # If empty, the section contains one column with the default properties in
29601 # the Docs editor.
29603 … "width": { # A magnitude in a single direction in the specified units. # The width of the column.
29604 "magnitude": 3.14, # The magnitude.
29605 "unit": "A String", # The units for magnitude.
29607 …ingEnd": { # A magnitude in a single direction in the specified units. # The padding at the end of…
29608 "magnitude": 3.14, # The magnitude.
29609 "unit": "A String", # The units for magnitude.
29613 "columnSeparatorStyle": "A String", # The style of column separators.
29615 # This style can be set even when there is one column in the section.
29617 …"suggestedInsertionIds": [ # The suggested insertion IDs. A SectionBreak may have multiple inserti…
29625 "content": [ # The content of the table of contents.
29628 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
29632 …"suggestedInsertionIds": [ # The suggested insertion IDs. A TableOfContents may have multiple inse…
29638 … "startIndex": 42, # The zero-based start index of this structural element, in UTF-16 code
29643 "elements": [ # The content of the paragraph broken down into its component parts.
29646 … "endIndex": 42, # The zero-base end index of this paragraph element, exclusive, in UTF-16
29650 "suggestedInsertionIds": [ # The suggested insertion IDs. A Equation
29655 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
29661 # column break. A column break makes the subsequent text start at the top of
29662 # the next column.
29663 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Colu…
29665 # Similar to text content, like text runs and footnote references, the text
29666 … # style of a column break can affect content layout as well as the styling of
29670 # text style's parent depends on where the text style is defined:
29672 # * The TextStyle of text in a Paragraph
29673 # inherits from the paragraph's corresponding named style type.
29674 # * The TextStyle on a named style
29675 # inherits from the normal text named style.
29676 # * The TextStyle of the normal text named style inherits
29677 # from the default text style in the Docs editor.
29678 # * The TextStyle on a Paragraph element
29679 # that is contained in a table may inherit its text style from the table
29682 # If the text style does not inherit from a parent, unsetting fields will
29683 # revert the style to a value matching the defaults in the Docs editor.
29684 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
29685 # or transparent, depending on the `color` field.
29688 "rgbColor": { # An RGB color. # The RGB color value.
29689 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
29690 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
29691 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
29695 "italic": True or False, # Whether or not the text is italicized.
29696 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
29699 … # rendered in a smaller font size, computed based on the `font_size` field.
29700 # The `font_size` itself is not affected by changes in this field.
29701 "strikethrough": True or False, # Whether or not the text is struck through.
29702 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
29705 # `bold`, the `weighted_font_family` is applied first, then `bold`.
29712 "fontFamily": "A String", # The font family of the text.
29714 # The font family can be any font from the Font menu in Docs or from
29715 # [Google Fonts] (https://fonts.google.com/). If the font name is
29716 # unrecognized, the text is rendered in `Arial`.
29717 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
29718 … # `100` between `100` and `900`, inclusive. This range corresponds to the
29719 # numerical values described in the CSS 2.1 Specification,
29723 # The default value is `400` ("normal").
29725 … # The font weight makes up just one component of the rendered font weight.
29726 … # The rendered weight is determined by a combination of the `weight` and the
29729 # * If the text is bold and the weight is less than `400`, the rendered
29731 … # * If the text is bold and the weight is greater than or equal to `400` but
29732 # is less than `700`, the rendered weight is `700`.
29733 … # * If the weight is greater than or equal to `700`, the rendered weight is
29734 # equal to the weight.
29735 # * If the text is not bold, the rendered weight is equal to the weight.
29737 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
29738 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
29739 "magnitude": 3.14, # The magnitude.
29740 "unit": "A String", # The units for magnitude.
29742 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
29743 # or transparent, depending on the `color` field.
29746 "rgbColor": { # An RGB color. # The RGB color value.
29747 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
29748 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
29749 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
29753 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
29756 # Changing the link in an update request causes some other changes to the
29757 # text style of the range:
29759 # * When setting a link, the text foreground color will be updated to the
29760 … # default link color and the text will be underlined. If these fields are
29761 # modified in the same request, those values will be used instead of the
29764 # also update the existing link to point to the new URL.
29767 # will separate the newline character(s) into their own text runs. The
29768 … # link will be applied separately to the runs before and after the newline.
29769 # * Removing a link will update the text style of the range to match the
29770 … # style of the preceding text (or the default text styles if the preceding
29771 … # text is another link) unless different styles are being set in the same
29773 "headingId": "A String", # The ID of a heading in this document.
29775 "bookmarkId": "A String", # The ID of a bookmark in this document.
29777 "underline": True or False, # Whether or not the text is underlined.
29778 "bold": True or False, # Whether or not the text is rendered as bold.
29780 …"suggestedInsertionIds": [ # The suggested insertion IDs. A ColumnBreak may have multiple insertio…
29785 …"suggestedTextStyleChanges": { # The suggested text style changes to this ColumnBreak, keyed by su…
29788 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
29789 # the changes made in this suggestion. This can be used along with the
29794 # text style's parent depends on where the text style is defined:
29796 # * The TextStyle of text in a Paragraph
29797 # inherits from the paragraph's corresponding named style type.
29798 # * The TextStyle on a named style
29799 # inherits from the normal text named style.
29800 # * The TextStyle of the normal text named style inherits
29801 # from the default text style in the Docs editor.
29802 # * The TextStyle on a Paragraph element
29803 … # that is contained in a table may inherit its text style from the table
29806 … # If the text style does not inherit from a parent, unsetting fields will
29807 # revert the style to a value matching the defaults in the Docs editor.
29808 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
29809 # or transparent, depending on the `color` field.
29812 "rgbColor": { # An RGB color. # The RGB color value.
29813 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
29814 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
29815 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
29819 "italic": True or False, # Whether or not the text is italicized.
29820 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
29823 … # rendered in a smaller font size, computed based on the `font_size` field.
29824 # The `font_size` itself is not affected by changes in this field.
29825 … "strikethrough": True or False, # Whether or not the text is struck through.
29826 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
29829 # `bold`, the `weighted_font_family` is applied first, then `bold`.
29836 "fontFamily": "A String", # The font family of the text.
29838 # The font family can be any font from the Font menu in Docs or from
29839 # [Google Fonts] (https://fonts.google.com/). If the font name is
29840 # unrecognized, the text is rendered in `Arial`.
29841 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
29842 … # `100` between `100` and `900`, inclusive. This range corresponds to the
29843 # numerical values described in the CSS 2.1 Specification,
29847 # The default value is `400` ("normal").
29849 … # The font weight makes up just one component of the rendered font weight.
29850 … # The rendered weight is determined by a combination of the `weight` and the
29853 … # * If the text is bold and the weight is less than `400`, the rendered
29855 … # * If the text is bold and the weight is greater than or equal to `400` but
29856 # is less than `700`, the rendered weight is `700`.
29857 … # * If the weight is greater than or equal to `700`, the rendered weight is
29858 # equal to the weight.
29859 … # * If the text is not bold, the rendered weight is equal to the weight.
29861 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
29862 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
29863 "magnitude": 3.14, # The magnitude.
29864 "unit": "A String", # The units for magnitude.
29866 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
29867 # or transparent, depending on the `color` field.
29870 "rgbColor": { # An RGB color. # The RGB color value.
29871 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
29872 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
29873 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
29877 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
29880 … # Changing the link in an update request causes some other changes to the
29881 # text style of the range:
29883 … # * When setting a link, the text foreground color will be updated to the
29884 … # default link color and the text will be underlined. If these fields are
29885 … # modified in the same request, those values will be used instead of the
29888 # also update the existing link to point to the new URL.
29891 … # will separate the newline character(s) into their own text runs. The
29892 … # link will be applied separately to the runs before and after the newline.
29893 … # * Removing a link will update the text style of the range to match the
29894 … # style of the preceding text (or the default text styles if the preceding
29895 … # text is another link) unless different styles are being set in the same
29897 "headingId": "A String", # The ID of a heading in this document.
29899 "bookmarkId": "A String", # The ID of a bookmark in this document.
29901 "underline": True or False, # Whether or not the text is underlined.
29902 "bold": True or False, # Whether or not the text is rendered as bold.
29904 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
29920 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
29925 … "startIndex": 42, # The zero-based start index of this paragraph element, in UTF-16 code units.
29927 # page break. A page break makes the subsequent text start at the top of the
29929 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Page…
29931 # Similar to text content, like text runs and footnote references, the text
29932 # style of a page break can affect content layout as well as the styling of
29936 # text style's parent depends on where the text style is defined:
29938 # * The TextStyle of text in a Paragraph
29939 # inherits from the paragraph's corresponding named style type.
29940 # * The TextStyle on a named style
29941 # inherits from the normal text named style.
29942 # * The TextStyle of the normal text named style inherits
29943 # from the default text style in the Docs editor.
29944 # * The TextStyle on a Paragraph element
29945 # that is contained in a table may inherit its text style from the table
29948 # If the text style does not inherit from a parent, unsetting fields will
29949 # revert the style to a value matching the defaults in the Docs editor.
29950 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
29951 # or transparent, depending on the `color` field.
29954 "rgbColor": { # An RGB color. # The RGB color value.
29955 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
29956 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
29957 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
29961 "italic": True or False, # Whether or not the text is italicized.
29962 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
29965 … # rendered in a smaller font size, computed based on the `font_size` field.
29966 # The `font_size` itself is not affected by changes in this field.
29967 "strikethrough": True or False, # Whether or not the text is struck through.
29968 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
29971 # `bold`, the `weighted_font_family` is applied first, then `bold`.
29978 "fontFamily": "A String", # The font family of the text.
29980 # The font family can be any font from the Font menu in Docs or from
29981 # [Google Fonts] (https://fonts.google.com/). If the font name is
29982 # unrecognized, the text is rendered in `Arial`.
29983 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
29984 … # `100` between `100` and `900`, inclusive. This range corresponds to the
29985 # numerical values described in the CSS 2.1 Specification,
29989 # The default value is `400` ("normal").
29991 … # The font weight makes up just one component of the rendered font weight.
29992 … # The rendered weight is determined by a combination of the `weight` and the
29995 # * If the text is bold and the weight is less than `400`, the rendered
29997 … # * If the text is bold and the weight is greater than or equal to `400` but
29998 # is less than `700`, the rendered weight is `700`.
29999 … # * If the weight is greater than or equal to `700`, the rendered weight is
30000 # equal to the weight.
30001 # * If the text is not bold, the rendered weight is equal to the weight.
30003 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
30004 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
30005 "magnitude": 3.14, # The magnitude.
30006 "unit": "A String", # The units for magnitude.
30008 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
30009 # or transparent, depending on the `color` field.
30012 "rgbColor": { # An RGB color. # The RGB color value.
30013 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
30014 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
30015 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
30019 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
30022 # Changing the link in an update request causes some other changes to the
30023 # text style of the range:
30025 # * When setting a link, the text foreground color will be updated to the
30026 … # default link color and the text will be underlined. If these fields are
30027 # modified in the same request, those values will be used instead of the
30030 # also update the existing link to point to the new URL.
30033 # will separate the newline character(s) into their own text runs. The
30034 … # link will be applied separately to the runs before and after the newline.
30035 # * Removing a link will update the text style of the range to match the
30036 … # style of the preceding text (or the default text styles if the preceding
30037 … # text is another link) unless different styles are being set in the same
30039 "headingId": "A String", # The ID of a heading in this document.
30041 "bookmarkId": "A String", # The ID of a bookmark in this document.
30043 "underline": True or False, # Whether or not the text is underlined.
30044 "bold": True or False, # Whether or not the text is rendered as bold.
30046 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
30050 …"suggestedTextStyleChanges": { # The suggested text style changes to this PageBreak, keyed by sugg…
30052 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
30053 # the changes made in this suggestion. This can be used along with the
30058 # text style's parent depends on where the text style is defined:
30060 # * The TextStyle of text in a Paragraph
30061 # inherits from the paragraph's corresponding named style type.
30062 # * The TextStyle on a named style
30063 # inherits from the normal text named style.
30064 # * The TextStyle of the normal text named style inherits
30065 # from the default text style in the Docs editor.
30066 # * The TextStyle on a Paragraph element
30067 … # that is contained in a table may inherit its text style from the table
30070 … # If the text style does not inherit from a parent, unsetting fields will
30071 # revert the style to a value matching the defaults in the Docs editor.
30072 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
30073 # or transparent, depending on the `color` field.
30076 "rgbColor": { # An RGB color. # The RGB color value.
30077 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
30078 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
30079 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
30083 "italic": True or False, # Whether or not the text is italicized.
30084 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
30087 … # rendered in a smaller font size, computed based on the `font_size` field.
30088 # The `font_size` itself is not affected by changes in this field.
30089 … "strikethrough": True or False, # Whether or not the text is struck through.
30090 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
30093 # `bold`, the `weighted_font_family` is applied first, then `bold`.
30100 "fontFamily": "A String", # The font family of the text.
30102 # The font family can be any font from the Font menu in Docs or from
30103 # [Google Fonts] (https://fonts.google.com/). If the font name is
30104 # unrecognized, the text is rendered in `Arial`.
30105 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
30106 … # `100` between `100` and `900`, inclusive. This range corresponds to the
30107 # numerical values described in the CSS 2.1 Specification,
30111 # The default value is `400` ("normal").
30113 … # The font weight makes up just one component of the rendered font weight.
30114 … # The rendered weight is determined by a combination of the `weight` and the
30117 … # * If the text is bold and the weight is less than `400`, the rendered
30119 … # * If the text is bold and the weight is greater than or equal to `400` but
30120 # is less than `700`, the rendered weight is `700`.
30121 … # * If the weight is greater than or equal to `700`, the rendered weight is
30122 # equal to the weight.
30123 … # * If the text is not bold, the rendered weight is equal to the weight.
30125 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
30126 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
30127 "magnitude": 3.14, # The magnitude.
30128 "unit": "A String", # The units for magnitude.
30130 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
30131 # or transparent, depending on the `color` field.
30134 "rgbColor": { # An RGB color. # The RGB color value.
30135 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
30136 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
30137 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
30141 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
30144 … # Changing the link in an update request causes some other changes to the
30145 # text style of the range:
30147 … # * When setting a link, the text foreground color will be updated to the
30148 … # default link color and the text will be underlined. If these fields are
30149 … # modified in the same request, those values will be used instead of the
30152 # also update the existing link to point to the new URL.
30155 … # will separate the newline character(s) into their own text runs. The
30156 … # link will be applied separately to the runs before and after the newline.
30157 … # * Removing a link will update the text style of the range to match the
30158 … # style of the preceding text (or the default text styles if the preceding
30159 … # text is another link) unless different styles are being set in the same
30161 "headingId": "A String", # The ID of a heading in this document.
30163 "bookmarkId": "A String", # The ID of a bookmark in this document.
30165 "underline": True or False, # Whether or not the text is underlined.
30166 "bold": True or False, # Whether or not the text is rendered as bold.
30168 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
30184 "suggestedInsertionIds": [ # The suggested insertion IDs. A PageBreak
30192 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Hori…
30194 # Similar to text content, like text runs and footnote references, the text
30195 … # style of a horizontal rule can affect content layout as well as the styling
30199 # text style's parent depends on where the text style is defined:
30201 # * The TextStyle of text in a Paragraph
30202 # inherits from the paragraph's corresponding named style type.
30203 # * The TextStyle on a named style
30204 # inherits from the normal text named style.
30205 # * The TextStyle of the normal text named style inherits
30206 # from the default text style in the Docs editor.
30207 # * The TextStyle on a Paragraph element
30208 # that is contained in a table may inherit its text style from the table
30211 # If the text style does not inherit from a parent, unsetting fields will
30212 # revert the style to a value matching the defaults in the Docs editor.
30213 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
30214 # or transparent, depending on the `color` field.
30217 "rgbColor": { # An RGB color. # The RGB color value.
30218 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
30219 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
30220 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
30224 "italic": True or False, # Whether or not the text is italicized.
30225 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
30228 … # rendered in a smaller font size, computed based on the `font_size` field.
30229 # The `font_size` itself is not affected by changes in this field.
30230 "strikethrough": True or False, # Whether or not the text is struck through.
30231 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
30234 # `bold`, the `weighted_font_family` is applied first, then `bold`.
30241 "fontFamily": "A String", # The font family of the text.
30243 # The font family can be any font from the Font menu in Docs or from
30244 # [Google Fonts] (https://fonts.google.com/). If the font name is
30245 # unrecognized, the text is rendered in `Arial`.
30246 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
30247 … # `100` between `100` and `900`, inclusive. This range corresponds to the
30248 # numerical values described in the CSS 2.1 Specification,
30252 # The default value is `400` ("normal").
30254 … # The font weight makes up just one component of the rendered font weight.
30255 … # The rendered weight is determined by a combination of the `weight` and the
30258 # * If the text is bold and the weight is less than `400`, the rendered
30260 … # * If the text is bold and the weight is greater than or equal to `400` but
30261 # is less than `700`, the rendered weight is `700`.
30262 … # * If the weight is greater than or equal to `700`, the rendered weight is
30263 # equal to the weight.
30264 # * If the text is not bold, the rendered weight is equal to the weight.
30266 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
30267 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
30268 "magnitude": 3.14, # The magnitude.
30269 "unit": "A String", # The units for magnitude.
30271 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
30272 # or transparent, depending on the `color` field.
30275 "rgbColor": { # An RGB color. # The RGB color value.
30276 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
30277 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
30278 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
30282 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
30285 # Changing the link in an update request causes some other changes to the
30286 # text style of the range:
30288 # * When setting a link, the text foreground color will be updated to the
30289 … # default link color and the text will be underlined. If these fields are
30290 # modified in the same request, those values will be used instead of the
30293 # also update the existing link to point to the new URL.
30296 # will separate the newline character(s) into their own text runs. The
30297 … # link will be applied separately to the runs before and after the newline.
30298 # * Removing a link will update the text style of the range to match the
30299 … # style of the preceding text (or the default text styles if the preceding
30300 … # text is another link) unless different styles are being set in the same
30302 "headingId": "A String", # The ID of a heading in this document.
30304 "bookmarkId": "A String", # The ID of a bookmark in this document.
30306 "underline": True or False, # Whether or not the text is underlined.
30307 "bold": True or False, # Whether or not the text is rendered as bold.
30309 …"suggestedInsertionIds": [ # The suggested insertion IDs. A HorizontalRule may have multiple inser…
30314 … "suggestedTextStyleChanges": { # The suggested text style changes to this HorizontalRule, keyed by
30317 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
30318 # the changes made in this suggestion. This can be used along with the
30323 # text style's parent depends on where the text style is defined:
30325 # * The TextStyle of text in a Paragraph
30326 # inherits from the paragraph's corresponding named style type.
30327 # * The TextStyle on a named style
30328 # inherits from the normal text named style.
30329 # * The TextStyle of the normal text named style inherits
30330 # from the default text style in the Docs editor.
30331 # * The TextStyle on a Paragraph element
30332 … # that is contained in a table may inherit its text style from the table
30335 … # If the text style does not inherit from a parent, unsetting fields will
30336 # revert the style to a value matching the defaults in the Docs editor.
30337 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
30338 # or transparent, depending on the `color` field.
30341 "rgbColor": { # An RGB color. # The RGB color value.
30342 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
30343 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
30344 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
30348 "italic": True or False, # Whether or not the text is italicized.
30349 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
30352 … # rendered in a smaller font size, computed based on the `font_size` field.
30353 # The `font_size` itself is not affected by changes in this field.
30354 … "strikethrough": True or False, # Whether or not the text is struck through.
30355 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
30358 # `bold`, the `weighted_font_family` is applied first, then `bold`.
30365 "fontFamily": "A String", # The font family of the text.
30367 # The font family can be any font from the Font menu in Docs or from
30368 # [Google Fonts] (https://fonts.google.com/). If the font name is
30369 # unrecognized, the text is rendered in `Arial`.
30370 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
30371 … # `100` between `100` and `900`, inclusive. This range corresponds to the
30372 # numerical values described in the CSS 2.1 Specification,
30376 # The default value is `400` ("normal").
30378 … # The font weight makes up just one component of the rendered font weight.
30379 … # The rendered weight is determined by a combination of the `weight` and the
30382 … # * If the text is bold and the weight is less than `400`, the rendered
30384 … # * If the text is bold and the weight is greater than or equal to `400` but
30385 # is less than `700`, the rendered weight is `700`.
30386 … # * If the weight is greater than or equal to `700`, the rendered weight is
30387 # equal to the weight.
30388 … # * If the text is not bold, the rendered weight is equal to the weight.
30390 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
30391 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
30392 "magnitude": 3.14, # The magnitude.
30393 "unit": "A String", # The units for magnitude.
30395 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
30396 # or transparent, depending on the `color` field.
30399 "rgbColor": { # An RGB color. # The RGB color value.
30400 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
30401 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
30402 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
30406 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
30409 … # Changing the link in an update request causes some other changes to the
30410 # text style of the range:
30412 … # * When setting a link, the text foreground color will be updated to the
30413 … # default link color and the text will be underlined. If these fields are
30414 … # modified in the same request, those values will be used instead of the
30417 # also update the existing link to point to the new URL.
30420 … # will separate the newline character(s) into their own text runs. The
30421 … # link will be applied separately to the runs before and after the newline.
30422 … # * Removing a link will update the text style of the range to match the
30423 … # style of the preceding text (or the default text styles if the preceding
30424 … # text is another link) unless different styles are being set in the same
30426 "headingId": "A String", # The ID of a heading in this document.
30428 "bookmarkId": "A String", # The ID of a bookmark in this document.
30430 "underline": True or False, # Whether or not the text is underlined.
30431 "bold": True or False, # Whether or not the text is rendered as bold.
30433 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
30449 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
30455 # run of text that all has the same styling.
30456 "content": "A String", # The text of this run.
30458 # Any non-text elements in the run are replaced with the Unicode character
30460 … "textStyle": { # Represents the styling that can be applied to text. # The text style of this run.
30463 # text style's parent depends on where the text style is defined:
30465 # * The TextStyle of text in a Paragraph
30466 # inherits from the paragraph's corresponding named style type.
30467 # * The TextStyle on a named style
30468 # inherits from the normal text named style.
30469 # * The TextStyle of the normal text named style inherits
30470 # from the default text style in the Docs editor.
30471 # * The TextStyle on a Paragraph element
30472 # that is contained in a table may inherit its text style from the table
30475 # If the text style does not inherit from a parent, unsetting fields will
30476 # revert the style to a value matching the defaults in the Docs editor.
30477 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
30478 # or transparent, depending on the `color` field.
30481 "rgbColor": { # An RGB color. # The RGB color value.
30482 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
30483 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
30484 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
30488 "italic": True or False, # Whether or not the text is italicized.
30489 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
30492 … # rendered in a smaller font size, computed based on the `font_size` field.
30493 # The `font_size` itself is not affected by changes in this field.
30494 "strikethrough": True or False, # Whether or not the text is struck through.
30495 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
30498 # `bold`, the `weighted_font_family` is applied first, then `bold`.
30505 "fontFamily": "A String", # The font family of the text.
30507 # The font family can be any font from the Font menu in Docs or from
30508 # [Google Fonts] (https://fonts.google.com/). If the font name is
30509 # unrecognized, the text is rendered in `Arial`.
30510 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
30511 … # `100` between `100` and `900`, inclusive. This range corresponds to the
30512 # numerical values described in the CSS 2.1 Specification,
30516 # The default value is `400` ("normal").
30518 … # The font weight makes up just one component of the rendered font weight.
30519 … # The rendered weight is determined by a combination of the `weight` and the
30522 # * If the text is bold and the weight is less than `400`, the rendered
30524 … # * If the text is bold and the weight is greater than or equal to `400` but
30525 # is less than `700`, the rendered weight is `700`.
30526 … # * If the weight is greater than or equal to `700`, the rendered weight is
30527 # equal to the weight.
30528 # * If the text is not bold, the rendered weight is equal to the weight.
30530 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
30531 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
30532 "magnitude": 3.14, # The magnitude.
30533 "unit": "A String", # The units for magnitude.
30535 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
30536 # or transparent, depending on the `color` field.
30539 "rgbColor": { # An RGB color. # The RGB color value.
30540 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
30541 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
30542 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
30546 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
30549 # Changing the link in an update request causes some other changes to the
30550 # text style of the range:
30552 # * When setting a link, the text foreground color will be updated to the
30553 … # default link color and the text will be underlined. If these fields are
30554 # modified in the same request, those values will be used instead of the
30557 # also update the existing link to point to the new URL.
30560 # will separate the newline character(s) into their own text runs. The
30561 … # link will be applied separately to the runs before and after the newline.
30562 # * Removing a link will update the text style of the range to match the
30563 … # style of the preceding text (or the default text styles if the preceding
30564 … # text is another link) unless different styles are being set in the same
30566 "headingId": "A String", # The ID of a heading in this document.
30568 "bookmarkId": "A String", # The ID of a bookmark in this document.
30570 "underline": True or False, # Whether or not the text is underlined.
30571 "bold": True or False, # Whether or not the text is rendered as bold.
30573 "suggestedInsertionIds": [ # The suggested insertion IDs. A TextRun may
30578 …"suggestedTextStyleChanges": { # The suggested text style changes to this run, keyed by suggestion…
30580 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
30581 # the changes made in this suggestion. This can be used along with the
30586 # text style's parent depends on where the text style is defined:
30588 # * The TextStyle of text in a Paragraph
30589 # inherits from the paragraph's corresponding named style type.
30590 # * The TextStyle on a named style
30591 # inherits from the normal text named style.
30592 # * The TextStyle of the normal text named style inherits
30593 # from the default text style in the Docs editor.
30594 # * The TextStyle on a Paragraph element
30595 … # that is contained in a table may inherit its text style from the table
30598 … # If the text style does not inherit from a parent, unsetting fields will
30599 # revert the style to a value matching the defaults in the Docs editor.
30600 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
30601 # or transparent, depending on the `color` field.
30604 "rgbColor": { # An RGB color. # The RGB color value.
30605 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
30606 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
30607 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
30611 "italic": True or False, # Whether or not the text is italicized.
30612 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
30615 … # rendered in a smaller font size, computed based on the `font_size` field.
30616 # The `font_size` itself is not affected by changes in this field.
30617 … "strikethrough": True or False, # Whether or not the text is struck through.
30618 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
30621 # `bold`, the `weighted_font_family` is applied first, then `bold`.
30628 "fontFamily": "A String", # The font family of the text.
30630 # The font family can be any font from the Font menu in Docs or from
30631 # [Google Fonts] (https://fonts.google.com/). If the font name is
30632 # unrecognized, the text is rendered in `Arial`.
30633 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
30634 … # `100` between `100` and `900`, inclusive. This range corresponds to the
30635 # numerical values described in the CSS 2.1 Specification,
30639 # The default value is `400` ("normal").
30641 … # The font weight makes up just one component of the rendered font weight.
30642 … # The rendered weight is determined by a combination of the `weight` and the
30645 … # * If the text is bold and the weight is less than `400`, the rendered
30647 … # * If the text is bold and the weight is greater than or equal to `400` but
30648 # is less than `700`, the rendered weight is `700`.
30649 … # * If the weight is greater than or equal to `700`, the rendered weight is
30650 # equal to the weight.
30651 … # * If the text is not bold, the rendered weight is equal to the weight.
30653 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
30654 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
30655 "magnitude": 3.14, # The magnitude.
30656 "unit": "A String", # The units for magnitude.
30658 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
30659 # or transparent, depending on the `color` field.
30662 "rgbColor": { # An RGB color. # The RGB color value.
30663 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
30664 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
30665 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
30669 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
30672 … # Changing the link in an update request causes some other changes to the
30673 # text style of the range:
30675 … # * When setting a link, the text foreground color will be updated to the
30676 … # default link color and the text will be underlined. If these fields are
30677 … # modified in the same request, those values will be used instead of the
30680 # also update the existing link to point to the new URL.
30683 … # will separate the newline character(s) into their own text runs. The
30684 … # link will be applied separately to the runs before and after the newline.
30685 … # * Removing a link will update the text style of the range to match the
30686 … # style of the preceding text (or the default text styles if the preceding
30687 … # text is another link) unless different styles are being set in the same
30689 "headingId": "A String", # The ID of a heading in this document.
30691 "bookmarkId": "A String", # The ID of a bookmark in this document.
30693 "underline": True or False, # Whether or not the text is underlined.
30694 "bold": True or False, # Whether or not the text is rendered as bold.
30696 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
30712 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
30718 # spot in the text that is dynamically replaced with content that can change
30720 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Auto…
30723 # text style's parent depends on where the text style is defined:
30725 # * The TextStyle of text in a Paragraph
30726 # inherits from the paragraph's corresponding named style type.
30727 # * The TextStyle on a named style
30728 # inherits from the normal text named style.
30729 # * The TextStyle of the normal text named style inherits
30730 # from the default text style in the Docs editor.
30731 # * The TextStyle on a Paragraph element
30732 # that is contained in a table may inherit its text style from the table
30735 # If the text style does not inherit from a parent, unsetting fields will
30736 # revert the style to a value matching the defaults in the Docs editor.
30737 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
30738 # or transparent, depending on the `color` field.
30741 "rgbColor": { # An RGB color. # The RGB color value.
30742 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
30743 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
30744 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
30748 "italic": True or False, # Whether or not the text is italicized.
30749 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
30752 … # rendered in a smaller font size, computed based on the `font_size` field.
30753 # The `font_size` itself is not affected by changes in this field.
30754 "strikethrough": True or False, # Whether or not the text is struck through.
30755 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
30758 # `bold`, the `weighted_font_family` is applied first, then `bold`.
30765 "fontFamily": "A String", # The font family of the text.
30767 # The font family can be any font from the Font menu in Docs or from
30768 # [Google Fonts] (https://fonts.google.com/). If the font name is
30769 # unrecognized, the text is rendered in `Arial`.
30770 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
30771 … # `100` between `100` and `900`, inclusive. This range corresponds to the
30772 # numerical values described in the CSS 2.1 Specification,
30776 # The default value is `400` ("normal").
30778 … # The font weight makes up just one component of the rendered font weight.
30779 … # The rendered weight is determined by a combination of the `weight` and the
30782 # * If the text is bold and the weight is less than `400`, the rendered
30784 … # * If the text is bold and the weight is greater than or equal to `400` but
30785 # is less than `700`, the rendered weight is `700`.
30786 … # * If the weight is greater than or equal to `700`, the rendered weight is
30787 # equal to the weight.
30788 # * If the text is not bold, the rendered weight is equal to the weight.
30790 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
30791 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
30792 "magnitude": 3.14, # The magnitude.
30793 "unit": "A String", # The units for magnitude.
30795 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
30796 # or transparent, depending on the `color` field.
30799 "rgbColor": { # An RGB color. # The RGB color value.
30800 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
30801 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
30802 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
30806 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
30809 # Changing the link in an update request causes some other changes to the
30810 # text style of the range:
30812 # * When setting a link, the text foreground color will be updated to the
30813 … # default link color and the text will be underlined. If these fields are
30814 # modified in the same request, those values will be used instead of the
30817 # also update the existing link to point to the new URL.
30820 # will separate the newline character(s) into their own text runs. The
30821 … # link will be applied separately to the runs before and after the newline.
30822 # * Removing a link will update the text style of the range to match the
30823 … # style of the preceding text (or the default text styles if the preceding
30824 … # text is another link) unless different styles are being set in the same
30826 "headingId": "A String", # The ID of a heading in this document.
30828 "bookmarkId": "A String", # The ID of a bookmark in this document.
30830 "underline": True or False, # Whether or not the text is underlined.
30831 "bold": True or False, # Whether or not the text is rendered as bold.
30833 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
30837 …"suggestedTextStyleChanges": { # The suggested text style changes to this AutoText, keyed by sugge…
30839 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
30840 # the changes made in this suggestion. This can be used along with the
30845 # text style's parent depends on where the text style is defined:
30847 # * The TextStyle of text in a Paragraph
30848 # inherits from the paragraph's corresponding named style type.
30849 # * The TextStyle on a named style
30850 # inherits from the normal text named style.
30851 # * The TextStyle of the normal text named style inherits
30852 # from the default text style in the Docs editor.
30853 # * The TextStyle on a Paragraph element
30854 … # that is contained in a table may inherit its text style from the table
30857 … # If the text style does not inherit from a parent, unsetting fields will
30858 # revert the style to a value matching the defaults in the Docs editor.
30859 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
30860 # or transparent, depending on the `color` field.
30863 "rgbColor": { # An RGB color. # The RGB color value.
30864 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
30865 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
30866 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
30870 "italic": True or False, # Whether or not the text is italicized.
30871 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
30874 … # rendered in a smaller font size, computed based on the `font_size` field.
30875 # The `font_size` itself is not affected by changes in this field.
30876 … "strikethrough": True or False, # Whether or not the text is struck through.
30877 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
30880 # `bold`, the `weighted_font_family` is applied first, then `bold`.
30887 "fontFamily": "A String", # The font family of the text.
30889 # The font family can be any font from the Font menu in Docs or from
30890 # [Google Fonts] (https://fonts.google.com/). If the font name is
30891 # unrecognized, the text is rendered in `Arial`.
30892 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
30893 … # `100` between `100` and `900`, inclusive. This range corresponds to the
30894 # numerical values described in the CSS 2.1 Specification,
30898 # The default value is `400` ("normal").
30900 … # The font weight makes up just one component of the rendered font weight.
30901 … # The rendered weight is determined by a combination of the `weight` and the
30904 … # * If the text is bold and the weight is less than `400`, the rendered
30906 … # * If the text is bold and the weight is greater than or equal to `400` but
30907 # is less than `700`, the rendered weight is `700`.
30908 … # * If the weight is greater than or equal to `700`, the rendered weight is
30909 # equal to the weight.
30910 … # * If the text is not bold, the rendered weight is equal to the weight.
30912 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
30913 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
30914 "magnitude": 3.14, # The magnitude.
30915 "unit": "A String", # The units for magnitude.
30917 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
30918 # or transparent, depending on the `color` field.
30921 "rgbColor": { # An RGB color. # The RGB color value.
30922 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
30923 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
30924 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
30928 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
30931 … # Changing the link in an update request causes some other changes to the
30932 # text style of the range:
30934 … # * When setting a link, the text foreground color will be updated to the
30935 … # default link color and the text will be underlined. If these fields are
30936 … # modified in the same request, those values will be used instead of the
30939 # also update the existing link to point to the new URL.
30942 … # will separate the newline character(s) into their own text runs. The
30943 … # link will be applied separately to the runs before and after the newline.
30944 … # * Removing a link will update the text style of the range to match the
30945 … # style of the preceding text (or the default text styles if the preceding
30946 … # text is another link) unless different styles are being set in the same
30948 "headingId": "A String", # The ID of a heading in this document.
30950 "bookmarkId": "A String", # The ID of a bookmark in this document.
30952 "underline": True or False, # Whether or not the text is underlined.
30953 "bold": True or False, # Whether or not the text is rendered as bold.
30955 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
30971 "type": "A String", # The type of this auto text.
30972 "suggestedInsertionIds": [ # The suggested insertion IDs. An AutoText
30980 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Inli…
30982 # Similar to text content, like text runs and footnote references, the text
30983 # style of an inline object element can affect content layout as well as the
30987 # text style's parent depends on where the text style is defined:
30989 # * The TextStyle of text in a Paragraph
30990 # inherits from the paragraph's corresponding named style type.
30991 # * The TextStyle on a named style
30992 # inherits from the normal text named style.
30993 # * The TextStyle of the normal text named style inherits
30994 # from the default text style in the Docs editor.
30995 # * The TextStyle on a Paragraph element
30996 # that is contained in a table may inherit its text style from the table
30999 # If the text style does not inherit from a parent, unsetting fields will
31000 # revert the style to a value matching the defaults in the Docs editor.
31001 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
31002 # or transparent, depending on the `color` field.
31005 "rgbColor": { # An RGB color. # The RGB color value.
31006 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
31007 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
31008 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
31012 "italic": True or False, # Whether or not the text is italicized.
31013 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
31016 … # rendered in a smaller font size, computed based on the `font_size` field.
31017 # The `font_size` itself is not affected by changes in this field.
31018 "strikethrough": True or False, # Whether or not the text is struck through.
31019 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
31022 # `bold`, the `weighted_font_family` is applied first, then `bold`.
31029 "fontFamily": "A String", # The font family of the text.
31031 # The font family can be any font from the Font menu in Docs or from
31032 # [Google Fonts] (https://fonts.google.com/). If the font name is
31033 # unrecognized, the text is rendered in `Arial`.
31034 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
31035 … # `100` between `100` and `900`, inclusive. This range corresponds to the
31036 # numerical values described in the CSS 2.1 Specification,
31040 # The default value is `400` ("normal").
31042 … # The font weight makes up just one component of the rendered font weight.
31043 … # The rendered weight is determined by a combination of the `weight` and the
31046 # * If the text is bold and the weight is less than `400`, the rendered
31048 … # * If the text is bold and the weight is greater than or equal to `400` but
31049 # is less than `700`, the rendered weight is `700`.
31050 … # * If the weight is greater than or equal to `700`, the rendered weight is
31051 # equal to the weight.
31052 # * If the text is not bold, the rendered weight is equal to the weight.
31054 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
31055 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
31056 "magnitude": 3.14, # The magnitude.
31057 "unit": "A String", # The units for magnitude.
31059 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
31060 # or transparent, depending on the `color` field.
31063 "rgbColor": { # An RGB color. # The RGB color value.
31064 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
31065 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
31066 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
31070 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
31073 # Changing the link in an update request causes some other changes to the
31074 # text style of the range:
31076 # * When setting a link, the text foreground color will be updated to the
31077 … # default link color and the text will be underlined. If these fields are
31078 # modified in the same request, those values will be used instead of the
31081 # also update the existing link to point to the new URL.
31084 # will separate the newline character(s) into their own text runs. The
31085 … # link will be applied separately to the runs before and after the newline.
31086 # * Removing a link will update the text style of the range to match the
31087 … # style of the preceding text (or the default text styles if the preceding
31088 … # text is another link) unless different styles are being set in the same
31090 "headingId": "A String", # The ID of a heading in this document.
31092 "bookmarkId": "A String", # The ID of a bookmark in this document.
31094 "underline": True or False, # Whether or not the text is underlined.
31095 "bold": True or False, # Whether or not the text is rendered as bold.
31097 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
31101 …"suggestedTextStyleChanges": { # The suggested text style changes to this InlineObject, keyed by s…
31104 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
31105 # the changes made in this suggestion. This can be used along with the
31110 # text style's parent depends on where the text style is defined:
31112 # * The TextStyle of text in a Paragraph
31113 # inherits from the paragraph's corresponding named style type.
31114 # * The TextStyle on a named style
31115 # inherits from the normal text named style.
31116 # * The TextStyle of the normal text named style inherits
31117 # from the default text style in the Docs editor.
31118 # * The TextStyle on a Paragraph element
31119 … # that is contained in a table may inherit its text style from the table
31122 … # If the text style does not inherit from a parent, unsetting fields will
31123 # revert the style to a value matching the defaults in the Docs editor.
31124 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
31125 # or transparent, depending on the `color` field.
31128 "rgbColor": { # An RGB color. # The RGB color value.
31129 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
31130 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
31131 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
31135 "italic": True or False, # Whether or not the text is italicized.
31136 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
31139 … # rendered in a smaller font size, computed based on the `font_size` field.
31140 # The `font_size` itself is not affected by changes in this field.
31141 … "strikethrough": True or False, # Whether or not the text is struck through.
31142 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
31145 # `bold`, the `weighted_font_family` is applied first, then `bold`.
31152 "fontFamily": "A String", # The font family of the text.
31154 # The font family can be any font from the Font menu in Docs or from
31155 # [Google Fonts] (https://fonts.google.com/). If the font name is
31156 # unrecognized, the text is rendered in `Arial`.
31157 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
31158 … # `100` between `100` and `900`, inclusive. This range corresponds to the
31159 # numerical values described in the CSS 2.1 Specification,
31163 # The default value is `400` ("normal").
31165 … # The font weight makes up just one component of the rendered font weight.
31166 … # The rendered weight is determined by a combination of the `weight` and the
31169 … # * If the text is bold and the weight is less than `400`, the rendered
31171 … # * If the text is bold and the weight is greater than or equal to `400` but
31172 # is less than `700`, the rendered weight is `700`.
31173 … # * If the weight is greater than or equal to `700`, the rendered weight is
31174 # equal to the weight.
31175 … # * If the text is not bold, the rendered weight is equal to the weight.
31177 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
31178 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
31179 "magnitude": 3.14, # The magnitude.
31180 "unit": "A String", # The units for magnitude.
31182 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
31183 # or transparent, depending on the `color` field.
31186 "rgbColor": { # An RGB color. # The RGB color value.
31187 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
31188 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
31189 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
31193 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
31196 … # Changing the link in an update request causes some other changes to the
31197 # text style of the range:
31199 … # * When setting a link, the text foreground color will be updated to the
31200 … # default link color and the text will be underlined. If these fields are
31201 … # modified in the same request, those values will be used instead of the
31204 # also update the existing link to point to the new URL.
31207 … # will separate the newline character(s) into their own text runs. The
31208 … # link will be applied separately to the runs before and after the newline.
31209 … # * Removing a link will update the text style of the range to match the
31210 … # style of the preceding text (or the default text styles if the preceding
31211 … # text is another link) unless different styles are being set in the same
31213 "headingId": "A String", # The ID of a heading in this document.
31215 "bookmarkId": "A String", # The ID of a bookmark in this document.
31217 "underline": True or False, # Whether or not the text is underlined.
31218 "bold": True or False, # Whether or not the text is rendered as bold.
31220 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
31236 "inlineObjectId": "A String", # The ID of the InlineObject this
31238 …"suggestedInsertionIds": [ # The suggested insertion IDs. An InlineObjectElement may have multiple…
31245 # footnote reference. A footnote reference is the inline content rendered with
31246 # a number and is used to identify the footnote.
31247 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Foot…
31250 # text style's parent depends on where the text style is defined:
31252 # * The TextStyle of text in a Paragraph
31253 # inherits from the paragraph's corresponding named style type.
31254 # * The TextStyle on a named style
31255 # inherits from the normal text named style.
31256 # * The TextStyle of the normal text named style inherits
31257 # from the default text style in the Docs editor.
31258 # * The TextStyle on a Paragraph element
31259 # that is contained in a table may inherit its text style from the table
31262 # If the text style does not inherit from a parent, unsetting fields will
31263 # revert the style to a value matching the defaults in the Docs editor.
31264 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
31265 # or transparent, depending on the `color` field.
31268 "rgbColor": { # An RGB color. # The RGB color value.
31269 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
31270 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
31271 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
31275 "italic": True or False, # Whether or not the text is italicized.
31276 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
31279 … # rendered in a smaller font size, computed based on the `font_size` field.
31280 # The `font_size` itself is not affected by changes in this field.
31281 "strikethrough": True or False, # Whether or not the text is struck through.
31282 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
31285 # `bold`, the `weighted_font_family` is applied first, then `bold`.
31292 "fontFamily": "A String", # The font family of the text.
31294 # The font family can be any font from the Font menu in Docs or from
31295 # [Google Fonts] (https://fonts.google.com/). If the font name is
31296 # unrecognized, the text is rendered in `Arial`.
31297 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
31298 … # `100` between `100` and `900`, inclusive. This range corresponds to the
31299 # numerical values described in the CSS 2.1 Specification,
31303 # The default value is `400` ("normal").
31305 … # The font weight makes up just one component of the rendered font weight.
31306 … # The rendered weight is determined by a combination of the `weight` and the
31309 # * If the text is bold and the weight is less than `400`, the rendered
31311 … # * If the text is bold and the weight is greater than or equal to `400` but
31312 # is less than `700`, the rendered weight is `700`.
31313 … # * If the weight is greater than or equal to `700`, the rendered weight is
31314 # equal to the weight.
31315 # * If the text is not bold, the rendered weight is equal to the weight.
31317 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
31318 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
31319 "magnitude": 3.14, # The magnitude.
31320 "unit": "A String", # The units for magnitude.
31322 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
31323 # or transparent, depending on the `color` field.
31326 "rgbColor": { # An RGB color. # The RGB color value.
31327 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
31328 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
31329 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
31333 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
31336 # Changing the link in an update request causes some other changes to the
31337 # text style of the range:
31339 # * When setting a link, the text foreground color will be updated to the
31340 … # default link color and the text will be underlined. If these fields are
31341 # modified in the same request, those values will be used instead of the
31344 # also update the existing link to point to the new URL.
31347 # will separate the newline character(s) into their own text runs. The
31348 … # link will be applied separately to the runs before and after the newline.
31349 # * Removing a link will update the text style of the range to match the
31350 … # style of the preceding text (or the default text styles if the preceding
31351 … # text is another link) unless different styles are being set in the same
31353 "headingId": "A String", # The ID of a heading in this document.
31355 "bookmarkId": "A String", # The ID of a bookmark in this document.
31357 "underline": True or False, # Whether or not the text is underlined.
31358 "bold": True or False, # Whether or not the text is rendered as bold.
31360 "footnoteNumber": "A String", # The rendered number of this footnote.
31361 …"suggestedInsertionIds": [ # The suggested insertion IDs. A FootnoteReference may have multiple in…
31366 "footnoteId": "A String", # The ID of the footnote that
31367 # contains the content of this footnote reference.
31368 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
31372 …"suggestedTextStyleChanges": { # The suggested text style changes to this FootnoteReference, keyed…
31375 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
31376 # the changes made in this suggestion. This can be used along with the
31381 # text style's parent depends on where the text style is defined:
31383 # * The TextStyle of text in a Paragraph
31384 # inherits from the paragraph's corresponding named style type.
31385 # * The TextStyle on a named style
31386 # inherits from the normal text named style.
31387 # * The TextStyle of the normal text named style inherits
31388 # from the default text style in the Docs editor.
31389 # * The TextStyle on a Paragraph element
31390 … # that is contained in a table may inherit its text style from the table
31393 … # If the text style does not inherit from a parent, unsetting fields will
31394 # revert the style to a value matching the defaults in the Docs editor.
31395 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
31396 # or transparent, depending on the `color` field.
31399 "rgbColor": { # An RGB color. # The RGB color value.
31400 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
31401 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
31402 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
31406 "italic": True or False, # Whether or not the text is italicized.
31407 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
31410 … # rendered in a smaller font size, computed based on the `font_size` field.
31411 # The `font_size` itself is not affected by changes in this field.
31412 … "strikethrough": True or False, # Whether or not the text is struck through.
31413 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
31416 # `bold`, the `weighted_font_family` is applied first, then `bold`.
31423 "fontFamily": "A String", # The font family of the text.
31425 # The font family can be any font from the Font menu in Docs or from
31426 # [Google Fonts] (https://fonts.google.com/). If the font name is
31427 # unrecognized, the text is rendered in `Arial`.
31428 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
31429 … # `100` between `100` and `900`, inclusive. This range corresponds to the
31430 # numerical values described in the CSS 2.1 Specification,
31434 # The default value is `400` ("normal").
31436 … # The font weight makes up just one component of the rendered font weight.
31437 … # The rendered weight is determined by a combination of the `weight` and the
31440 … # * If the text is bold and the weight is less than `400`, the rendered
31442 … # * If the text is bold and the weight is greater than or equal to `400` but
31443 # is less than `700`, the rendered weight is `700`.
31444 … # * If the weight is greater than or equal to `700`, the rendered weight is
31445 # equal to the weight.
31446 … # * If the text is not bold, the rendered weight is equal to the weight.
31448 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
31449 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
31450 "magnitude": 3.14, # The magnitude.
31451 "unit": "A String", # The units for magnitude.
31453 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
31454 # or transparent, depending on the `color` field.
31457 "rgbColor": { # An RGB color. # The RGB color value.
31458 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
31459 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
31460 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
31464 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
31467 … # Changing the link in an update request causes some other changes to the
31468 # text style of the range:
31470 … # * When setting a link, the text foreground color will be updated to the
31471 … # default link color and the text will be underlined. If these fields are
31472 … # modified in the same request, those values will be used instead of the
31475 # also update the existing link to point to the new URL.
31478 … # will separate the newline character(s) into their own text runs. The
31479 … # link will be applied separately to the runs before and after the newline.
31480 … # * Removing a link will update the text style of the range to match the
31481 … # style of the preceding text (or the default text styles if the preceding
31482 … # text is another link) unless different styles are being set in the same
31484 "headingId": "A String", # The ID of a heading in this document.
31486 "bookmarkId": "A String", # The ID of a bookmark in this document.
31488 "underline": True or False, # Whether or not the text is underlined.
31489 "bold": True or False, # Whether or not the text is rendered as bold.
31491 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
31510 …"suggestedPositionedObjectIds": { # The IDs of the positioned objects that are suggested to be att…
31513 "objectIds": [ # The object IDs.
31518 …"bullet": { # Describes the bullet of a paragraph. # The bullet for this paragraph. If not present…
31520 "nestingLevel": 42, # The nesting level of this paragraph in the list.
31521 "listId": "A String", # The ID of the list this paragraph belongs to.
31522 …"textStyle": { # Represents the styling that can be applied to text. # The paragraph specific text…
31525 # text style's parent depends on where the text style is defined:
31527 # * The TextStyle of text in a Paragraph
31528 # inherits from the paragraph's corresponding named style type.
31529 # * The TextStyle on a named style
31530 # inherits from the normal text named style.
31531 # * The TextStyle of the normal text named style inherits
31532 # from the default text style in the Docs editor.
31533 # * The TextStyle on a Paragraph element
31534 # that is contained in a table may inherit its text style from the table
31537 # If the text style does not inherit from a parent, unsetting fields will
31538 # revert the style to a value matching the defaults in the Docs editor.
31539 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
31540 # or transparent, depending on the `color` field.
31543 "rgbColor": { # An RGB color. # The RGB color value.
31544 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
31545 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
31546 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
31550 "italic": True or False, # Whether or not the text is italicized.
31551 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
31554 # rendered in a smaller font size, computed based on the `font_size` field.
31555 # The `font_size` itself is not affected by changes in this field.
31556 "strikethrough": True or False, # Whether or not the text is struck through.
31557 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
31560 # `bold`, the `weighted_font_family` is applied first, then `bold`.
31567 "fontFamily": "A String", # The font family of the text.
31569 # The font family can be any font from the Font menu in Docs or from
31570 # [Google Fonts] (https://fonts.google.com/). If the font name is
31571 # unrecognized, the text is rendered in `Arial`.
31572 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
31573 # `100` between `100` and `900`, inclusive. This range corresponds to the
31574 # numerical values described in the CSS 2.1 Specification,
31578 # The default value is `400` ("normal").
31580 # The font weight makes up just one component of the rendered font weight.
31581 # The rendered weight is determined by a combination of the `weight` and the
31584 # * If the text is bold and the weight is less than `400`, the rendered
31586 # * If the text is bold and the weight is greater than or equal to `400` but
31587 # is less than `700`, the rendered weight is `700`.
31588 # * If the weight is greater than or equal to `700`, the rendered weight is
31589 # equal to the weight.
31590 # * If the text is not bold, the rendered weight is equal to the weight.
31592 "smallCaps": True or False, # Whether or not the text is in small capital letters.
31593 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
31594 "magnitude": 3.14, # The magnitude.
31595 "unit": "A String", # The units for magnitude.
31597 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
31598 # or transparent, depending on the `color` field.
31601 "rgbColor": { # An RGB color. # The RGB color value.
31602 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
31603 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
31604 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
31608 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
31611 # Changing the link in an update request causes some other changes to the
31612 # text style of the range:
31614 # * When setting a link, the text foreground color will be updated to the
31615 # default link color and the text will be underlined. If these fields are
31616 # modified in the same request, those values will be used instead of the
31619 # also update the existing link to point to the new URL.
31622 # will separate the newline character(s) into their own text runs. The
31623 # link will be applied separately to the runs before and after the newline.
31624 # * Removing a link will update the text style of the range to match the
31625 # style of the preceding text (or the default text styles if the preceding
31626 # text is another link) unless different styles are being set in the same
31628 "headingId": "A String", # The ID of a heading in this document.
31630 "bookmarkId": "A String", # The ID of a bookmark in this document.
31632 "underline": True or False, # Whether or not the text is underlined.
31633 "bold": True or False, # Whether or not the text is rendered as bold.
31636 "suggestedBulletChanges": { # The suggested changes to this paragraph's bullet.
31638 … "bullet": { # Describes the bullet of a paragraph. # A Bullet that only includes the changes made
31639 # in this suggestion. This can be used along with the
31642 "nestingLevel": 42, # The nesting level of this paragraph in the list.
31643 "listId": "A String", # The ID of the list this paragraph belongs to.
31644 …"textStyle": { # Represents the styling that can be applied to text. # The paragraph specific text…
31647 # text style's parent depends on where the text style is defined:
31649 # * The TextStyle of text in a Paragraph
31650 # inherits from the paragraph's corresponding named style type.
31651 # * The TextStyle on a named style
31652 # inherits from the normal text named style.
31653 # * The TextStyle of the normal text named style inherits
31654 # from the default text style in the Docs editor.
31655 # * The TextStyle on a Paragraph element
31656 # that is contained in a table may inherit its text style from the table
31659 # If the text style does not inherit from a parent, unsetting fields will
31660 # revert the style to a value matching the defaults in the Docs editor.
31661 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
31662 # or transparent, depending on the `color` field.
31665 "rgbColor": { # An RGB color. # The RGB color value.
31666 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
31667 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
31668 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
31672 "italic": True or False, # Whether or not the text is italicized.
31673 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
31676 … # rendered in a smaller font size, computed based on the `font_size` field.
31677 # The `font_size` itself is not affected by changes in this field.
31678 "strikethrough": True or False, # Whether or not the text is struck through.
31679 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
31682 # `bold`, the `weighted_font_family` is applied first, then `bold`.
31689 "fontFamily": "A String", # The font family of the text.
31691 # The font family can be any font from the Font menu in Docs or from
31692 # [Google Fonts] (https://fonts.google.com/). If the font name is
31693 # unrecognized, the text is rendered in `Arial`.
31694 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
31695 … # `100` between `100` and `900`, inclusive. This range corresponds to the
31696 # numerical values described in the CSS 2.1 Specification,
31700 # The default value is `400` ("normal").
31702 … # The font weight makes up just one component of the rendered font weight.
31703 … # The rendered weight is determined by a combination of the `weight` and the
31706 # * If the text is bold and the weight is less than `400`, the rendered
31708 … # * If the text is bold and the weight is greater than or equal to `400` but
31709 # is less than `700`, the rendered weight is `700`.
31710 … # * If the weight is greater than or equal to `700`, the rendered weight is
31711 # equal to the weight.
31712 # * If the text is not bold, the rendered weight is equal to the weight.
31714 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
31715 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
31716 "magnitude": 3.14, # The magnitude.
31717 "unit": "A String", # The units for magnitude.
31719 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
31720 # or transparent, depending on the `color` field.
31723 "rgbColor": { # An RGB color. # The RGB color value.
31724 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
31725 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
31726 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
31730 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
31733 # Changing the link in an update request causes some other changes to the
31734 # text style of the range:
31736 # * When setting a link, the text foreground color will be updated to the
31737 … # default link color and the text will be underlined. If these fields are
31738 # modified in the same request, those values will be used instead of the
31741 # also update the existing link to point to the new URL.
31744 # will separate the newline character(s) into their own text runs. The
31745 … # link will be applied separately to the runs before and after the newline.
31746 # * Removing a link will update the text style of the range to match the
31747 … # style of the preceding text (or the default text styles if the preceding
31748 … # text is another link) unless different styles are being set in the same
31750 "headingId": "A String", # The ID of a heading in this document.
31752 "bookmarkId": "A String", # The ID of a bookmark in this document.
31754 "underline": True or False, # Whether or not the text is underlined.
31755 "bold": True or False, # Whether or not the text is rendered as bold.
31758 …te": { # A mask that indicates which of the fields on the base # A mask that indicates which of th…
31762 … "nestingLevelSuggested": True or False, # Indicates if there was a suggested change to the
31764 …hat indicates which of the fields on the base TextStyle have been changed in this suggestion. # A …
31779 … "listIdSuggested": True or False, # Indicates if there was a suggested change to the
31784 … "positionedObjectIds": [ # The IDs of the positioned objects tethered to this paragraph.
31787 …"suggestedParagraphStyleChanges": { # The suggested paragraph style changes to this paragraph, key…
31791 …tes which of the fields on the base ParagraphStyle have been changed in this suggestion. # A mask …
31812 … mask that indicates which of the fields on the base Shading have been changed in this # A mask th…
31815 …ckgroundColorSuggested": True or False, # Indicates if there was a suggested change to the Shading.
31819 # the changes made in this suggestion. This can be used along with the
31824 # A paragraph style's parent depends on where the paragraph style is defined:
31826 # * The ParagraphStyle on a Paragraph
31827 # inherits from the paragraph's corresponding named style type.
31828 # * The ParagraphStyle on a named style
31829 # inherits from the normal text named style.
31830 # * The ParagraphStyle of the normal text named style inherits
31831 # from the default paragraph style in the Docs editor.
31832 # * The ParagraphStyle on a Paragraph
31834 # the table style.
31836 # If the paragraph style does not inherit from a parent, unsetting fields will
31837 # revert the style to a value matching the defaults in the Docs editor.
31838 "spacingMode": "A String", # The spacing mode for the paragraph.
31839 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
31842 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
31843 # inherited from the parent.
31844 "magnitude": 3.14, # The magnitude.
31845 "unit": "A String", # The units for magnitude.
31847 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
31848 # page or column as the next paragraph if possible. If unset, the value is
31849 # inherited from the parent.
31850 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
31851 # is represented as 100.0. If unset, the value is inherited from the parent.
31852 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
31853 # is inherited from the parent.
31854 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
31855 # inherited from the parent.
31857 … # The bottom border is rendered when the paragraph below has different border
31861 # changes to a paragraph border the new border must be specified in
31863 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
31866 "rgbColor": { # An RGB color. # The RGB color value.
31867 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
31868 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
31869 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
31873 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
31874 "magnitude": 3.14, # The magnitude.
31875 "unit": "A String", # The units for magnitude.
31877 "dashStyle": "A String", # The dash style of the border.
31878 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
31879 "magnitude": 3.14, # The magnitude.
31880 "unit": "A String", # The units for magnitude.
31883 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
31884 # the start of the text, based on the current paragraph direction. If unset,
31885 # the value is inherited from the parent.
31886 "magnitude": 3.14, # The magnitude.
31887 "unit": "A String", # The units for magnitude.
31889 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
31890 # If unset, the value is inherited from the parent.
31892 # The between border is rendered when the adjacent paragraph has the same
31896 # changes to a paragraph border the new border must be specified in
31898 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
31901 "rgbColor": { # An RGB color. # The RGB color value.
31902 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
31903 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
31904 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
31908 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
31909 "magnitude": 3.14, # The magnitude.
31910 "unit": "A String", # The units for magnitude.
31912 "dashStyle": "A String", # The dash style of the border.
31913 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
31914 "magnitude": 3.14, # The magnitude.
31915 "unit": "A String", # The units for magnitude.
31918 "namedStyleType": "A String", # The named style type of the paragraph.
31920 # Since updating the named style type affects other properties within
31921 … # ParagraphStyle, the named style type is applied before the other properties
31923 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
31924 # from the parent.
31927 # changes to a paragraph border the new border must be specified in
31929 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
31932 "rgbColor": { # An RGB color. # The RGB color value.
31933 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
31934 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
31935 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
31939 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
31940 "magnitude": 3.14, # The magnitude.
31941 "unit": "A String", # The units for magnitude.
31943 "dashStyle": "A String", # The dash style of the border.
31944 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
31945 "magnitude": 3.14, # The magnitude.
31946 "unit": "A String", # The units for magnitude.
31949 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
31950 # the end of the text, based on the current paragraph direction. If unset,
31951 # the value is inherited from the parent.
31952 "magnitude": 3.14, # The magnitude.
31953 "unit": "A String", # The units for magnitude.
31955 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
31956 # from the parent.
31959 # changes to a paragraph border the new border must be specified in
31961 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
31964 "rgbColor": { # An RGB color. # The RGB color value.
31965 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
31966 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
31967 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
31971 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
31972 "magnitude": 3.14, # The magnitude.
31973 "unit": "A String", # The units for magnitude.
31975 "dashStyle": "A String", # The dash style of the border.
31976 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
31977 "magnitude": 3.14, # The magnitude.
31978 "unit": "A String", # The units for magnitude.
31981 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
31982 # inherited from the parent.
31983 "magnitude": 3.14, # The magnitude.
31984 "unit": "A String", # The units for magnitude.
31986 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
31988 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
31990 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
31993 "rgbColor": { # An RGB color. # The RGB color value.
31994 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
31995 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
31996 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
32001 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
32002 # from the parent.
32004 # The top border is rendered when the paragraph above has different border
32008 # changes to a paragraph border the new border must be specified in
32010 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
32013 "rgbColor": { # An RGB color. # The RGB color value.
32014 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
32015 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
32016 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
32020 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
32021 "magnitude": 3.14, # The magnitude.
32022 "unit": "A String", # The units for magnitude.
32024 "dashStyle": "A String", # The dash style of the border.
32025 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
32026 "magnitude": 3.14, # The magnitude.
32027 "unit": "A String", # The units for magnitude.
32030 … "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
32033 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
32034 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
32035 "magnitude": 3.14, # The magnitude.
32036 "unit": "A String", # The units for magnitude.
32040 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
32041 # the value is inherited from the parent.
32042 "magnitude": 3.14, # The magnitude.
32043 "unit": "A String", # The units for magnitude.
32045 "alignment": "A String", # The text alignment for this paragraph.
32046 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
32047 # column if possible. If unset, the value is inherited from the parent.
32051 … "paragraphStyle": { # Styles that apply to a whole paragraph. # The style of this paragraph.
32054 # A paragraph style's parent depends on where the paragraph style is defined:
32056 # * The ParagraphStyle on a Paragraph
32057 # inherits from the paragraph's corresponding named style type.
32058 # * The ParagraphStyle on a named style
32059 # inherits from the normal text named style.
32060 # * The ParagraphStyle of the normal text named style inherits
32061 # from the default paragraph style in the Docs editor.
32062 # * The ParagraphStyle on a Paragraph
32064 # the table style.
32066 # If the paragraph style does not inherit from a parent, unsetting fields will
32067 # revert the style to a value matching the defaults in the Docs editor.
32068 "spacingMode": "A String", # The spacing mode for the paragraph.
32069 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
32072 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
32073 # inherited from the parent.
32074 "magnitude": 3.14, # The magnitude.
32075 "unit": "A String", # The units for magnitude.
32077 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
32078 # page or column as the next paragraph if possible. If unset, the value is
32079 # inherited from the parent.
32080 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
32081 # is represented as 100.0. If unset, the value is inherited from the parent.
32082 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
32083 # is inherited from the parent.
32084 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
32085 # inherited from the parent.
32087 # The bottom border is rendered when the paragraph below has different border
32091 # changes to a paragraph border the new border must be specified in
32093 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
32096 "rgbColor": { # An RGB color. # The RGB color value.
32097 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
32098 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
32099 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
32103 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
32104 "magnitude": 3.14, # The magnitude.
32105 "unit": "A String", # The units for magnitude.
32107 "dashStyle": "A String", # The dash style of the border.
32108 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
32109 "magnitude": 3.14, # The magnitude.
32110 "unit": "A String", # The units for magnitude.
32113 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
32114 # the start of the text, based on the current paragraph direction. If unset,
32115 # the value is inherited from the parent.
32116 "magnitude": 3.14, # The magnitude.
32117 "unit": "A String", # The units for magnitude.
32119 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
32120 # If unset, the value is inherited from the parent.
32122 # The between border is rendered when the adjacent paragraph has the same
32126 # changes to a paragraph border the new border must be specified in
32128 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
32131 "rgbColor": { # An RGB color. # The RGB color value.
32132 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
32133 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
32134 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
32138 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
32139 "magnitude": 3.14, # The magnitude.
32140 "unit": "A String", # The units for magnitude.
32142 "dashStyle": "A String", # The dash style of the border.
32143 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
32144 "magnitude": 3.14, # The magnitude.
32145 "unit": "A String", # The units for magnitude.
32148 "namedStyleType": "A String", # The named style type of the paragraph.
32150 # Since updating the named style type affects other properties within
32151 # ParagraphStyle, the named style type is applied before the other properties
32153 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
32154 # from the parent.
32157 # changes to a paragraph border the new border must be specified in
32159 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
32162 "rgbColor": { # An RGB color. # The RGB color value.
32163 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
32164 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
32165 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
32169 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
32170 "magnitude": 3.14, # The magnitude.
32171 "unit": "A String", # The units for magnitude.
32173 "dashStyle": "A String", # The dash style of the border.
32174 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
32175 "magnitude": 3.14, # The magnitude.
32176 "unit": "A String", # The units for magnitude.
32179 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
32180 # the end of the text, based on the current paragraph direction. If unset,
32181 # the value is inherited from the parent.
32182 "magnitude": 3.14, # The magnitude.
32183 "unit": "A String", # The units for magnitude.
32185 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
32186 # from the parent.
32189 # changes to a paragraph border the new border must be specified in
32191 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
32194 "rgbColor": { # An RGB color. # The RGB color value.
32195 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
32196 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
32197 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
32201 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
32202 "magnitude": 3.14, # The magnitude.
32203 "unit": "A String", # The units for magnitude.
32205 "dashStyle": "A String", # The dash style of the border.
32206 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
32207 "magnitude": 3.14, # The magnitude.
32208 "unit": "A String", # The units for magnitude.
32211 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
32212 # inherited from the parent.
32213 "magnitude": 3.14, # The magnitude.
32214 "unit": "A String", # The units for magnitude.
32216 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
32218 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
32220 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
32223 "rgbColor": { # An RGB color. # The RGB color value.
32224 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
32225 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
32226 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
32231 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
32232 # from the parent.
32234 # The top border is rendered when the paragraph above has different border
32238 # changes to a paragraph border the new border must be specified in
32240 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
32243 "rgbColor": { # An RGB color. # The RGB color value.
32244 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
32245 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
32246 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
32250 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
32251 "magnitude": 3.14, # The magnitude.
32252 "unit": "A String", # The units for magnitude.
32254 "dashStyle": "A String", # The dash style of the border.
32255 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
32256 "magnitude": 3.14, # The magnitude.
32257 "unit": "A String", # The units for magnitude.
32260 … "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
32263 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
32264 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
32265 "magnitude": 3.14, # The magnitude.
32266 "unit": "A String", # The units for magnitude.
32270 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
32271 # the value is inherited from the parent.
32272 "magnitude": 3.14, # The magnitude.
32273 "unit": "A String", # The units for magnitude.
32275 "alignment": "A String", # The text alignment for this paragraph.
32276 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
32277 # column if possible. If unset, the value is inherited from the parent.
32282 "rows": 42, # Number of rows in the table.
32283 "tableStyle": { # Styles that apply to a table. # The style of the table.
32284 "tableColumnProperties": [ # The properties of each column.
32287 # HTML. So the properties for a row can be found on the row's
32289 { # The properties of a column in a table.
32290 …th": { # A magnitude in a single direction in the specified units. # The width of the column. Set …
32292 "magnitude": 3.14, # The magnitude.
32293 "unit": "A String", # The units for magnitude.
32295 "widthType": "A String", # The width type of the column.
32299 "suggestedInsertionIds": [ # The suggested insertion IDs. A Table may have
32304 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
32308 "tableRows": [ # The contents and style of each row.
32309 { # The contents and style of a row in a Table.
32310 … "endIndex": 42, # The zero-based end index of this row, exclusive, in UTF-16 code units.
32311 "tableCells": [ # The contents and style of each cell in this row.
32314 # different number of cells than other rows in the same table.
32315 { # The contents and style of a cell in a Table.
32316 … "endIndex": 42, # The zero-based end index of this cell, exclusive, in UTF-16 code units.
32317 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
32321 "suggestedInsertionIds": [ # The suggested insertion IDs. A TableCell
32326 "content": [ # The content of the cell.
32329 "tableCellStyle": { # The style of a TableCell. # The style of the cell.
32332 # A table cell style can inherit from the table's style.
32333 …ngBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of t…
32334 "magnitude": 3.14, # The magnitude.
32335 "unit": "A String", # The units for magnitude.
32337 … "borderBottom": { # A border around a table cell. # The bottom border of the cell.
32338 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
32341 "rgbColor": { # An RGB color. # The RGB color value.
32342 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
32343 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
32344 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
32348 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
32349 "magnitude": 3.14, # The magnitude.
32350 "unit": "A String", # The units for magnitude.
32352 "dashStyle": "A String", # The dash style of the border.
32354 …ddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of th…
32355 "magnitude": 3.14, # The magnitude.
32356 "unit": "A String", # The units for magnitude.
32358 …paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of th…
32359 "magnitude": 3.14, # The magnitude.
32360 "unit": "A String", # The units for magnitude.
32362 … "borderLeft": { # A border around a table cell. # The left border of the cell.
32363 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
32366 "rgbColor": { # An RGB color. # The RGB color value.
32367 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
32368 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
32369 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
32373 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
32374 "magnitude": 3.14, # The magnitude.
32375 "unit": "A String", # The units for magnitude.
32377 "dashStyle": "A String", # The dash style of the border.
32379 "columnSpan": 42, # The column span of the cell. This property is read-only.
32380 …# A color that can either be fully opaque or fully transparent. # The background color of the cell.
32383 "rgbColor": { # An RGB color. # The RGB color value.
32384 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
32385 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
32386 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
32390 … "borderRight": { # A border around a table cell. # The right border of the cell.
32391 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
32394 "rgbColor": { # An RGB color. # The RGB color value.
32395 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
32396 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
32397 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
32401 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
32402 "magnitude": 3.14, # The magnitude.
32403 "unit": "A String", # The units for magnitude.
32405 "dashStyle": "A String", # The dash style of the border.
32407 "rowSpan": 42, # The row span of the cell. This property is read-only.
32408 …"contentAlignment": "A String", # The alignment of the content in the table cell. The default alig…
32409 … # matches the alignment for newly created table cells in the Docs editor.
32410 …dingRight": { # A magnitude in a single direction in the specified units. # The right padding of t…
32411 "magnitude": 3.14, # The magnitude.
32412 "unit": "A String", # The units for magnitude.
32414 "borderTop": { # A border around a table cell. # The top border of the cell.
32415 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
32418 "rgbColor": { # An RGB color. # The RGB color value.
32419 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
32420 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
32421 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
32425 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
32426 "magnitude": 3.14, # The magnitude.
32427 "unit": "A String", # The units for magnitude.
32429 "dashStyle": "A String", # The dash style of the border.
32432 … "startIndex": 42, # The zero-based start index of this cell, in UTF-16 code units.
32433 …"suggestedTableCellStyleChanges": { # The suggested changes to the table cell style, keyed by sugg…
32435 … "tableCellStyle": { # The style of a TableCell. # A TableCellStyle that only includes
32436 # the changes made in this suggestion. This can be used along with the
32441 # A table cell style can inherit from the table's style.
32442 …ngBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of t…
32443 "magnitude": 3.14, # The magnitude.
32444 "unit": "A String", # The units for magnitude.
32446 … "borderBottom": { # A border around a table cell. # The bottom border of the cell.
32447 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
32450 "rgbColor": { # An RGB color. # The RGB color value.
32451 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
32452 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
32453 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
32457 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
32458 "magnitude": 3.14, # The magnitude.
32459 "unit": "A String", # The units for magnitude.
32461 "dashStyle": "A String", # The dash style of the border.
32463 …ddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of th…
32464 "magnitude": 3.14, # The magnitude.
32465 "unit": "A String", # The units for magnitude.
32467 …paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of th…
32468 "magnitude": 3.14, # The magnitude.
32469 "unit": "A String", # The units for magnitude.
32471 … "borderLeft": { # A border around a table cell. # The left border of the cell.
32472 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
32475 "rgbColor": { # An RGB color. # The RGB color value.
32476 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
32477 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
32478 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
32482 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
32483 "magnitude": 3.14, # The magnitude.
32484 "unit": "A String", # The units for magnitude.
32486 "dashStyle": "A String", # The dash style of the border.
32488 … "columnSpan": 42, # The column span of the cell. This property is read-only.
32489 …# A color that can either be fully opaque or fully transparent. # The background color of the cell.
32492 "rgbColor": { # An RGB color. # The RGB color value.
32493 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
32494 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
32495 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
32499 … "borderRight": { # A border around a table cell. # The right border of the cell.
32500 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
32503 "rgbColor": { # An RGB color. # The RGB color value.
32504 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
32505 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
32506 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
32510 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
32511 "magnitude": 3.14, # The magnitude.
32512 "unit": "A String", # The units for magnitude.
32514 "dashStyle": "A String", # The dash style of the border.
32516 "rowSpan": 42, # The row span of the cell. This property is read-only.
32517 …"contentAlignment": "A String", # The alignment of the content in the table cell. The default alig…
32518 … # matches the alignment for newly created table cells in the Docs editor.
32519 …dingRight": { # A magnitude in a single direction in the specified units. # The right padding of t…
32520 "magnitude": 3.14, # The magnitude.
32521 "unit": "A String", # The units for magnitude.
32523 … "borderTop": { # A border around a table cell. # The top border of the cell.
32524 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
32527 "rgbColor": { # An RGB color. # The RGB color value.
32528 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
32529 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
32530 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
32534 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
32535 "magnitude": 3.14, # The magnitude.
32536 "unit": "A String", # The units for magnitude.
32538 "dashStyle": "A String", # The dash style of the border.
32541 …tes which of the fields on the base TableCellStyle have been changed in this suggestion. # A mask …
32560 … "tableRowStyle": { # Styles that apply to a table row. # The style of the table row.
32561 …agnitude in a single direction in the specified units. # The minimum height of the row. The row wi…
32562 # at a height equal to or greater than this value in order to show all the
32563 # content in the row's cells.
32564 "magnitude": 3.14, # The magnitude.
32565 "unit": "A String", # The units for magnitude.
32568 "suggestedInsertionIds": [ # The suggested insertion IDs. A TableRow
32573 "startIndex": 42, # The zero-based start index of this row, in UTF-16 code units.
32574 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
32578 …"suggestedTableRowStyleChanges": { # The suggested style changes to this row, keyed by suggestion …
32582 # the changes made in this suggestion. This can be used along with the
32585 …agnitude in a single direction in the specified units. # The minimum height of the row. The row wi…
32586 … # at a height equal to or greater than this value in order to show all the
32587 # content in the row's cells.
32588 "magnitude": 3.14, # The magnitude.
32589 "unit": "A String", # The units for magnitude.
32592 …ates which of the fields on the base TableRowStyle have been changed in this suggestion. # A mask …
32600 "columns": 42, # Number of columns in the table.
32608 "documentStyle": { # The style of the document. # The style of the document.
32609 …"defaultFooterId": "A String", # The ID of the default footer. If not set, there is no default foo…
32610 … "evenPageFooterId": "A String", # The ID of the footer used only for even pages. The value of
32612 # whether to use the default_footer_id or this value for the
32614 …"firstPageFooterId": "A String", # The ID of the footer used only for the first page. If not set t…
32615 # a unique footer for the first page does not exist. The value of
32617 # whether to use the default_footer_id or this value for the
32618 # footer on the first page. If not set, there is no first page footer.
32619 "pageSize": { # A width and height. # The size of a page in the document.
32620 … "width": { # A magnitude in a single direction in the specified units. # The width of the object.
32621 "magnitude": 3.14, # The magnitude.
32622 "unit": "A String", # The units for magnitude.
32624 …"height": { # A magnitude in a single direction in the specified units. # The height of the object.
32625 "magnitude": 3.14, # The magnitude.
32626 "unit": "A String", # The units for magnitude.
32629 …"defaultHeaderId": "A String", # The ID of the default header. If not set, there is no default hea…
32630 …"marginBottom": { # A magnitude in a single direction in the specified units. # The bottom page ma…
32631 "magnitude": 3.14, # The magnitude.
32632 "unit": "A String", # The units for magnitude.
32634 …"firstPageHeaderId": "A String", # The ID of the header used only for the first page. If not set t…
32635 # a unique header for the first page does not exist.
32636 # The value of use_first_page_header_footer determines
32637 # whether to use the default_header_id or this value for the
32638 # header on the first page. If not set, there is no first page header.
32639 … "evenPageHeaderId": "A String", # The ID of the header used only for even pages. The value of
32641 # whether to use the default_header_id or this value for the
32643 …aderFooter": True or False, # Indicates whether to use the first page header / footer IDs for the
32645 …"marginLeft": { # A magnitude in a single direction in the specified units. # The left page margin.
32646 "magnitude": 3.14, # The magnitude.
32647 "unit": "A String", # The units for magnitude.
32649 …eaderFooter": True or False, # Indicates whether to use the even page header / footer IDs for the
32651 "background": { # Represents the background of a document. # The background of the document.
32652 … "color": { # A color that can either be fully opaque or fully transparent. # The background color.
32655 "rgbColor": { # An RGB color. # The RGB color value.
32656 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
32657 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
32658 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
32663 …"marginRight": { # A magnitude in a single direction in the specified units. # The right page marg…
32664 "magnitude": 3.14, # The magnitude.
32665 "unit": "A String", # The units for magnitude.
32667 "pageNumberStart": 42, # The page number from which to start counting the number of pages.
32668 … "marginTop": { # A magnitude in a single direction in the specified units. # The top page margin.
32669 "magnitude": 3.14, # The magnitude.
32670 "unit": "A String", # The units for magnitude.
32673 "title": "A String", # The title of the document.
32674 "namedRanges": { # The named ranges in the document, keyed by name.
32675 "a_key": { # A collection of all the NamedRanges in the
32677 "namedRanges": [ # The NamedRanges that share the same name.
32678 { # A collection of Ranges with the same named range
32684 # the same name, but every named range has a unique ID.
32688 # However, certain document changes can cause the range to be split into
32692 # access to the document can see its named ranges.
32693 "ranges": [ # The ranges that belong to this named range.
32695 … "endIndex": 42, # The zero-based end index of this range, exclusive, in UTF-16 code units.
32699 … "startIndex": 42, # The zero-based start index of this range, in UTF-16 code units.
32703 …"segmentId": "A String", # The ID of the header, footer or footnote that this range is contained i…
32704 # An empty segment ID signifies the document's body.
32707 "namedRangeId": "A String", # The ID of the named range.
32708 "name": "A String", # The name of the named range.
32711 "name": "A String", # The name that all the named ranges share.
32714 …"suggestedDocumentStyleChanges": { # The suggested changes to the style of the document, keyed by …
32715 "a_key": { # A suggested change to the DocumentStyle.
32716 "documentStyle": { # The style of the document. # A DocumentStyle that only includes
32717 # the changes made in this suggestion. This can be used along with the
32720 …"defaultFooterId": "A String", # The ID of the default footer. If not set, there is no default foo…
32721 … "evenPageFooterId": "A String", # The ID of the footer used only for even pages. The value of
32723 # whether to use the default_footer_id or this value for the
32725 …"firstPageFooterId": "A String", # The ID of the footer used only for the first page. If not set t…
32726 # a unique footer for the first page does not exist. The value of
32728 # whether to use the default_footer_id or this value for the
32729 # footer on the first page. If not set, there is no first page footer.
32730 "pageSize": { # A width and height. # The size of a page in the document.
32731 … "width": { # A magnitude in a single direction in the specified units. # The width of the object.
32732 "magnitude": 3.14, # The magnitude.
32733 "unit": "A String", # The units for magnitude.
32735 …"height": { # A magnitude in a single direction in the specified units. # The height of the object.
32736 "magnitude": 3.14, # The magnitude.
32737 "unit": "A String", # The units for magnitude.
32740 …"defaultHeaderId": "A String", # The ID of the default header. If not set, there is no default hea…
32741 …"marginBottom": { # A magnitude in a single direction in the specified units. # The bottom page ma…
32742 "magnitude": 3.14, # The magnitude.
32743 "unit": "A String", # The units for magnitude.
32745 …"firstPageHeaderId": "A String", # The ID of the header used only for the first page. If not set t…
32746 # a unique header for the first page does not exist.
32747 # The value of use_first_page_header_footer determines
32748 # whether to use the default_header_id or this value for the
32749 # header on the first page. If not set, there is no first page header.
32750 … "evenPageHeaderId": "A String", # The ID of the header used only for even pages. The value of
32752 # whether to use the default_header_id or this value for the
32754 …aderFooter": True or False, # Indicates whether to use the first page header / footer IDs for the
32756 …"marginLeft": { # A magnitude in a single direction in the specified units. # The left page margin.
32757 "magnitude": 3.14, # The magnitude.
32758 "unit": "A String", # The units for magnitude.
32760 …eaderFooter": True or False, # Indicates whether to use the even page header / footer IDs for the
32762 … "background": { # Represents the background of a document. # The background of the document.
32763 … "color": { # A color that can either be fully opaque or fully transparent. # The background color.
32766 "rgbColor": { # An RGB color. # The RGB color value.
32767 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
32768 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
32769 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
32774 …"marginRight": { # A magnitude in a single direction in the specified units. # The right page marg…
32775 "magnitude": 3.14, # The magnitude.
32776 "unit": "A String", # The units for magnitude.
32778 … "pageNumberStart": 42, # The page number from which to start counting the number of pages.
32779 … "marginTop": { # A magnitude in a single direction in the specified units. # The top page margin.
32780 "magnitude": 3.14, # The magnitude.
32781 "unit": "A String", # The units for magnitude.
32784 …ates which of the fields on the base DocumentStyle have been changed in this suggestion. # A mask …
32792 … that indicates which of the fields on the base Size have been changed in this suggestion. # A mas…
32794 # For any field set to true, the Size has
32805 …at indicates which of the fields on the base Background have been changed in this suggestion. # A …
32807 # For any field set to true, the Backgound has a new suggested value.
32808 …"backgroundColorSuggested": True or False, # Indicates whether the current background color has be…
32815 …"suggestedNamedStylesChanges": { # The suggested changes to the named styles of the document, keye…
32817 "a_key": { # A suggested change to the NamedStyles.
32818 …amedStylesSuggestionState": { # The suggestion state of a NamedStyles # A mask that indicates whic…
32820 …"stylesSuggestionStates": [ # A mask that indicates which of the fields on the corresponding Named…
32823 # The order of these named style suggestion states match the order of the
32824 # corresponding named style within the named styles suggestion.
32826 … indicates which of the fields on the base ParagraphStyle have been changed in this suggestion. # …
32848 … mask that indicates which of the fields on the base Shading have been changed in this # A mask th…
32851 …ckgroundColorSuggested": True or False, # Indicates if there was a suggested change to the Shading.
32854 …hat indicates which of the fields on the base TextStyle have been changed in this suggestion. # A …
32869 … "namedStyleType": "A String", # The named style type that this suggestion state corresponds to.
32871 # This field is provided as a convenience for matching the
32876 …"namedStyles": { # The named styles. Paragraphs in the document can inherit their # A NamedStyles …
32877 # changes made in this suggestion. This can be used along with the
32882 "styles": [ # The named styles.
32884 # There is an entry for each of the possible named style types.
32885 { # A named style. Paragraphs in the document can inherit their
32888 # when they have the same named style type.
32889 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this name…
32892 # text style's parent depends on where the text style is defined:
32894 # * The TextStyle of text in a Paragraph
32895 # inherits from the paragraph's corresponding named style type.
32896 # * The TextStyle on a named style
32897 # inherits from the normal text named style.
32898 # * The TextStyle of the normal text named style inherits
32899 # from the default text style in the Docs editor.
32900 # * The TextStyle on a Paragraph element
32901 # that is contained in a table may inherit its text style from the table
32904 # If the text style does not inherit from a parent, unsetting fields will
32905 # revert the style to a value matching the defaults in the Docs editor.
32906 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
32907 # or transparent, depending on the `color` field.
32910 "rgbColor": { # An RGB color. # The RGB color value.
32911 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
32912 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
32913 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
32917 "italic": True or False, # Whether or not the text is italicized.
32918 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
32921 # rendered in a smaller font size, computed based on the `font_size` field.
32922 # The `font_size` itself is not affected by changes in this field.
32923 "strikethrough": True or False, # Whether or not the text is struck through.
32924 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
32927 # `bold`, the `weighted_font_family` is applied first, then `bold`.
32934 "fontFamily": "A String", # The font family of the text.
32936 # The font family can be any font from the Font menu in Docs or from
32937 # [Google Fonts] (https://fonts.google.com/). If the font name is
32938 # unrecognized, the text is rendered in `Arial`.
32939 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
32940 # `100` between `100` and `900`, inclusive. This range corresponds to the
32941 # numerical values described in the CSS 2.1 Specification,
32945 # The default value is `400` ("normal").
32947 # The font weight makes up just one component of the rendered font weight.
32948 # The rendered weight is determined by a combination of the `weight` and the
32951 # * If the text is bold and the weight is less than `400`, the rendered
32953 # * If the text is bold and the weight is greater than or equal to `400` but
32954 # is less than `700`, the rendered weight is `700`.
32955 # * If the weight is greater than or equal to `700`, the rendered weight is
32956 # equal to the weight.
32957 # * If the text is not bold, the rendered weight is equal to the weight.
32959 "smallCaps": True or False, # Whether or not the text is in small capital letters.
32960 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
32961 "magnitude": 3.14, # The magnitude.
32962 "unit": "A String", # The units for magnitude.
32964 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
32965 # or transparent, depending on the `color` field.
32968 "rgbColor": { # An RGB color. # The RGB color value.
32969 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
32970 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
32971 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
32975 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
32978 # Changing the link in an update request causes some other changes to the
32979 # text style of the range:
32981 # * When setting a link, the text foreground color will be updated to the
32982 # default link color and the text will be underlined. If these fields are
32983 # modified in the same request, those values will be used instead of the
32986 # also update the existing link to point to the new URL.
32989 # will separate the newline character(s) into their own text runs. The
32990 # link will be applied separately to the runs before and after the newline.
32991 # * Removing a link will update the text style of the range to match the
32992 # style of the preceding text (or the default text styles if the preceding
32993 # text is another link) unless different styles are being set in the same
32995 "headingId": "A String", # The ID of a heading in this document.
32997 "bookmarkId": "A String", # The ID of a bookmark in this document.
32999 "underline": True or False, # Whether or not the text is underlined.
33000 "bold": True or False, # Whether or not the text is rendered as bold.
33002 "namedStyleType": "A String", # The type of this named style.
33003 …"paragraphStyle": { # Styles that apply to a whole paragraph. # The paragraph style of this named …
33006 # A paragraph style's parent depends on where the paragraph style is defined:
33008 # * The ParagraphStyle on a Paragraph
33009 # inherits from the paragraph's corresponding named style type.
33010 # * The ParagraphStyle on a named style
33011 # inherits from the normal text named style.
33012 # * The ParagraphStyle of the normal text named style inherits
33013 # from the default paragraph style in the Docs editor.
33014 # * The ParagraphStyle on a Paragraph
33016 # the table style.
33018 # If the paragraph style does not inherit from a parent, unsetting fields will
33019 # revert the style to a value matching the defaults in the Docs editor.
33020 "spacingMode": "A String", # The spacing mode for the paragraph.
33021 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
33024 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
33025 # inherited from the parent.
33026 "magnitude": 3.14, # The magnitude.
33027 "unit": "A String", # The units for magnitude.
33029 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
33030 # page or column as the next paragraph if possible. If unset, the value is
33031 # inherited from the parent.
33032 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
33033 # is represented as 100.0. If unset, the value is inherited from the parent.
33034 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
33035 # is inherited from the parent.
33036 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
33037 # inherited from the parent.
33039 # The bottom border is rendered when the paragraph below has different border
33043 # changes to a paragraph border the new border must be specified in
33045 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
33048 "rgbColor": { # An RGB color. # The RGB color value.
33049 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
33050 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
33051 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
33055 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
33056 "magnitude": 3.14, # The magnitude.
33057 "unit": "A String", # The units for magnitude.
33059 "dashStyle": "A String", # The dash style of the border.
33060 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
33061 "magnitude": 3.14, # The magnitude.
33062 "unit": "A String", # The units for magnitude.
33065 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
33066 # the start of the text, based on the current paragraph direction. If unset,
33067 # the value is inherited from the parent.
33068 "magnitude": 3.14, # The magnitude.
33069 "unit": "A String", # The units for magnitude.
33071 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
33072 # If unset, the value is inherited from the parent.
33074 # The between border is rendered when the adjacent paragraph has the same
33078 # changes to a paragraph border the new border must be specified in
33080 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
33083 "rgbColor": { # An RGB color. # The RGB color value.
33084 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
33085 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
33086 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
33090 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
33091 "magnitude": 3.14, # The magnitude.
33092 "unit": "A String", # The units for magnitude.
33094 "dashStyle": "A String", # The dash style of the border.
33095 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
33096 "magnitude": 3.14, # The magnitude.
33097 "unit": "A String", # The units for magnitude.
33100 "namedStyleType": "A String", # The named style type of the paragraph.
33102 # Since updating the named style type affects other properties within
33103 # ParagraphStyle, the named style type is applied before the other properties
33105 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
33106 # from the parent.
33109 # changes to a paragraph border the new border must be specified in
33111 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
33114 "rgbColor": { # An RGB color. # The RGB color value.
33115 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
33116 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
33117 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
33121 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
33122 "magnitude": 3.14, # The magnitude.
33123 "unit": "A String", # The units for magnitude.
33125 "dashStyle": "A String", # The dash style of the border.
33126 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
33127 "magnitude": 3.14, # The magnitude.
33128 "unit": "A String", # The units for magnitude.
33131 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
33132 # the end of the text, based on the current paragraph direction. If unset,
33133 # the value is inherited from the parent.
33134 "magnitude": 3.14, # The magnitude.
33135 "unit": "A String", # The units for magnitude.
33137 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
33138 # from the parent.
33141 # changes to a paragraph border the new border must be specified in
33143 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
33146 "rgbColor": { # An RGB color. # The RGB color value.
33147 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
33148 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
33149 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
33153 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
33154 "magnitude": 3.14, # The magnitude.
33155 "unit": "A String", # The units for magnitude.
33157 "dashStyle": "A String", # The dash style of the border.
33158 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
33159 "magnitude": 3.14, # The magnitude.
33160 "unit": "A String", # The units for magnitude.
33163 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
33164 # inherited from the parent.
33165 "magnitude": 3.14, # The magnitude.
33166 "unit": "A String", # The units for magnitude.
33168 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
33170 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
33172 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
33175 "rgbColor": { # An RGB color. # The RGB color value.
33176 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
33177 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
33178 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
33183 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
33184 # from the parent.
33186 # The top border is rendered when the paragraph above has different border
33190 # changes to a paragraph border the new border must be specified in
33192 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
33195 "rgbColor": { # An RGB color. # The RGB color value.
33196 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
33197 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
33198 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
33202 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
33203 "magnitude": 3.14, # The magnitude.
33204 "unit": "A String", # The units for magnitude.
33206 "dashStyle": "A String", # The dash style of the border.
33207 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
33208 "magnitude": 3.14, # The magnitude.
33209 "unit": "A String", # The units for magnitude.
33212 … "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
33215 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
33216 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
33217 "magnitude": 3.14, # The magnitude.
33218 "unit": "A String", # The units for magnitude.
33222 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
33223 # the value is inherited from the parent.
33224 "magnitude": 3.14, # The magnitude.
33225 "unit": "A String", # The units for magnitude.
33227 "alignment": "A String", # The text alignment for this paragraph.
33228 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
33229 # column if possible. If unset, the value is inherited from the parent.
33236 "suggestionsViewMode": "A String", # The suggestions view mode applied to the document.
33240 "lists": { # The lists in the document, keyed by list ID.
33241 "a_key": { # A List represents the list attributes for a group of paragraphs that all
33242 # belong to the same list. A paragraph that is part of a list has a reference
33243 # to the list's ID in its bullet.
33244 …"listProperties": { # The properties of a list which describe the look # The properties of the lis…
33246 "nestingLevels": [ # Describes the properties of the bullets at the associated level.
33249 # corresponding to the top-most level and nesting level 8 corresponding to
33250 # the most nested level. The nesting levels are returned in ascending order
33251 # with the least nested returned first.
33252 { # Contains properties describing the look and feel of a list bullet at a given
33254 …"textStyle": { # Represents the styling that can be applied to text. # The text style of bullets a…
33257 # text style's parent depends on where the text style is defined:
33259 # * The TextStyle of text in a Paragraph
33260 # inherits from the paragraph's corresponding named style type.
33261 # * The TextStyle on a named style
33262 # inherits from the normal text named style.
33263 # * The TextStyle of the normal text named style inherits
33264 # from the default text style in the Docs editor.
33265 # * The TextStyle on a Paragraph element
33266 # that is contained in a table may inherit its text style from the table
33269 # If the text style does not inherit from a parent, unsetting fields will
33270 # revert the style to a value matching the defaults in the Docs editor.
33271 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
33272 # or transparent, depending on the `color` field.
33275 "rgbColor": { # An RGB color. # The RGB color value.
33276 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
33277 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
33278 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
33282 "italic": True or False, # Whether or not the text is italicized.
33283 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
33286 # rendered in a smaller font size, computed based on the `font_size` field.
33287 # The `font_size` itself is not affected by changes in this field.
33288 "strikethrough": True or False, # Whether or not the text is struck through.
33289 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
33292 # `bold`, the `weighted_font_family` is applied first, then `bold`.
33299 "fontFamily": "A String", # The font family of the text.
33301 # The font family can be any font from the Font menu in Docs or from
33302 # [Google Fonts] (https://fonts.google.com/). If the font name is
33303 # unrecognized, the text is rendered in `Arial`.
33304 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
33305 # `100` between `100` and `900`, inclusive. This range corresponds to the
33306 # numerical values described in the CSS 2.1 Specification,
33310 # The default value is `400` ("normal").
33312 # The font weight makes up just one component of the rendered font weight.
33313 # The rendered weight is determined by a combination of the `weight` and the
33316 # * If the text is bold and the weight is less than `400`, the rendered
33318 # * If the text is bold and the weight is greater than or equal to `400` but
33319 # is less than `700`, the rendered weight is `700`.
33320 # * If the weight is greater than or equal to `700`, the rendered weight is
33321 # equal to the weight.
33322 # * If the text is not bold, the rendered weight is equal to the weight.
33324 "smallCaps": True or False, # Whether or not the text is in small capital letters.
33325 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
33326 "magnitude": 3.14, # The magnitude.
33327 "unit": "A String", # The units for magnitude.
33329 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
33330 # or transparent, depending on the `color` field.
33333 "rgbColor": { # An RGB color. # The RGB color value.
33334 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
33335 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
33336 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
33340 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
33343 # Changing the link in an update request causes some other changes to the
33344 # text style of the range:
33346 # * When setting a link, the text foreground color will be updated to the
33347 # default link color and the text will be underlined. If these fields are
33348 # modified in the same request, those values will be used instead of the
33351 # also update the existing link to point to the new URL.
33354 # will separate the newline character(s) into their own text runs. The
33355 # link will be applied separately to the runs before and after the newline.
33356 # * Removing a link will update the text style of the range to match the
33357 # style of the preceding text (or the default text styles if the preceding
33358 # text is another link) unless different styles are being set in the same
33360 "headingId": "A String", # The ID of a heading in this document.
33362 "bookmarkId": "A String", # The ID of a bookmark in this document.
33364 "underline": True or False, # Whether or not the text is underlined.
33365 "bold": True or False, # Whether or not the text is rendered as bold.
33367 …"indentStart": { # A magnitude in a single direction in the specified units. # The amount of inden…
33368 # to the side that corresponds to the start of the text, based on the
33370 "magnitude": 3.14, # The magnitude.
33371 "unit": "A String", # The units for magnitude.
33373 … "glyphFormat": "A String", # The format string used by bullets at this level of nesting.
33375 # The glyph format contains one or more placeholders, and these placeholder
33376 …# are replaced with the appropriate values depending on the glyph_type or glyph_symbol. The placeh…
33377 # the pattern `%[nesting_level]`. Furthermore, placeholders can have prefixes
33378 # and suffixes. Thus, the glyph format follows the pattern
33379 # `<prefix>%[nesting_level]<suffix>`. Note that the prefix and suffix are
33382 # For example, the glyph format `%0.` indicates that the rendered glyph will
33383 # replace the placeholder with the corresponding glyph for nesting level 0
33384 # followed by a period as the suffix. So a list with a glyph type of
33392 # The glyph format can contain placeholders for the current nesting level as
33404 # For nesting levels that are ordered, the string that replaces a placeholder
33405 # in the glyph format for a particular paragraph depends on the paragraph's
33406 # order within the list.
33407 … "glyphType": "A String", # The type of glyph used by bullets when paragraphs at this level of
33410 # The glyph type determines the type of glyph used to replace placeholders
33411 # within the glyph_format
33412 # when paragraphs at this level of nesting are ordered. For example, if the
33413 # nesting level is 0, the glyph_format is `%0.` and the glyph
33415 # then the rendered glyph would replace the placeholder `%0` in the glyph
33416 # format with a number corresponding to list item's order within the list.
33417 "startNumber": 42, # The number of the first list item at this nesting level.
33424 …"bulletAlignment": "A String", # The alignment of the bullet within the space allotted for renderi…
33429 … # The glyph symbol replaces placeholders within the glyph_format. For example, if the
33430 # glyph_symbol is the solid circle corresponding to Unicode U+25cf code
33431 # point and the glyph_format is `%0`, the rendered
33432 # glyph would be the solid circle.
33433 …Line": { # A magnitude in a single direction in the specified units. # The amount of indentation f…
33435 "magnitude": 3.14, # The magnitude.
33436 "unit": "A String", # The units for magnitude.
33441 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
33445 …"suggestedListPropertiesChanges": { # The suggested changes to the list properties, keyed by sugge…
33448 …"listProperties": { # The properties of a list which describe the look # A ListProperties that onl…
33449 # the changes made in this suggestion. This can be used along with the
33453 … "nestingLevels": [ # Describes the properties of the bullets at the associated level.
33456 # corresponding to the top-most level and nesting level 8 corresponding to
33457 # the most nested level. The nesting levels are returned in ascending order
33458 # with the least nested returned first.
33459 { # Contains properties describing the look and feel of a list bullet at a given
33461 …"textStyle": { # Represents the styling that can be applied to text. # The text style of bullets a…
33464 # text style's parent depends on where the text style is defined:
33466 # * The TextStyle of text in a Paragraph
33467 # inherits from the paragraph's corresponding named style type.
33468 # * The TextStyle on a named style
33469 # inherits from the normal text named style.
33470 # * The TextStyle of the normal text named style inherits
33471 # from the default text style in the Docs editor.
33472 # * The TextStyle on a Paragraph element
33473 # that is contained in a table may inherit its text style from the table
33476 # If the text style does not inherit from a parent, unsetting fields will
33477 # revert the style to a value matching the defaults in the Docs editor.
33478 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
33479 # or transparent, depending on the `color` field.
33482 "rgbColor": { # An RGB color. # The RGB color value.
33483 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
33484 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
33485 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
33489 "italic": True or False, # Whether or not the text is italicized.
33490 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
33493 … # rendered in a smaller font size, computed based on the `font_size` field.
33494 # The `font_size` itself is not affected by changes in this field.
33495 "strikethrough": True or False, # Whether or not the text is struck through.
33496 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
33499 # `bold`, the `weighted_font_family` is applied first, then `bold`.
33506 "fontFamily": "A String", # The font family of the text.
33508 # The font family can be any font from the Font menu in Docs or from
33509 # [Google Fonts] (https://fonts.google.com/). If the font name is
33510 # unrecognized, the text is rendered in `Arial`.
33511 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
33512 … # `100` between `100` and `900`, inclusive. This range corresponds to the
33513 # numerical values described in the CSS 2.1 Specification,
33517 # The default value is `400` ("normal").
33519 … # The font weight makes up just one component of the rendered font weight.
33520 … # The rendered weight is determined by a combination of the `weight` and the
33523 # * If the text is bold and the weight is less than `400`, the rendered
33525 … # * If the text is bold and the weight is greater than or equal to `400` but
33526 # is less than `700`, the rendered weight is `700`.
33527 … # * If the weight is greater than or equal to `700`, the rendered weight is
33528 # equal to the weight.
33529 # * If the text is not bold, the rendered weight is equal to the weight.
33531 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
33532 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
33533 "magnitude": 3.14, # The magnitude.
33534 "unit": "A String", # The units for magnitude.
33536 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
33537 # or transparent, depending on the `color` field.
33540 "rgbColor": { # An RGB color. # The RGB color value.
33541 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
33542 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
33543 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
33547 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
33550 # Changing the link in an update request causes some other changes to the
33551 # text style of the range:
33553 # * When setting a link, the text foreground color will be updated to the
33554 … # default link color and the text will be underlined. If these fields are
33555 # modified in the same request, those values will be used instead of the
33558 # also update the existing link to point to the new URL.
33561 # will separate the newline character(s) into their own text runs. The
33562 … # link will be applied separately to the runs before and after the newline.
33563 # * Removing a link will update the text style of the range to match the
33564 … # style of the preceding text (or the default text styles if the preceding
33565 … # text is another link) unless different styles are being set in the same
33567 "headingId": "A String", # The ID of a heading in this document.
33569 "bookmarkId": "A String", # The ID of a bookmark in this document.
33571 "underline": True or False, # Whether or not the text is underlined.
33572 "bold": True or False, # Whether or not the text is rendered as bold.
33574 …"indentStart": { # A magnitude in a single direction in the specified units. # The amount of inden…
33575 # to the side that corresponds to the start of the text, based on the
33577 "magnitude": 3.14, # The magnitude.
33578 "unit": "A String", # The units for magnitude.
33580 … "glyphFormat": "A String", # The format string used by bullets at this level of nesting.
33582 # The glyph format contains one or more placeholders, and these placeholder
33583 …# are replaced with the appropriate values depending on the glyph_type or glyph_symbol. The placeh…
33584 … # the pattern `%[nesting_level]`. Furthermore, placeholders can have prefixes
33585 # and suffixes. Thus, the glyph format follows the pattern
33586 # `<prefix>%[nesting_level]<suffix>`. Note that the prefix and suffix are
33589 # For example, the glyph format `%0.` indicates that the rendered glyph will
33590 # replace the placeholder with the corresponding glyph for nesting level 0
33591 # followed by a period as the suffix. So a list with a glyph type of
33599 # The glyph format can contain placeholders for the current nesting level as
33611 … # For nesting levels that are ordered, the string that replaces a placeholder
33612 # in the glyph format for a particular paragraph depends on the paragraph's
33613 # order within the list.
33614 … "glyphType": "A String", # The type of glyph used by bullets when paragraphs at this level of
33617 # The glyph type determines the type of glyph used to replace placeholders
33618 # within the glyph_format
33619 # when paragraphs at this level of nesting are ordered. For example, if the
33620 # nesting level is 0, the glyph_format is `%0.` and the glyph
33622 # then the rendered glyph would replace the placeholder `%0` in the glyph
33623 # format with a number corresponding to list item's order within the list.
33624 "startNumber": 42, # The number of the first list item at this nesting level.
33631 …"bulletAlignment": "A String", # The alignment of the bullet within the space allotted for renderi…
33636 … # The glyph symbol replaces placeholders within the glyph_format. For example, if the
33637 # glyph_symbol is the solid circle corresponding to Unicode U+25cf code
33638 # point and the glyph_format is `%0`, the rendered
33639 # glyph would be the solid circle.
33640 …Line": { # A magnitude in a single direction in the specified units. # The amount of indentation f…
33642 "magnitude": 3.14, # The magnitude.
33643 "unit": "A String", # The units for magnitude.
33648 …tes which of the fields on the base ListProperties have been changed in this suggestion. # A mask …
33650 …"nestingLevelsSuggestionStates": [ # A mask that indicates which of the fields on the corresponding
33654 # The nesting level suggestion states are returned in ascending order of the
33655 # nesting level with the least nested returned first.
33656 …{ # A mask that indicates which of the fields on the base NestingLevel have been changed in this s…
33658 …hat indicates which of the fields on the base TextStyle have been changed in this suggestion. # A …
33692 …"suggestedInsertionId": "A String", # The suggested insertion ID. If empty, then this is not a sug…
33696 "headers": { # The headers in the document, keyed by header ID.
33698 "headerId": "A String", # The ID of the header.
33699 "content": [ # The contents of the header.
33701 # The indexes for a header's content begin at zero.
33702 { # A StructuralElement describes content that provides structure to the
33704 … "endIndex": 42, # The zero-based end index of this structural element, exclusive, in UTF-16
33707 # section break. A section is a range of content which has the same
33709 # the start of a new section, and the section style applies to the section
33710 # after the section break.
33712 # The document body always begins with a section break.
33713 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
33717 …"sectionStyle": { # The styling that applies to a section. # The style of the section after this s…
33718 …"contentDirection": "A String", # The content direction of this section. If unset, the value defau…
33720 "columnProperties": [ # The section's columns properties.
33722 # If empty, the section contains one column with the default properties in
33723 # the Docs editor.
33725 … "width": { # A magnitude in a single direction in the specified units. # The width of the column.
33726 "magnitude": 3.14, # The magnitude.
33727 "unit": "A String", # The units for magnitude.
33729 …ingEnd": { # A magnitude in a single direction in the specified units. # The padding at the end of…
33730 "magnitude": 3.14, # The magnitude.
33731 "unit": "A String", # The units for magnitude.
33735 "columnSeparatorStyle": "A String", # The style of column separators.
33737 # This style can be set even when there is one column in the section.
33739 …"suggestedInsertionIds": [ # The suggested insertion IDs. A SectionBreak may have multiple inserti…
33747 "content": [ # The content of the table of contents.
33750 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
33754 …"suggestedInsertionIds": [ # The suggested insertion IDs. A TableOfContents may have multiple inse…
33760 … "startIndex": 42, # The zero-based start index of this structural element, in UTF-16 code
33765 "elements": [ # The content of the paragraph broken down into its component parts.
33768 … "endIndex": 42, # The zero-base end index of this paragraph element, exclusive, in UTF-16
33772 "suggestedInsertionIds": [ # The suggested insertion IDs. A Equation
33777 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
33783 # column break. A column break makes the subsequent text start at the top of
33784 # the next column.
33785 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Colu…
33787 … # Similar to text content, like text runs and footnote references, the text
33788 … # style of a column break can affect content layout as well as the styling of
33792 # text style's parent depends on where the text style is defined:
33794 # * The TextStyle of text in a Paragraph
33795 # inherits from the paragraph's corresponding named style type.
33796 # * The TextStyle on a named style
33797 # inherits from the normal text named style.
33798 # * The TextStyle of the normal text named style inherits
33799 # from the default text style in the Docs editor.
33800 # * The TextStyle on a Paragraph element
33801 … # that is contained in a table may inherit its text style from the table
33804 # If the text style does not inherit from a parent, unsetting fields will
33805 # revert the style to a value matching the defaults in the Docs editor.
33806 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
33807 # or transparent, depending on the `color` field.
33810 "rgbColor": { # An RGB color. # The RGB color value.
33811 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
33812 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
33813 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
33817 "italic": True or False, # Whether or not the text is italicized.
33818 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
33821 … # rendered in a smaller font size, computed based on the `font_size` field.
33822 # The `font_size` itself is not affected by changes in this field.
33823 "strikethrough": True or False, # Whether or not the text is struck through.
33824 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
33827 # `bold`, the `weighted_font_family` is applied first, then `bold`.
33834 "fontFamily": "A String", # The font family of the text.
33836 # The font family can be any font from the Font menu in Docs or from
33837 # [Google Fonts] (https://fonts.google.com/). If the font name is
33838 # unrecognized, the text is rendered in `Arial`.
33839 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
33840 … # `100` between `100` and `900`, inclusive. This range corresponds to the
33841 # numerical values described in the CSS 2.1 Specification,
33845 # The default value is `400` ("normal").
33847 … # The font weight makes up just one component of the rendered font weight.
33848 … # The rendered weight is determined by a combination of the `weight` and the
33851 … # * If the text is bold and the weight is less than `400`, the rendered
33853 … # * If the text is bold and the weight is greater than or equal to `400` but
33854 # is less than `700`, the rendered weight is `700`.
33855 … # * If the weight is greater than or equal to `700`, the rendered weight is
33856 # equal to the weight.
33857 … # * If the text is not bold, the rendered weight is equal to the weight.
33859 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
33860 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
33861 "magnitude": 3.14, # The magnitude.
33862 "unit": "A String", # The units for magnitude.
33864 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
33865 # or transparent, depending on the `color` field.
33868 "rgbColor": { # An RGB color. # The RGB color value.
33869 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
33870 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
33871 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
33875 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
33878 … # Changing the link in an update request causes some other changes to the
33879 # text style of the range:
33881 … # * When setting a link, the text foreground color will be updated to the
33882 … # default link color and the text will be underlined. If these fields are
33883 … # modified in the same request, those values will be used instead of the
33886 # also update the existing link to point to the new URL.
33889 # will separate the newline character(s) into their own text runs. The
33890 … # link will be applied separately to the runs before and after the newline.
33891 # * Removing a link will update the text style of the range to match the
33892 … # style of the preceding text (or the default text styles if the preceding
33893 … # text is another link) unless different styles are being set in the same
33895 "headingId": "A String", # The ID of a heading in this document.
33897 "bookmarkId": "A String", # The ID of a bookmark in this document.
33899 "underline": True or False, # Whether or not the text is underlined.
33900 "bold": True or False, # Whether or not the text is rendered as bold.
33902 …"suggestedInsertionIds": [ # The suggested insertion IDs. A ColumnBreak may have multiple insertio…
33907 …"suggestedTextStyleChanges": { # The suggested text style changes to this ColumnBreak, keyed by su…
33910 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
33911 # the changes made in this suggestion. This can be used along with the
33916 # text style's parent depends on where the text style is defined:
33918 # * The TextStyle of text in a Paragraph
33919 # inherits from the paragraph's corresponding named style type.
33920 # * The TextStyle on a named style
33921 # inherits from the normal text named style.
33922 # * The TextStyle of the normal text named style inherits
33923 # from the default text style in the Docs editor.
33924 # * The TextStyle on a Paragraph element
33925 … # that is contained in a table may inherit its text style from the table
33928 … # If the text style does not inherit from a parent, unsetting fields will
33929 … # revert the style to a value matching the defaults in the Docs editor.
33930 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
33931 # or transparent, depending on the `color` field.
33934 "rgbColor": { # An RGB color. # The RGB color value.
33935 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
33936 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
33937 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
33941 "italic": True or False, # Whether or not the text is italicized.
33942 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
33945 … # rendered in a smaller font size, computed based on the `font_size` field.
33946 # The `font_size` itself is not affected by changes in this field.
33947 … "strikethrough": True or False, # Whether or not the text is struck through.
33948 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
33951 # `bold`, the `weighted_font_family` is applied first, then `bold`.
33958 "fontFamily": "A String", # The font family of the text.
33960 … # The font family can be any font from the Font menu in Docs or from
33961 # [Google Fonts] (https://fonts.google.com/). If the font name is
33962 # unrecognized, the text is rendered in `Arial`.
33963 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
33964 … # `100` between `100` and `900`, inclusive. This range corresponds to the
33965 # numerical values described in the CSS 2.1 Specification,
33969 # The default value is `400` ("normal").
33971 … # The font weight makes up just one component of the rendered font weight.
33972 … # The rendered weight is determined by a combination of the `weight` and the
33975 … # * If the text is bold and the weight is less than `400`, the rendered
33977 … # * If the text is bold and the weight is greater than or equal to `400` but
33978 # is less than `700`, the rendered weight is `700`.
33979 … # * If the weight is greater than or equal to `700`, the rendered weight is
33980 # equal to the weight.
33981 … # * If the text is not bold, the rendered weight is equal to the weight.
33983 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
33984 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
33985 "magnitude": 3.14, # The magnitude.
33986 "unit": "A String", # The units for magnitude.
33988 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
33989 # or transparent, depending on the `color` field.
33992 "rgbColor": { # An RGB color. # The RGB color value.
33993 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
33994 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
33995 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
33999 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
34002 … # Changing the link in an update request causes some other changes to the
34003 # text style of the range:
34005 … # * When setting a link, the text foreground color will be updated to the
34006 … # default link color and the text will be underlined. If these fields are
34007 … # modified in the same request, those values will be used instead of the
34010 # also update the existing link to point to the new URL.
34013 … # will separate the newline character(s) into their own text runs. The
34014 … # link will be applied separately to the runs before and after the newline.
34015 … # * Removing a link will update the text style of the range to match the
34016 … # style of the preceding text (or the default text styles if the preceding
34017 … # text is another link) unless different styles are being set in the same
34019 "headingId": "A String", # The ID of a heading in this document.
34021 "bookmarkId": "A String", # The ID of a bookmark in this document.
34023 "underline": True or False, # Whether or not the text is underlined.
34024 "bold": True or False, # Whether or not the text is rendered as bold.
34026 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
34042 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
34047 … "startIndex": 42, # The zero-based start index of this paragraph element, in UTF-16 code units.
34049 # page break. A page break makes the subsequent text start at the top of the
34051 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Page…
34053 … # Similar to text content, like text runs and footnote references, the text
34054 … # style of a page break can affect content layout as well as the styling of
34058 # text style's parent depends on where the text style is defined:
34060 # * The TextStyle of text in a Paragraph
34061 # inherits from the paragraph's corresponding named style type.
34062 # * The TextStyle on a named style
34063 # inherits from the normal text named style.
34064 # * The TextStyle of the normal text named style inherits
34065 # from the default text style in the Docs editor.
34066 # * The TextStyle on a Paragraph element
34067 … # that is contained in a table may inherit its text style from the table
34070 # If the text style does not inherit from a parent, unsetting fields will
34071 # revert the style to a value matching the defaults in the Docs editor.
34072 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
34073 # or transparent, depending on the `color` field.
34076 "rgbColor": { # An RGB color. # The RGB color value.
34077 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
34078 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
34079 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
34083 "italic": True or False, # Whether or not the text is italicized.
34084 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
34087 … # rendered in a smaller font size, computed based on the `font_size` field.
34088 # The `font_size` itself is not affected by changes in this field.
34089 "strikethrough": True or False, # Whether or not the text is struck through.
34090 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
34093 # `bold`, the `weighted_font_family` is applied first, then `bold`.
34100 "fontFamily": "A String", # The font family of the text.
34102 # The font family can be any font from the Font menu in Docs or from
34103 # [Google Fonts] (https://fonts.google.com/). If the font name is
34104 # unrecognized, the text is rendered in `Arial`.
34105 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
34106 … # `100` between `100` and `900`, inclusive. This range corresponds to the
34107 # numerical values described in the CSS 2.1 Specification,
34111 # The default value is `400` ("normal").
34113 … # The font weight makes up just one component of the rendered font weight.
34114 … # The rendered weight is determined by a combination of the `weight` and the
34117 … # * If the text is bold and the weight is less than `400`, the rendered
34119 … # * If the text is bold and the weight is greater than or equal to `400` but
34120 # is less than `700`, the rendered weight is `700`.
34121 … # * If the weight is greater than or equal to `700`, the rendered weight is
34122 # equal to the weight.
34123 … # * If the text is not bold, the rendered weight is equal to the weight.
34125 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
34126 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
34127 "magnitude": 3.14, # The magnitude.
34128 "unit": "A String", # The units for magnitude.
34130 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
34131 # or transparent, depending on the `color` field.
34134 "rgbColor": { # An RGB color. # The RGB color value.
34135 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
34136 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
34137 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
34141 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
34144 … # Changing the link in an update request causes some other changes to the
34145 # text style of the range:
34147 … # * When setting a link, the text foreground color will be updated to the
34148 … # default link color and the text will be underlined. If these fields are
34149 … # modified in the same request, those values will be used instead of the
34152 # also update the existing link to point to the new URL.
34155 # will separate the newline character(s) into their own text runs. The
34156 … # link will be applied separately to the runs before and after the newline.
34157 # * Removing a link will update the text style of the range to match the
34158 … # style of the preceding text (or the default text styles if the preceding
34159 … # text is another link) unless different styles are being set in the same
34161 "headingId": "A String", # The ID of a heading in this document.
34163 "bookmarkId": "A String", # The ID of a bookmark in this document.
34165 "underline": True or False, # Whether or not the text is underlined.
34166 "bold": True or False, # Whether or not the text is rendered as bold.
34168 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
34172 …"suggestedTextStyleChanges": { # The suggested text style changes to this PageBreak, keyed by sugg…
34174 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
34175 # the changes made in this suggestion. This can be used along with the
34180 # text style's parent depends on where the text style is defined:
34182 # * The TextStyle of text in a Paragraph
34183 # inherits from the paragraph's corresponding named style type.
34184 # * The TextStyle on a named style
34185 # inherits from the normal text named style.
34186 # * The TextStyle of the normal text named style inherits
34187 # from the default text style in the Docs editor.
34188 # * The TextStyle on a Paragraph element
34189 … # that is contained in a table may inherit its text style from the table
34192 … # If the text style does not inherit from a parent, unsetting fields will
34193 … # revert the style to a value matching the defaults in the Docs editor.
34194 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
34195 # or transparent, depending on the `color` field.
34198 "rgbColor": { # An RGB color. # The RGB color value.
34199 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
34200 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
34201 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
34205 "italic": True or False, # Whether or not the text is italicized.
34206 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
34209 … # rendered in a smaller font size, computed based on the `font_size` field.
34210 # The `font_size` itself is not affected by changes in this field.
34211 … "strikethrough": True or False, # Whether or not the text is struck through.
34212 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
34215 # `bold`, the `weighted_font_family` is applied first, then `bold`.
34222 "fontFamily": "A String", # The font family of the text.
34224 … # The font family can be any font from the Font menu in Docs or from
34225 # [Google Fonts] (https://fonts.google.com/). If the font name is
34226 # unrecognized, the text is rendered in `Arial`.
34227 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
34228 … # `100` between `100` and `900`, inclusive. This range corresponds to the
34229 # numerical values described in the CSS 2.1 Specification,
34233 # The default value is `400` ("normal").
34235 … # The font weight makes up just one component of the rendered font weight.
34236 … # The rendered weight is determined by a combination of the `weight` and the
34239 … # * If the text is bold and the weight is less than `400`, the rendered
34241 … # * If the text is bold and the weight is greater than or equal to `400` but
34242 # is less than `700`, the rendered weight is `700`.
34243 … # * If the weight is greater than or equal to `700`, the rendered weight is
34244 # equal to the weight.
34245 … # * If the text is not bold, the rendered weight is equal to the weight.
34247 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
34248 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
34249 "magnitude": 3.14, # The magnitude.
34250 "unit": "A String", # The units for magnitude.
34252 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
34253 # or transparent, depending on the `color` field.
34256 "rgbColor": { # An RGB color. # The RGB color value.
34257 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
34258 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
34259 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
34263 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
34266 … # Changing the link in an update request causes some other changes to the
34267 # text style of the range:
34269 … # * When setting a link, the text foreground color will be updated to the
34270 … # default link color and the text will be underlined. If these fields are
34271 … # modified in the same request, those values will be used instead of the
34274 # also update the existing link to point to the new URL.
34277 … # will separate the newline character(s) into their own text runs. The
34278 … # link will be applied separately to the runs before and after the newline.
34279 … # * Removing a link will update the text style of the range to match the
34280 … # style of the preceding text (or the default text styles if the preceding
34281 … # text is another link) unless different styles are being set in the same
34283 "headingId": "A String", # The ID of a heading in this document.
34285 "bookmarkId": "A String", # The ID of a bookmark in this document.
34287 "underline": True or False, # Whether or not the text is underlined.
34288 "bold": True or False, # Whether or not the text is rendered as bold.
34290 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
34306 "suggestedInsertionIds": [ # The suggested insertion IDs. A PageBreak
34314 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Hori…
34316 … # Similar to text content, like text runs and footnote references, the text
34317 … # style of a horizontal rule can affect content layout as well as the styling
34321 # text style's parent depends on where the text style is defined:
34323 # * The TextStyle of text in a Paragraph
34324 # inherits from the paragraph's corresponding named style type.
34325 # * The TextStyle on a named style
34326 # inherits from the normal text named style.
34327 # * The TextStyle of the normal text named style inherits
34328 # from the default text style in the Docs editor.
34329 # * The TextStyle on a Paragraph element
34330 … # that is contained in a table may inherit its text style from the table
34333 # If the text style does not inherit from a parent, unsetting fields will
34334 # revert the style to a value matching the defaults in the Docs editor.
34335 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
34336 # or transparent, depending on the `color` field.
34339 "rgbColor": { # An RGB color. # The RGB color value.
34340 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
34341 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
34342 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
34346 "italic": True or False, # Whether or not the text is italicized.
34347 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
34350 … # rendered in a smaller font size, computed based on the `font_size` field.
34351 # The `font_size` itself is not affected by changes in this field.
34352 "strikethrough": True or False, # Whether or not the text is struck through.
34353 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
34356 # `bold`, the `weighted_font_family` is applied first, then `bold`.
34363 "fontFamily": "A String", # The font family of the text.
34365 # The font family can be any font from the Font menu in Docs or from
34366 # [Google Fonts] (https://fonts.google.com/). If the font name is
34367 # unrecognized, the text is rendered in `Arial`.
34368 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
34369 … # `100` between `100` and `900`, inclusive. This range corresponds to the
34370 # numerical values described in the CSS 2.1 Specification,
34374 # The default value is `400` ("normal").
34376 … # The font weight makes up just one component of the rendered font weight.
34377 … # The rendered weight is determined by a combination of the `weight` and the
34380 … # * If the text is bold and the weight is less than `400`, the rendered
34382 … # * If the text is bold and the weight is greater than or equal to `400` but
34383 # is less than `700`, the rendered weight is `700`.
34384 … # * If the weight is greater than or equal to `700`, the rendered weight is
34385 # equal to the weight.
34386 … # * If the text is not bold, the rendered weight is equal to the weight.
34388 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
34389 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
34390 "magnitude": 3.14, # The magnitude.
34391 "unit": "A String", # The units for magnitude.
34393 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
34394 # or transparent, depending on the `color` field.
34397 "rgbColor": { # An RGB color. # The RGB color value.
34398 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
34399 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
34400 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
34404 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
34407 … # Changing the link in an update request causes some other changes to the
34408 # text style of the range:
34410 … # * When setting a link, the text foreground color will be updated to the
34411 … # default link color and the text will be underlined. If these fields are
34412 … # modified in the same request, those values will be used instead of the
34415 # also update the existing link to point to the new URL.
34418 # will separate the newline character(s) into their own text runs. The
34419 … # link will be applied separately to the runs before and after the newline.
34420 # * Removing a link will update the text style of the range to match the
34421 … # style of the preceding text (or the default text styles if the preceding
34422 … # text is another link) unless different styles are being set in the same
34424 "headingId": "A String", # The ID of a heading in this document.
34426 "bookmarkId": "A String", # The ID of a bookmark in this document.
34428 "underline": True or False, # Whether or not the text is underlined.
34429 "bold": True or False, # Whether or not the text is rendered as bold.
34431 …"suggestedInsertionIds": [ # The suggested insertion IDs. A HorizontalRule may have multiple inser…
34436 … "suggestedTextStyleChanges": { # The suggested text style changes to this HorizontalRule, keyed by
34439 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
34440 # the changes made in this suggestion. This can be used along with the
34445 # text style's parent depends on where the text style is defined:
34447 # * The TextStyle of text in a Paragraph
34448 # inherits from the paragraph's corresponding named style type.
34449 # * The TextStyle on a named style
34450 # inherits from the normal text named style.
34451 # * The TextStyle of the normal text named style inherits
34452 # from the default text style in the Docs editor.
34453 # * The TextStyle on a Paragraph element
34454 … # that is contained in a table may inherit its text style from the table
34457 … # If the text style does not inherit from a parent, unsetting fields will
34458 … # revert the style to a value matching the defaults in the Docs editor.
34459 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
34460 # or transparent, depending on the `color` field.
34463 "rgbColor": { # An RGB color. # The RGB color value.
34464 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
34465 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
34466 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
34470 "italic": True or False, # Whether or not the text is italicized.
34471 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
34474 … # rendered in a smaller font size, computed based on the `font_size` field.
34475 # The `font_size` itself is not affected by changes in this field.
34476 … "strikethrough": True or False, # Whether or not the text is struck through.
34477 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
34480 # `bold`, the `weighted_font_family` is applied first, then `bold`.
34487 "fontFamily": "A String", # The font family of the text.
34489 … # The font family can be any font from the Font menu in Docs or from
34490 # [Google Fonts] (https://fonts.google.com/). If the font name is
34491 # unrecognized, the text is rendered in `Arial`.
34492 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
34493 … # `100` between `100` and `900`, inclusive. This range corresponds to the
34494 # numerical values described in the CSS 2.1 Specification,
34498 # The default value is `400` ("normal").
34500 … # The font weight makes up just one component of the rendered font weight.
34501 … # The rendered weight is determined by a combination of the `weight` and the
34504 … # * If the text is bold and the weight is less than `400`, the rendered
34506 … # * If the text is bold and the weight is greater than or equal to `400` but
34507 # is less than `700`, the rendered weight is `700`.
34508 … # * If the weight is greater than or equal to `700`, the rendered weight is
34509 # equal to the weight.
34510 … # * If the text is not bold, the rendered weight is equal to the weight.
34512 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
34513 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
34514 "magnitude": 3.14, # The magnitude.
34515 "unit": "A String", # The units for magnitude.
34517 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
34518 # or transparent, depending on the `color` field.
34521 "rgbColor": { # An RGB color. # The RGB color value.
34522 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
34523 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
34524 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
34528 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
34531 … # Changing the link in an update request causes some other changes to the
34532 # text style of the range:
34534 … # * When setting a link, the text foreground color will be updated to the
34535 … # default link color and the text will be underlined. If these fields are
34536 … # modified in the same request, those values will be used instead of the
34539 # also update the existing link to point to the new URL.
34542 … # will separate the newline character(s) into their own text runs. The
34543 … # link will be applied separately to the runs before and after the newline.
34544 … # * Removing a link will update the text style of the range to match the
34545 … # style of the preceding text (or the default text styles if the preceding
34546 … # text is another link) unless different styles are being set in the same
34548 "headingId": "A String", # The ID of a heading in this document.
34550 "bookmarkId": "A String", # The ID of a bookmark in this document.
34552 "underline": True or False, # Whether or not the text is underlined.
34553 "bold": True or False, # Whether or not the text is rendered as bold.
34555 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
34571 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
34577 # run of text that all has the same styling.
34578 "content": "A String", # The text of this run.
34580 # Any non-text elements in the run are replaced with the Unicode character
34582 … "textStyle": { # Represents the styling that can be applied to text. # The text style of this run.
34585 # text style's parent depends on where the text style is defined:
34587 # * The TextStyle of text in a Paragraph
34588 # inherits from the paragraph's corresponding named style type.
34589 # * The TextStyle on a named style
34590 # inherits from the normal text named style.
34591 # * The TextStyle of the normal text named style inherits
34592 # from the default text style in the Docs editor.
34593 # * The TextStyle on a Paragraph element
34594 … # that is contained in a table may inherit its text style from the table
34597 # If the text style does not inherit from a parent, unsetting fields will
34598 # revert the style to a value matching the defaults in the Docs editor.
34599 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
34600 # or transparent, depending on the `color` field.
34603 "rgbColor": { # An RGB color. # The RGB color value.
34604 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
34605 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
34606 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
34610 "italic": True or False, # Whether or not the text is italicized.
34611 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
34614 … # rendered in a smaller font size, computed based on the `font_size` field.
34615 # The `font_size` itself is not affected by changes in this field.
34616 "strikethrough": True or False, # Whether or not the text is struck through.
34617 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
34620 # `bold`, the `weighted_font_family` is applied first, then `bold`.
34627 "fontFamily": "A String", # The font family of the text.
34629 # The font family can be any font from the Font menu in Docs or from
34630 # [Google Fonts] (https://fonts.google.com/). If the font name is
34631 # unrecognized, the text is rendered in `Arial`.
34632 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
34633 … # `100` between `100` and `900`, inclusive. This range corresponds to the
34634 # numerical values described in the CSS 2.1 Specification,
34638 # The default value is `400` ("normal").
34640 … # The font weight makes up just one component of the rendered font weight.
34641 … # The rendered weight is determined by a combination of the `weight` and the
34644 … # * If the text is bold and the weight is less than `400`, the rendered
34646 … # * If the text is bold and the weight is greater than or equal to `400` but
34647 # is less than `700`, the rendered weight is `700`.
34648 … # * If the weight is greater than or equal to `700`, the rendered weight is
34649 # equal to the weight.
34650 … # * If the text is not bold, the rendered weight is equal to the weight.
34652 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
34653 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
34654 "magnitude": 3.14, # The magnitude.
34655 "unit": "A String", # The units for magnitude.
34657 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
34658 # or transparent, depending on the `color` field.
34661 "rgbColor": { # An RGB color. # The RGB color value.
34662 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
34663 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
34664 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
34668 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
34671 … # Changing the link in an update request causes some other changes to the
34672 # text style of the range:
34674 … # * When setting a link, the text foreground color will be updated to the
34675 … # default link color and the text will be underlined. If these fields are
34676 … # modified in the same request, those values will be used instead of the
34679 # also update the existing link to point to the new URL.
34682 # will separate the newline character(s) into their own text runs. The
34683 … # link will be applied separately to the runs before and after the newline.
34684 # * Removing a link will update the text style of the range to match the
34685 … # style of the preceding text (or the default text styles if the preceding
34686 … # text is another link) unless different styles are being set in the same
34688 "headingId": "A String", # The ID of a heading in this document.
34690 "bookmarkId": "A String", # The ID of a bookmark in this document.
34692 "underline": True or False, # Whether or not the text is underlined.
34693 "bold": True or False, # Whether or not the text is rendered as bold.
34695 "suggestedInsertionIds": [ # The suggested insertion IDs. A TextRun may
34700 …"suggestedTextStyleChanges": { # The suggested text style changes to this run, keyed by suggestion…
34702 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
34703 # the changes made in this suggestion. This can be used along with the
34708 # text style's parent depends on where the text style is defined:
34710 # * The TextStyle of text in a Paragraph
34711 # inherits from the paragraph's corresponding named style type.
34712 # * The TextStyle on a named style
34713 # inherits from the normal text named style.
34714 # * The TextStyle of the normal text named style inherits
34715 # from the default text style in the Docs editor.
34716 # * The TextStyle on a Paragraph element
34717 … # that is contained in a table may inherit its text style from the table
34720 … # If the text style does not inherit from a parent, unsetting fields will
34721 … # revert the style to a value matching the defaults in the Docs editor.
34722 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
34723 # or transparent, depending on the `color` field.
34726 "rgbColor": { # An RGB color. # The RGB color value.
34727 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
34728 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
34729 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
34733 "italic": True or False, # Whether or not the text is italicized.
34734 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
34737 … # rendered in a smaller font size, computed based on the `font_size` field.
34738 # The `font_size` itself is not affected by changes in this field.
34739 … "strikethrough": True or False, # Whether or not the text is struck through.
34740 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
34743 # `bold`, the `weighted_font_family` is applied first, then `bold`.
34750 "fontFamily": "A String", # The font family of the text.
34752 … # The font family can be any font from the Font menu in Docs or from
34753 # [Google Fonts] (https://fonts.google.com/). If the font name is
34754 # unrecognized, the text is rendered in `Arial`.
34755 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
34756 … # `100` between `100` and `900`, inclusive. This range corresponds to the
34757 # numerical values described in the CSS 2.1 Specification,
34761 # The default value is `400` ("normal").
34763 … # The font weight makes up just one component of the rendered font weight.
34764 … # The rendered weight is determined by a combination of the `weight` and the
34767 … # * If the text is bold and the weight is less than `400`, the rendered
34769 … # * If the text is bold and the weight is greater than or equal to `400` but
34770 # is less than `700`, the rendered weight is `700`.
34771 … # * If the weight is greater than or equal to `700`, the rendered weight is
34772 # equal to the weight.
34773 … # * If the text is not bold, the rendered weight is equal to the weight.
34775 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
34776 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
34777 "magnitude": 3.14, # The magnitude.
34778 "unit": "A String", # The units for magnitude.
34780 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
34781 # or transparent, depending on the `color` field.
34784 "rgbColor": { # An RGB color. # The RGB color value.
34785 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
34786 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
34787 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
34791 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
34794 … # Changing the link in an update request causes some other changes to the
34795 # text style of the range:
34797 … # * When setting a link, the text foreground color will be updated to the
34798 … # default link color and the text will be underlined. If these fields are
34799 … # modified in the same request, those values will be used instead of the
34802 # also update the existing link to point to the new URL.
34805 … # will separate the newline character(s) into their own text runs. The
34806 … # link will be applied separately to the runs before and after the newline.
34807 … # * Removing a link will update the text style of the range to match the
34808 … # style of the preceding text (or the default text styles if the preceding
34809 … # text is another link) unless different styles are being set in the same
34811 "headingId": "A String", # The ID of a heading in this document.
34813 "bookmarkId": "A String", # The ID of a bookmark in this document.
34815 "underline": True or False, # Whether or not the text is underlined.
34816 "bold": True or False, # Whether or not the text is rendered as bold.
34818 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
34834 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
34840 # spot in the text that is dynamically replaced with content that can change
34842 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Auto…
34845 # text style's parent depends on where the text style is defined:
34847 # * The TextStyle of text in a Paragraph
34848 # inherits from the paragraph's corresponding named style type.
34849 # * The TextStyle on a named style
34850 # inherits from the normal text named style.
34851 # * The TextStyle of the normal text named style inherits
34852 # from the default text style in the Docs editor.
34853 # * The TextStyle on a Paragraph element
34854 … # that is contained in a table may inherit its text style from the table
34857 # If the text style does not inherit from a parent, unsetting fields will
34858 # revert the style to a value matching the defaults in the Docs editor.
34859 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
34860 # or transparent, depending on the `color` field.
34863 "rgbColor": { # An RGB color. # The RGB color value.
34864 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
34865 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
34866 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
34870 "italic": True or False, # Whether or not the text is italicized.
34871 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
34874 … # rendered in a smaller font size, computed based on the `font_size` field.
34875 # The `font_size` itself is not affected by changes in this field.
34876 "strikethrough": True or False, # Whether or not the text is struck through.
34877 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
34880 # `bold`, the `weighted_font_family` is applied first, then `bold`.
34887 "fontFamily": "A String", # The font family of the text.
34889 # The font family can be any font from the Font menu in Docs or from
34890 # [Google Fonts] (https://fonts.google.com/). If the font name is
34891 # unrecognized, the text is rendered in `Arial`.
34892 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
34893 … # `100` between `100` and `900`, inclusive. This range corresponds to the
34894 # numerical values described in the CSS 2.1 Specification,
34898 # The default value is `400` ("normal").
34900 … # The font weight makes up just one component of the rendered font weight.
34901 … # The rendered weight is determined by a combination of the `weight` and the
34904 … # * If the text is bold and the weight is less than `400`, the rendered
34906 … # * If the text is bold and the weight is greater than or equal to `400` but
34907 # is less than `700`, the rendered weight is `700`.
34908 … # * If the weight is greater than or equal to `700`, the rendered weight is
34909 # equal to the weight.
34910 … # * If the text is not bold, the rendered weight is equal to the weight.
34912 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
34913 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
34914 "magnitude": 3.14, # The magnitude.
34915 "unit": "A String", # The units for magnitude.
34917 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
34918 # or transparent, depending on the `color` field.
34921 "rgbColor": { # An RGB color. # The RGB color value.
34922 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
34923 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
34924 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
34928 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
34931 … # Changing the link in an update request causes some other changes to the
34932 # text style of the range:
34934 … # * When setting a link, the text foreground color will be updated to the
34935 … # default link color and the text will be underlined. If these fields are
34936 … # modified in the same request, those values will be used instead of the
34939 # also update the existing link to point to the new URL.
34942 # will separate the newline character(s) into their own text runs. The
34943 … # link will be applied separately to the runs before and after the newline.
34944 # * Removing a link will update the text style of the range to match the
34945 … # style of the preceding text (or the default text styles if the preceding
34946 … # text is another link) unless different styles are being set in the same
34948 "headingId": "A String", # The ID of a heading in this document.
34950 "bookmarkId": "A String", # The ID of a bookmark in this document.
34952 "underline": True or False, # Whether or not the text is underlined.
34953 "bold": True or False, # Whether or not the text is rendered as bold.
34955 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
34959 …"suggestedTextStyleChanges": { # The suggested text style changes to this AutoText, keyed by sugge…
34961 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
34962 # the changes made in this suggestion. This can be used along with the
34967 # text style's parent depends on where the text style is defined:
34969 # * The TextStyle of text in a Paragraph
34970 # inherits from the paragraph's corresponding named style type.
34971 # * The TextStyle on a named style
34972 # inherits from the normal text named style.
34973 # * The TextStyle of the normal text named style inherits
34974 # from the default text style in the Docs editor.
34975 # * The TextStyle on a Paragraph element
34976 … # that is contained in a table may inherit its text style from the table
34979 … # If the text style does not inherit from a parent, unsetting fields will
34980 … # revert the style to a value matching the defaults in the Docs editor.
34981 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
34982 # or transparent, depending on the `color` field.
34985 "rgbColor": { # An RGB color. # The RGB color value.
34986 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
34987 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
34988 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
34992 "italic": True or False, # Whether or not the text is italicized.
34993 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
34996 … # rendered in a smaller font size, computed based on the `font_size` field.
34997 # The `font_size` itself is not affected by changes in this field.
34998 … "strikethrough": True or False, # Whether or not the text is struck through.
34999 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
35002 # `bold`, the `weighted_font_family` is applied first, then `bold`.
35009 "fontFamily": "A String", # The font family of the text.
35011 … # The font family can be any font from the Font menu in Docs or from
35012 # [Google Fonts] (https://fonts.google.com/). If the font name is
35013 # unrecognized, the text is rendered in `Arial`.
35014 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
35015 … # `100` between `100` and `900`, inclusive. This range corresponds to the
35016 # numerical values described in the CSS 2.1 Specification,
35020 # The default value is `400` ("normal").
35022 … # The font weight makes up just one component of the rendered font weight.
35023 … # The rendered weight is determined by a combination of the `weight` and the
35026 … # * If the text is bold and the weight is less than `400`, the rendered
35028 … # * If the text is bold and the weight is greater than or equal to `400` but
35029 # is less than `700`, the rendered weight is `700`.
35030 … # * If the weight is greater than or equal to `700`, the rendered weight is
35031 # equal to the weight.
35032 … # * If the text is not bold, the rendered weight is equal to the weight.
35034 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
35035 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
35036 "magnitude": 3.14, # The magnitude.
35037 "unit": "A String", # The units for magnitude.
35039 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
35040 # or transparent, depending on the `color` field.
35043 "rgbColor": { # An RGB color. # The RGB color value.
35044 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
35045 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
35046 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
35050 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
35053 … # Changing the link in an update request causes some other changes to the
35054 # text style of the range:
35056 … # * When setting a link, the text foreground color will be updated to the
35057 … # default link color and the text will be underlined. If these fields are
35058 … # modified in the same request, those values will be used instead of the
35061 # also update the existing link to point to the new URL.
35064 … # will separate the newline character(s) into their own text runs. The
35065 … # link will be applied separately to the runs before and after the newline.
35066 … # * Removing a link will update the text style of the range to match the
35067 … # style of the preceding text (or the default text styles if the preceding
35068 … # text is another link) unless different styles are being set in the same
35070 "headingId": "A String", # The ID of a heading in this document.
35072 "bookmarkId": "A String", # The ID of a bookmark in this document.
35074 "underline": True or False, # Whether or not the text is underlined.
35075 "bold": True or False, # Whether or not the text is rendered as bold.
35077 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
35093 "type": "A String", # The type of this auto text.
35094 "suggestedInsertionIds": [ # The suggested insertion IDs. An AutoText
35102 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Inli…
35104 … # Similar to text content, like text runs and footnote references, the text
35105 … # style of an inline object element can affect content layout as well as the
35109 # text style's parent depends on where the text style is defined:
35111 # * The TextStyle of text in a Paragraph
35112 # inherits from the paragraph's corresponding named style type.
35113 # * The TextStyle on a named style
35114 # inherits from the normal text named style.
35115 # * The TextStyle of the normal text named style inherits
35116 # from the default text style in the Docs editor.
35117 # * The TextStyle on a Paragraph element
35118 … # that is contained in a table may inherit its text style from the table
35121 # If the text style does not inherit from a parent, unsetting fields will
35122 # revert the style to a value matching the defaults in the Docs editor.
35123 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
35124 # or transparent, depending on the `color` field.
35127 "rgbColor": { # An RGB color. # The RGB color value.
35128 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
35129 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
35130 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
35134 "italic": True or False, # Whether or not the text is italicized.
35135 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
35138 … # rendered in a smaller font size, computed based on the `font_size` field.
35139 # The `font_size` itself is not affected by changes in this field.
35140 "strikethrough": True or False, # Whether or not the text is struck through.
35141 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
35144 # `bold`, the `weighted_font_family` is applied first, then `bold`.
35151 "fontFamily": "A String", # The font family of the text.
35153 # The font family can be any font from the Font menu in Docs or from
35154 # [Google Fonts] (https://fonts.google.com/). If the font name is
35155 # unrecognized, the text is rendered in `Arial`.
35156 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
35157 … # `100` between `100` and `900`, inclusive. This range corresponds to the
35158 # numerical values described in the CSS 2.1 Specification,
35162 # The default value is `400` ("normal").
35164 … # The font weight makes up just one component of the rendered font weight.
35165 … # The rendered weight is determined by a combination of the `weight` and the
35168 … # * If the text is bold and the weight is less than `400`, the rendered
35170 … # * If the text is bold and the weight is greater than or equal to `400` but
35171 # is less than `700`, the rendered weight is `700`.
35172 … # * If the weight is greater than or equal to `700`, the rendered weight is
35173 # equal to the weight.
35174 … # * If the text is not bold, the rendered weight is equal to the weight.
35176 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
35177 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
35178 "magnitude": 3.14, # The magnitude.
35179 "unit": "A String", # The units for magnitude.
35181 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
35182 # or transparent, depending on the `color` field.
35185 "rgbColor": { # An RGB color. # The RGB color value.
35186 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
35187 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
35188 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
35192 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
35195 … # Changing the link in an update request causes some other changes to the
35196 # text style of the range:
35198 … # * When setting a link, the text foreground color will be updated to the
35199 … # default link color and the text will be underlined. If these fields are
35200 … # modified in the same request, those values will be used instead of the
35203 # also update the existing link to point to the new URL.
35206 # will separate the newline character(s) into their own text runs. The
35207 … # link will be applied separately to the runs before and after the newline.
35208 # * Removing a link will update the text style of the range to match the
35209 … # style of the preceding text (or the default text styles if the preceding
35210 … # text is another link) unless different styles are being set in the same
35212 "headingId": "A String", # The ID of a heading in this document.
35214 "bookmarkId": "A String", # The ID of a bookmark in this document.
35216 "underline": True or False, # Whether or not the text is underlined.
35217 "bold": True or False, # Whether or not the text is rendered as bold.
35219 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
35223 …"suggestedTextStyleChanges": { # The suggested text style changes to this InlineObject, keyed by s…
35226 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
35227 # the changes made in this suggestion. This can be used along with the
35232 # text style's parent depends on where the text style is defined:
35234 # * The TextStyle of text in a Paragraph
35235 # inherits from the paragraph's corresponding named style type.
35236 # * The TextStyle on a named style
35237 # inherits from the normal text named style.
35238 # * The TextStyle of the normal text named style inherits
35239 # from the default text style in the Docs editor.
35240 # * The TextStyle on a Paragraph element
35241 … # that is contained in a table may inherit its text style from the table
35244 … # If the text style does not inherit from a parent, unsetting fields will
35245 … # revert the style to a value matching the defaults in the Docs editor.
35246 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
35247 # or transparent, depending on the `color` field.
35250 "rgbColor": { # An RGB color. # The RGB color value.
35251 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
35252 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
35253 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
35257 "italic": True or False, # Whether or not the text is italicized.
35258 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
35261 … # rendered in a smaller font size, computed based on the `font_size` field.
35262 # The `font_size` itself is not affected by changes in this field.
35263 … "strikethrough": True or False, # Whether or not the text is struck through.
35264 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
35267 # `bold`, the `weighted_font_family` is applied first, then `bold`.
35274 "fontFamily": "A String", # The font family of the text.
35276 … # The font family can be any font from the Font menu in Docs or from
35277 # [Google Fonts] (https://fonts.google.com/). If the font name is
35278 # unrecognized, the text is rendered in `Arial`.
35279 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
35280 … # `100` between `100` and `900`, inclusive. This range corresponds to the
35281 # numerical values described in the CSS 2.1 Specification,
35285 # The default value is `400` ("normal").
35287 … # The font weight makes up just one component of the rendered font weight.
35288 … # The rendered weight is determined by a combination of the `weight` and the
35291 … # * If the text is bold and the weight is less than `400`, the rendered
35293 … # * If the text is bold and the weight is greater than or equal to `400` but
35294 # is less than `700`, the rendered weight is `700`.
35295 … # * If the weight is greater than or equal to `700`, the rendered weight is
35296 # equal to the weight.
35297 … # * If the text is not bold, the rendered weight is equal to the weight.
35299 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
35300 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
35301 "magnitude": 3.14, # The magnitude.
35302 "unit": "A String", # The units for magnitude.
35304 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
35305 # or transparent, depending on the `color` field.
35308 "rgbColor": { # An RGB color. # The RGB color value.
35309 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
35310 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
35311 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
35315 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
35318 … # Changing the link in an update request causes some other changes to the
35319 # text style of the range:
35321 … # * When setting a link, the text foreground color will be updated to the
35322 … # default link color and the text will be underlined. If these fields are
35323 … # modified in the same request, those values will be used instead of the
35326 # also update the existing link to point to the new URL.
35329 … # will separate the newline character(s) into their own text runs. The
35330 … # link will be applied separately to the runs before and after the newline.
35331 … # * Removing a link will update the text style of the range to match the
35332 … # style of the preceding text (or the default text styles if the preceding
35333 … # text is another link) unless different styles are being set in the same
35335 "headingId": "A String", # The ID of a heading in this document.
35337 "bookmarkId": "A String", # The ID of a bookmark in this document.
35339 "underline": True or False, # Whether or not the text is underlined.
35340 "bold": True or False, # Whether or not the text is rendered as bold.
35342 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
35358 "inlineObjectId": "A String", # The ID of the InlineObject this
35360 …"suggestedInsertionIds": [ # The suggested insertion IDs. An InlineObjectElement may have multiple…
35367 … # footnote reference. A footnote reference is the inline content rendered with
35368 # a number and is used to identify the footnote.
35369 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Foot…
35372 # text style's parent depends on where the text style is defined:
35374 # * The TextStyle of text in a Paragraph
35375 # inherits from the paragraph's corresponding named style type.
35376 # * The TextStyle on a named style
35377 # inherits from the normal text named style.
35378 # * The TextStyle of the normal text named style inherits
35379 # from the default text style in the Docs editor.
35380 # * The TextStyle on a Paragraph element
35381 … # that is contained in a table may inherit its text style from the table
35384 # If the text style does not inherit from a parent, unsetting fields will
35385 # revert the style to a value matching the defaults in the Docs editor.
35386 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
35387 # or transparent, depending on the `color` field.
35390 "rgbColor": { # An RGB color. # The RGB color value.
35391 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
35392 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
35393 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
35397 "italic": True or False, # Whether or not the text is italicized.
35398 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
35401 … # rendered in a smaller font size, computed based on the `font_size` field.
35402 # The `font_size` itself is not affected by changes in this field.
35403 "strikethrough": True or False, # Whether or not the text is struck through.
35404 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
35407 # `bold`, the `weighted_font_family` is applied first, then `bold`.
35414 "fontFamily": "A String", # The font family of the text.
35416 # The font family can be any font from the Font menu in Docs or from
35417 # [Google Fonts] (https://fonts.google.com/). If the font name is
35418 # unrecognized, the text is rendered in `Arial`.
35419 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
35420 … # `100` between `100` and `900`, inclusive. This range corresponds to the
35421 # numerical values described in the CSS 2.1 Specification,
35425 # The default value is `400` ("normal").
35427 … # The font weight makes up just one component of the rendered font weight.
35428 … # The rendered weight is determined by a combination of the `weight` and the
35431 … # * If the text is bold and the weight is less than `400`, the rendered
35433 … # * If the text is bold and the weight is greater than or equal to `400` but
35434 # is less than `700`, the rendered weight is `700`.
35435 … # * If the weight is greater than or equal to `700`, the rendered weight is
35436 # equal to the weight.
35437 … # * If the text is not bold, the rendered weight is equal to the weight.
35439 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
35440 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
35441 "magnitude": 3.14, # The magnitude.
35442 "unit": "A String", # The units for magnitude.
35444 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
35445 # or transparent, depending on the `color` field.
35448 "rgbColor": { # An RGB color. # The RGB color value.
35449 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
35450 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
35451 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
35455 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
35458 … # Changing the link in an update request causes some other changes to the
35459 # text style of the range:
35461 … # * When setting a link, the text foreground color will be updated to the
35462 … # default link color and the text will be underlined. If these fields are
35463 … # modified in the same request, those values will be used instead of the
35466 # also update the existing link to point to the new URL.
35469 # will separate the newline character(s) into their own text runs. The
35470 … # link will be applied separately to the runs before and after the newline.
35471 # * Removing a link will update the text style of the range to match the
35472 … # style of the preceding text (or the default text styles if the preceding
35473 … # text is another link) unless different styles are being set in the same
35475 "headingId": "A String", # The ID of a heading in this document.
35477 "bookmarkId": "A String", # The ID of a bookmark in this document.
35479 "underline": True or False, # Whether or not the text is underlined.
35480 "bold": True or False, # Whether or not the text is rendered as bold.
35482 "footnoteNumber": "A String", # The rendered number of this footnote.
35483 …"suggestedInsertionIds": [ # The suggested insertion IDs. A FootnoteReference may have multiple in…
35488 "footnoteId": "A String", # The ID of the footnote that
35489 # contains the content of this footnote reference.
35490 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
35494 …"suggestedTextStyleChanges": { # The suggested text style changes to this FootnoteReference, keyed…
35497 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
35498 # the changes made in this suggestion. This can be used along with the
35503 # text style's parent depends on where the text style is defined:
35505 # * The TextStyle of text in a Paragraph
35506 # inherits from the paragraph's corresponding named style type.
35507 # * The TextStyle on a named style
35508 # inherits from the normal text named style.
35509 # * The TextStyle of the normal text named style inherits
35510 # from the default text style in the Docs editor.
35511 # * The TextStyle on a Paragraph element
35512 … # that is contained in a table may inherit its text style from the table
35515 … # If the text style does not inherit from a parent, unsetting fields will
35516 … # revert the style to a value matching the defaults in the Docs editor.
35517 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
35518 # or transparent, depending on the `color` field.
35521 "rgbColor": { # An RGB color. # The RGB color value.
35522 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
35523 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
35524 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
35528 "italic": True or False, # Whether or not the text is italicized.
35529 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
35532 … # rendered in a smaller font size, computed based on the `font_size` field.
35533 # The `font_size` itself is not affected by changes in this field.
35534 … "strikethrough": True or False, # Whether or not the text is struck through.
35535 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
35538 # `bold`, the `weighted_font_family` is applied first, then `bold`.
35545 "fontFamily": "A String", # The font family of the text.
35547 … # The font family can be any font from the Font menu in Docs or from
35548 # [Google Fonts] (https://fonts.google.com/). If the font name is
35549 # unrecognized, the text is rendered in `Arial`.
35550 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
35551 … # `100` between `100` and `900`, inclusive. This range corresponds to the
35552 # numerical values described in the CSS 2.1 Specification,
35556 # The default value is `400` ("normal").
35558 … # The font weight makes up just one component of the rendered font weight.
35559 … # The rendered weight is determined by a combination of the `weight` and the
35562 … # * If the text is bold and the weight is less than `400`, the rendered
35564 … # * If the text is bold and the weight is greater than or equal to `400` but
35565 # is less than `700`, the rendered weight is `700`.
35566 … # * If the weight is greater than or equal to `700`, the rendered weight is
35567 # equal to the weight.
35568 … # * If the text is not bold, the rendered weight is equal to the weight.
35570 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
35571 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
35572 "magnitude": 3.14, # The magnitude.
35573 "unit": "A String", # The units for magnitude.
35575 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
35576 # or transparent, depending on the `color` field.
35579 "rgbColor": { # An RGB color. # The RGB color value.
35580 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
35581 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
35582 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
35586 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
35589 … # Changing the link in an update request causes some other changes to the
35590 # text style of the range:
35592 … # * When setting a link, the text foreground color will be updated to the
35593 … # default link color and the text will be underlined. If these fields are
35594 … # modified in the same request, those values will be used instead of the
35597 # also update the existing link to point to the new URL.
35600 … # will separate the newline character(s) into their own text runs. The
35601 … # link will be applied separately to the runs before and after the newline.
35602 … # * Removing a link will update the text style of the range to match the
35603 … # style of the preceding text (or the default text styles if the preceding
35604 … # text is another link) unless different styles are being set in the same
35606 "headingId": "A String", # The ID of a heading in this document.
35608 "bookmarkId": "A String", # The ID of a bookmark in this document.
35610 "underline": True or False, # Whether or not the text is underlined.
35611 "bold": True or False, # Whether or not the text is rendered as bold.
35613 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
35632 …"suggestedPositionedObjectIds": { # The IDs of the positioned objects that are suggested to be att…
35635 "objectIds": [ # The object IDs.
35640 …"bullet": { # Describes the bullet of a paragraph. # The bullet for this paragraph. If not present…
35642 "nestingLevel": 42, # The nesting level of this paragraph in the list.
35643 "listId": "A String", # The ID of the list this paragraph belongs to.
35644 …"textStyle": { # Represents the styling that can be applied to text. # The paragraph specific text…
35647 # text style's parent depends on where the text style is defined:
35649 # * The TextStyle of text in a Paragraph
35650 # inherits from the paragraph's corresponding named style type.
35651 # * The TextStyle on a named style
35652 # inherits from the normal text named style.
35653 # * The TextStyle of the normal text named style inherits
35654 # from the default text style in the Docs editor.
35655 # * The TextStyle on a Paragraph element
35656 # that is contained in a table may inherit its text style from the table
35659 # If the text style does not inherit from a parent, unsetting fields will
35660 # revert the style to a value matching the defaults in the Docs editor.
35661 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
35662 # or transparent, depending on the `color` field.
35665 "rgbColor": { # An RGB color. # The RGB color value.
35666 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
35667 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
35668 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
35672 "italic": True or False, # Whether or not the text is italicized.
35673 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
35676 # rendered in a smaller font size, computed based on the `font_size` field.
35677 # The `font_size` itself is not affected by changes in this field.
35678 "strikethrough": True or False, # Whether or not the text is struck through.
35679 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
35682 # `bold`, the `weighted_font_family` is applied first, then `bold`.
35689 "fontFamily": "A String", # The font family of the text.
35691 # The font family can be any font from the Font menu in Docs or from
35692 # [Google Fonts] (https://fonts.google.com/). If the font name is
35693 # unrecognized, the text is rendered in `Arial`.
35694 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
35695 # `100` between `100` and `900`, inclusive. This range corresponds to the
35696 # numerical values described in the CSS 2.1 Specification,
35700 # The default value is `400` ("normal").
35702 # The font weight makes up just one component of the rendered font weight.
35703 … # The rendered weight is determined by a combination of the `weight` and the
35706 # * If the text is bold and the weight is less than `400`, the rendered
35708 … # * If the text is bold and the weight is greater than or equal to `400` but
35709 # is less than `700`, the rendered weight is `700`.
35710 … # * If the weight is greater than or equal to `700`, the rendered weight is
35711 # equal to the weight.
35712 # * If the text is not bold, the rendered weight is equal to the weight.
35714 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
35715 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
35716 "magnitude": 3.14, # The magnitude.
35717 "unit": "A String", # The units for magnitude.
35719 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
35720 # or transparent, depending on the `color` field.
35723 "rgbColor": { # An RGB color. # The RGB color value.
35724 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
35725 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
35726 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
35730 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
35733 # Changing the link in an update request causes some other changes to the
35734 # text style of the range:
35736 # * When setting a link, the text foreground color will be updated to the
35737 # default link color and the text will be underlined. If these fields are
35738 # modified in the same request, those values will be used instead of the
35741 # also update the existing link to point to the new URL.
35744 # will separate the newline character(s) into their own text runs. The
35745 … # link will be applied separately to the runs before and after the newline.
35746 # * Removing a link will update the text style of the range to match the
35747 # style of the preceding text (or the default text styles if the preceding
35748 # text is another link) unless different styles are being set in the same
35750 "headingId": "A String", # The ID of a heading in this document.
35752 "bookmarkId": "A String", # The ID of a bookmark in this document.
35754 "underline": True or False, # Whether or not the text is underlined.
35755 "bold": True or False, # Whether or not the text is rendered as bold.
35758 "suggestedBulletChanges": { # The suggested changes to this paragraph's bullet.
35760 … "bullet": { # Describes the bullet of a paragraph. # A Bullet that only includes the changes made
35761 # in this suggestion. This can be used along with the
35764 "nestingLevel": 42, # The nesting level of this paragraph in the list.
35765 "listId": "A String", # The ID of the list this paragraph belongs to.
35766 …"textStyle": { # Represents the styling that can be applied to text. # The paragraph specific text…
35769 # text style's parent depends on where the text style is defined:
35771 # * The TextStyle of text in a Paragraph
35772 # inherits from the paragraph's corresponding named style type.
35773 # * The TextStyle on a named style
35774 # inherits from the normal text named style.
35775 # * The TextStyle of the normal text named style inherits
35776 # from the default text style in the Docs editor.
35777 # * The TextStyle on a Paragraph element
35778 … # that is contained in a table may inherit its text style from the table
35781 # If the text style does not inherit from a parent, unsetting fields will
35782 # revert the style to a value matching the defaults in the Docs editor.
35783 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
35784 # or transparent, depending on the `color` field.
35787 "rgbColor": { # An RGB color. # The RGB color value.
35788 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
35789 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
35790 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
35794 "italic": True or False, # Whether or not the text is italicized.
35795 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
35798 … # rendered in a smaller font size, computed based on the `font_size` field.
35799 # The `font_size` itself is not affected by changes in this field.
35800 "strikethrough": True or False, # Whether or not the text is struck through.
35801 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
35804 # `bold`, the `weighted_font_family` is applied first, then `bold`.
35811 "fontFamily": "A String", # The font family of the text.
35813 # The font family can be any font from the Font menu in Docs or from
35814 # [Google Fonts] (https://fonts.google.com/). If the font name is
35815 # unrecognized, the text is rendered in `Arial`.
35816 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
35817 … # `100` between `100` and `900`, inclusive. This range corresponds to the
35818 # numerical values described in the CSS 2.1 Specification,
35822 # The default value is `400` ("normal").
35824 … # The font weight makes up just one component of the rendered font weight.
35825 … # The rendered weight is determined by a combination of the `weight` and the
35828 … # * If the text is bold and the weight is less than `400`, the rendered
35830 … # * If the text is bold and the weight is greater than or equal to `400` but
35831 # is less than `700`, the rendered weight is `700`.
35832 … # * If the weight is greater than or equal to `700`, the rendered weight is
35833 # equal to the weight.
35834 … # * If the text is not bold, the rendered weight is equal to the weight.
35836 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
35837 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
35838 "magnitude": 3.14, # The magnitude.
35839 "unit": "A String", # The units for magnitude.
35841 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
35842 # or transparent, depending on the `color` field.
35845 "rgbColor": { # An RGB color. # The RGB color value.
35846 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
35847 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
35848 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
35852 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
35855 … # Changing the link in an update request causes some other changes to the
35856 # text style of the range:
35858 … # * When setting a link, the text foreground color will be updated to the
35859 … # default link color and the text will be underlined. If these fields are
35860 … # modified in the same request, those values will be used instead of the
35863 # also update the existing link to point to the new URL.
35866 # will separate the newline character(s) into their own text runs. The
35867 … # link will be applied separately to the runs before and after the newline.
35868 # * Removing a link will update the text style of the range to match the
35869 … # style of the preceding text (or the default text styles if the preceding
35870 … # text is another link) unless different styles are being set in the same
35872 "headingId": "A String", # The ID of a heading in this document.
35874 "bookmarkId": "A String", # The ID of a bookmark in this document.
35876 "underline": True or False, # Whether or not the text is underlined.
35877 "bold": True or False, # Whether or not the text is rendered as bold.
35880 …te": { # A mask that indicates which of the fields on the base # A mask that indicates which of th…
35884 … "nestingLevelSuggested": True or False, # Indicates if there was a suggested change to the
35886 …hat indicates which of the fields on the base TextStyle have been changed in this suggestion. # A …
35901 … "listIdSuggested": True or False, # Indicates if there was a suggested change to the
35906 … "positionedObjectIds": [ # The IDs of the positioned objects tethered to this paragraph.
35909 …"suggestedParagraphStyleChanges": { # The suggested paragraph style changes to this paragraph, key…
35913 …tes which of the fields on the base ParagraphStyle have been changed in this suggestion. # A mask …
35934 … mask that indicates which of the fields on the base Shading have been changed in this # A mask th…
35937 …ckgroundColorSuggested": True or False, # Indicates if there was a suggested change to the Shading.
35941 # the changes made in this suggestion. This can be used along with the
35946 … # A paragraph style's parent depends on where the paragraph style is defined:
35948 # * The ParagraphStyle on a Paragraph
35949 # inherits from the paragraph's corresponding named style type.
35950 # * The ParagraphStyle on a named style
35951 # inherits from the normal text named style.
35952 # * The ParagraphStyle of the normal text named style inherits
35953 # from the default paragraph style in the Docs editor.
35954 # * The ParagraphStyle on a Paragraph
35956 # the table style.
35958 … # If the paragraph style does not inherit from a parent, unsetting fields will
35959 # revert the style to a value matching the defaults in the Docs editor.
35960 "spacingMode": "A String", # The spacing mode for the paragraph.
35961 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
35964 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
35965 # inherited from the parent.
35966 "magnitude": 3.14, # The magnitude.
35967 "unit": "A String", # The units for magnitude.
35969 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
35970 # page or column as the next paragraph if possible. If unset, the value is
35971 # inherited from the parent.
35972 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
35973 … # is represented as 100.0. If unset, the value is inherited from the parent.
35974 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
35975 # is inherited from the parent.
35976 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
35977 # inherited from the parent.
35979 … # The bottom border is rendered when the paragraph below has different border
35983 # changes to a paragraph border the new border must be specified in
35985 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
35988 "rgbColor": { # An RGB color. # The RGB color value.
35989 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
35990 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
35991 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
35995 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
35996 "magnitude": 3.14, # The magnitude.
35997 "unit": "A String", # The units for magnitude.
35999 "dashStyle": "A String", # The dash style of the border.
36000 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
36001 "magnitude": 3.14, # The magnitude.
36002 "unit": "A String", # The units for magnitude.
36005 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
36006 … # the start of the text, based on the current paragraph direction. If unset,
36007 # the value is inherited from the parent.
36008 "magnitude": 3.14, # The magnitude.
36009 "unit": "A String", # The units for magnitude.
36011 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
36012 # If unset, the value is inherited from the parent.
36014 # The between border is rendered when the adjacent paragraph has the same
36018 # changes to a paragraph border the new border must be specified in
36020 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
36023 "rgbColor": { # An RGB color. # The RGB color value.
36024 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
36025 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
36026 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
36030 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
36031 "magnitude": 3.14, # The magnitude.
36032 "unit": "A String", # The units for magnitude.
36034 "dashStyle": "A String", # The dash style of the border.
36035 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
36036 "magnitude": 3.14, # The magnitude.
36037 "unit": "A String", # The units for magnitude.
36040 "namedStyleType": "A String", # The named style type of the paragraph.
36042 # Since updating the named style type affects other properties within
36043 … # ParagraphStyle, the named style type is applied before the other properties
36045 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
36046 # from the parent.
36049 # changes to a paragraph border the new border must be specified in
36051 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
36054 "rgbColor": { # An RGB color. # The RGB color value.
36055 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
36056 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
36057 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
36061 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
36062 "magnitude": 3.14, # The magnitude.
36063 "unit": "A String", # The units for magnitude.
36065 "dashStyle": "A String", # The dash style of the border.
36066 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
36067 "magnitude": 3.14, # The magnitude.
36068 "unit": "A String", # The units for magnitude.
36071 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
36072 # the end of the text, based on the current paragraph direction. If unset,
36073 # the value is inherited from the parent.
36074 "magnitude": 3.14, # The magnitude.
36075 "unit": "A String", # The units for magnitude.
36077 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
36078 # from the parent.
36081 # changes to a paragraph border the new border must be specified in
36083 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
36086 "rgbColor": { # An RGB color. # The RGB color value.
36087 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
36088 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
36089 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
36093 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
36094 "magnitude": 3.14, # The magnitude.
36095 "unit": "A String", # The units for magnitude.
36097 "dashStyle": "A String", # The dash style of the border.
36098 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
36099 "magnitude": 3.14, # The magnitude.
36100 "unit": "A String", # The units for magnitude.
36103 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
36104 # inherited from the parent.
36105 "magnitude": 3.14, # The magnitude.
36106 "unit": "A String", # The units for magnitude.
36108 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
36110 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
36112 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
36115 "rgbColor": { # An RGB color. # The RGB color value.
36116 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
36117 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
36118 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
36123 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
36124 # from the parent.
36126 # The top border is rendered when the paragraph above has different border
36130 # changes to a paragraph border the new border must be specified in
36132 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
36135 "rgbColor": { # An RGB color. # The RGB color value.
36136 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
36137 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
36138 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
36142 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
36143 "magnitude": 3.14, # The magnitude.
36144 "unit": "A String", # The units for magnitude.
36146 "dashStyle": "A String", # The dash style of the border.
36147 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
36148 "magnitude": 3.14, # The magnitude.
36149 "unit": "A String", # The units for magnitude.
36152 … "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
36155 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
36156 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
36157 "magnitude": 3.14, # The magnitude.
36158 "unit": "A String", # The units for magnitude.
36162 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
36163 # the value is inherited from the parent.
36164 "magnitude": 3.14, # The magnitude.
36165 "unit": "A String", # The units for magnitude.
36167 "alignment": "A String", # The text alignment for this paragraph.
36168 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
36169 # column if possible. If unset, the value is inherited from the parent.
36173 … "paragraphStyle": { # Styles that apply to a whole paragraph. # The style of this paragraph.
36176 # A paragraph style's parent depends on where the paragraph style is defined:
36178 # * The ParagraphStyle on a Paragraph
36179 # inherits from the paragraph's corresponding named style type.
36180 # * The ParagraphStyle on a named style
36181 # inherits from the normal text named style.
36182 # * The ParagraphStyle of the normal text named style inherits
36183 # from the default paragraph style in the Docs editor.
36184 # * The ParagraphStyle on a Paragraph
36186 # the table style.
36188 # If the paragraph style does not inherit from a parent, unsetting fields will
36189 # revert the style to a value matching the defaults in the Docs editor.
36190 "spacingMode": "A String", # The spacing mode for the paragraph.
36191 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
36194 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
36195 # inherited from the parent.
36196 "magnitude": 3.14, # The magnitude.
36197 "unit": "A String", # The units for magnitude.
36199 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
36200 # page or column as the next paragraph if possible. If unset, the value is
36201 # inherited from the parent.
36202 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
36203 # is represented as 100.0. If unset, the value is inherited from the parent.
36204 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
36205 # is inherited from the parent.
36206 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
36207 # inherited from the parent.
36209 # The bottom border is rendered when the paragraph below has different border
36213 # changes to a paragraph border the new border must be specified in
36215 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
36218 "rgbColor": { # An RGB color. # The RGB color value.
36219 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
36220 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
36221 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
36225 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
36226 "magnitude": 3.14, # The magnitude.
36227 "unit": "A String", # The units for magnitude.
36229 "dashStyle": "A String", # The dash style of the border.
36230 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
36231 "magnitude": 3.14, # The magnitude.
36232 "unit": "A String", # The units for magnitude.
36235 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
36236 # the start of the text, based on the current paragraph direction. If unset,
36237 # the value is inherited from the parent.
36238 "magnitude": 3.14, # The magnitude.
36239 "unit": "A String", # The units for magnitude.
36241 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
36242 # If unset, the value is inherited from the parent.
36244 # The between border is rendered when the adjacent paragraph has the same
36248 # changes to a paragraph border the new border must be specified in
36250 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
36253 "rgbColor": { # An RGB color. # The RGB color value.
36254 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
36255 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
36256 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
36260 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
36261 "magnitude": 3.14, # The magnitude.
36262 "unit": "A String", # The units for magnitude.
36264 "dashStyle": "A String", # The dash style of the border.
36265 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
36266 "magnitude": 3.14, # The magnitude.
36267 "unit": "A String", # The units for magnitude.
36270 "namedStyleType": "A String", # The named style type of the paragraph.
36272 # Since updating the named style type affects other properties within
36273 # ParagraphStyle, the named style type is applied before the other properties
36275 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
36276 # from the parent.
36279 # changes to a paragraph border the new border must be specified in
36281 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
36284 "rgbColor": { # An RGB color. # The RGB color value.
36285 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
36286 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
36287 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
36291 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
36292 "magnitude": 3.14, # The magnitude.
36293 "unit": "A String", # The units for magnitude.
36295 "dashStyle": "A String", # The dash style of the border.
36296 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
36297 "magnitude": 3.14, # The magnitude.
36298 "unit": "A String", # The units for magnitude.
36301 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
36302 # the end of the text, based on the current paragraph direction. If unset,
36303 # the value is inherited from the parent.
36304 "magnitude": 3.14, # The magnitude.
36305 "unit": "A String", # The units for magnitude.
36307 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
36308 # from the parent.
36311 # changes to a paragraph border the new border must be specified in
36313 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
36316 "rgbColor": { # An RGB color. # The RGB color value.
36317 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
36318 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
36319 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
36323 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
36324 "magnitude": 3.14, # The magnitude.
36325 "unit": "A String", # The units for magnitude.
36327 "dashStyle": "A String", # The dash style of the border.
36328 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
36329 "magnitude": 3.14, # The magnitude.
36330 "unit": "A String", # The units for magnitude.
36333 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
36334 # inherited from the parent.
36335 "magnitude": 3.14, # The magnitude.
36336 "unit": "A String", # The units for magnitude.
36338 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
36340 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
36342 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
36345 "rgbColor": { # An RGB color. # The RGB color value.
36346 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
36347 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
36348 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
36353 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
36354 # from the parent.
36356 # The top border is rendered when the paragraph above has different border
36360 # changes to a paragraph border the new border must be specified in
36362 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
36365 "rgbColor": { # An RGB color. # The RGB color value.
36366 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
36367 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
36368 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
36372 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
36373 "magnitude": 3.14, # The magnitude.
36374 "unit": "A String", # The units for magnitude.
36376 "dashStyle": "A String", # The dash style of the border.
36377 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
36378 "magnitude": 3.14, # The magnitude.
36379 "unit": "A String", # The units for magnitude.
36382 … "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
36385 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
36386 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
36387 "magnitude": 3.14, # The magnitude.
36388 "unit": "A String", # The units for magnitude.
36392 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
36393 # the value is inherited from the parent.
36394 "magnitude": 3.14, # The magnitude.
36395 "unit": "A String", # The units for magnitude.
36397 "alignment": "A String", # The text alignment for this paragraph.
36398 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
36399 # column if possible. If unset, the value is inherited from the parent.
36404 "rows": 42, # Number of rows in the table.
36405 "tableStyle": { # Styles that apply to a table. # The style of the table.
36406 "tableColumnProperties": [ # The properties of each column.
36409 # HTML. So the properties for a row can be found on the row's
36411 { # The properties of a column in a table.
36412 …th": { # A magnitude in a single direction in the specified units. # The width of the column. Set …
36414 "magnitude": 3.14, # The magnitude.
36415 "unit": "A String", # The units for magnitude.
36417 "widthType": "A String", # The width type of the column.
36421 "suggestedInsertionIds": [ # The suggested insertion IDs. A Table may have
36426 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
36430 "tableRows": [ # The contents and style of each row.
36431 { # The contents and style of a row in a Table.
36432 … "endIndex": 42, # The zero-based end index of this row, exclusive, in UTF-16 code units.
36433 "tableCells": [ # The contents and style of each cell in this row.
36436 # different number of cells than other rows in the same table.
36437 { # The contents and style of a cell in a Table.
36438 … "endIndex": 42, # The zero-based end index of this cell, exclusive, in UTF-16 code units.
36439 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
36443 "suggestedInsertionIds": [ # The suggested insertion IDs. A TableCell
36448 "content": [ # The content of the cell.
36451 "tableCellStyle": { # The style of a TableCell. # The style of the cell.
36454 # A table cell style can inherit from the table's style.
36455 …ngBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of t…
36456 "magnitude": 3.14, # The magnitude.
36457 "unit": "A String", # The units for magnitude.
36459 … "borderBottom": { # A border around a table cell. # The bottom border of the cell.
36460 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
36463 "rgbColor": { # An RGB color. # The RGB color value.
36464 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
36465 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
36466 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
36470 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
36471 "magnitude": 3.14, # The magnitude.
36472 "unit": "A String", # The units for magnitude.
36474 "dashStyle": "A String", # The dash style of the border.
36476 …ddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of th…
36477 "magnitude": 3.14, # The magnitude.
36478 "unit": "A String", # The units for magnitude.
36480 …paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of th…
36481 "magnitude": 3.14, # The magnitude.
36482 "unit": "A String", # The units for magnitude.
36484 … "borderLeft": { # A border around a table cell. # The left border of the cell.
36485 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
36488 "rgbColor": { # An RGB color. # The RGB color value.
36489 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
36490 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
36491 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
36495 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
36496 "magnitude": 3.14, # The magnitude.
36497 "unit": "A String", # The units for magnitude.
36499 "dashStyle": "A String", # The dash style of the border.
36501 … "columnSpan": 42, # The column span of the cell. This property is read-only.
36502 …# A color that can either be fully opaque or fully transparent. # The background color of the cell.
36505 "rgbColor": { # An RGB color. # The RGB color value.
36506 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
36507 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
36508 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
36512 … "borderRight": { # A border around a table cell. # The right border of the cell.
36513 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
36516 "rgbColor": { # An RGB color. # The RGB color value.
36517 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
36518 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
36519 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
36523 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
36524 "magnitude": 3.14, # The magnitude.
36525 "unit": "A String", # The units for magnitude.
36527 "dashStyle": "A String", # The dash style of the border.
36529 "rowSpan": 42, # The row span of the cell. This property is read-only.
36530 …"contentAlignment": "A String", # The alignment of the content in the table cell. The default alig…
36531 … # matches the alignment for newly created table cells in the Docs editor.
36532 …dingRight": { # A magnitude in a single direction in the specified units. # The right padding of t…
36533 "magnitude": 3.14, # The magnitude.
36534 "unit": "A String", # The units for magnitude.
36536 … "borderTop": { # A border around a table cell. # The top border of the cell.
36537 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
36540 "rgbColor": { # An RGB color. # The RGB color value.
36541 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
36542 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
36543 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
36547 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
36548 "magnitude": 3.14, # The magnitude.
36549 "unit": "A String", # The units for magnitude.
36551 "dashStyle": "A String", # The dash style of the border.
36554 … "startIndex": 42, # The zero-based start index of this cell, in UTF-16 code units.
36555 …"suggestedTableCellStyleChanges": { # The suggested changes to the table cell style, keyed by sugg…
36557 … "tableCellStyle": { # The style of a TableCell. # A TableCellStyle that only includes
36558 … # the changes made in this suggestion. This can be used along with the
36563 # A table cell style can inherit from the table's style.
36564 …ngBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of t…
36565 "magnitude": 3.14, # The magnitude.
36566 "unit": "A String", # The units for magnitude.
36568 … "borderBottom": { # A border around a table cell. # The bottom border of the cell.
36569 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
36572 "rgbColor": { # An RGB color. # The RGB color value.
36573 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
36574 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
36575 … "red": 3.14, # The red component of the color, from 0.0 to 1.0.
36579 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
36580 "magnitude": 3.14, # The magnitude.
36581 "unit": "A String", # The units for magnitude.
36583 "dashStyle": "A String", # The dash style of the border.
36585 …ddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of th…
36586 "magnitude": 3.14, # The magnitude.
36587 "unit": "A String", # The units for magnitude.
36589 …paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of th…
36590 "magnitude": 3.14, # The magnitude.
36591 "unit": "A String", # The units for magnitude.
36593 … "borderLeft": { # A border around a table cell. # The left border of the cell.
36594 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
36597 "rgbColor": { # An RGB color. # The RGB color value.
36598 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
36599 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
36600 … "red": 3.14, # The red component of the color, from 0.0 to 1.0.
36604 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
36605 "magnitude": 3.14, # The magnitude.
36606 "unit": "A String", # The units for magnitude.
36608 "dashStyle": "A String", # The dash style of the border.
36610 … "columnSpan": 42, # The column span of the cell. This property is read-only.
36611 …# A color that can either be fully opaque or fully transparent. # The background color of the cell.
36614 "rgbColor": { # An RGB color. # The RGB color value.
36615 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
36616 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
36617 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
36621 … "borderRight": { # A border around a table cell. # The right border of the cell.
36622 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
36625 "rgbColor": { # An RGB color. # The RGB color value.
36626 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
36627 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
36628 … "red": 3.14, # The red component of the color, from 0.0 to 1.0.
36632 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
36633 "magnitude": 3.14, # The magnitude.
36634 "unit": "A String", # The units for magnitude.
36636 "dashStyle": "A String", # The dash style of the border.
36638 "rowSpan": 42, # The row span of the cell. This property is read-only.
36639 …"contentAlignment": "A String", # The alignment of the content in the table cell. The default alig…
36640 … # matches the alignment for newly created table cells in the Docs editor.
36641 …dingRight": { # A magnitude in a single direction in the specified units. # The right padding of t…
36642 "magnitude": 3.14, # The magnitude.
36643 "unit": "A String", # The units for magnitude.
36645 … "borderTop": { # A border around a table cell. # The top border of the cell.
36646 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
36649 "rgbColor": { # An RGB color. # The RGB color value.
36650 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
36651 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
36652 … "red": 3.14, # The red component of the color, from 0.0 to 1.0.
36656 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
36657 "magnitude": 3.14, # The magnitude.
36658 "unit": "A String", # The units for magnitude.
36660 "dashStyle": "A String", # The dash style of the border.
36663 …tes which of the fields on the base TableCellStyle have been changed in this suggestion. # A mask …
36682 … "tableRowStyle": { # Styles that apply to a table row. # The style of the table row.
36683 …agnitude in a single direction in the specified units. # The minimum height of the row. The row wi…
36684 # at a height equal to or greater than this value in order to show all the
36685 # content in the row's cells.
36686 "magnitude": 3.14, # The magnitude.
36687 "unit": "A String", # The units for magnitude.
36690 "suggestedInsertionIds": [ # The suggested insertion IDs. A TableRow
36695 … "startIndex": 42, # The zero-based start index of this row, in UTF-16 code units.
36696 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
36700 …"suggestedTableRowStyleChanges": { # The suggested style changes to this row, keyed by suggestion …
36704 # the changes made in this suggestion. This can be used along with the
36707 …agnitude in a single direction in the specified units. # The minimum height of the row. The row wi…
36708 … # at a height equal to or greater than this value in order to show all the
36709 # content in the row's cells.
36710 "magnitude": 3.14, # The magnitude.
36711 "unit": "A String", # The units for magnitude.
36714 …ates which of the fields on the base TableRowStyle have been changed in this suggestion. # A mask …
36722 "columns": 42, # Number of columns in the table.
36731 …"namedStyles": { # The named styles. Paragraphs in the document can inherit their # The named styl…
36734 "styles": [ # The named styles.
36736 # There is an entry for each of the possible named style types.
36737 { # A named style. Paragraphs in the document can inherit their
36740 # when they have the same named style type.
36741 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this name…
36744 # text style's parent depends on where the text style is defined:
36746 # * The TextStyle of text in a Paragraph
36747 # inherits from the paragraph's corresponding named style type.
36748 # * The TextStyle on a named style
36749 # inherits from the normal text named style.
36750 # * The TextStyle of the normal text named style inherits
36751 # from the default text style in the Docs editor.
36752 # * The TextStyle on a Paragraph element
36753 # that is contained in a table may inherit its text style from the table
36756 # If the text style does not inherit from a parent, unsetting fields will
36757 # revert the style to a value matching the defaults in the Docs editor.
36758 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
36759 # or transparent, depending on the `color` field.
36762 "rgbColor": { # An RGB color. # The RGB color value.
36763 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
36764 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
36765 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
36769 "italic": True or False, # Whether or not the text is italicized.
36770 "baselineOffset": "A String", # The text's vertical offset from its normal position.
36773 # rendered in a smaller font size, computed based on the `font_size` field.
36774 # The `font_size` itself is not affected by changes in this field.
36775 "strikethrough": True or False, # Whether or not the text is struck through.
36776 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
36779 # `bold`, the `weighted_font_family` is applied first, then `bold`.
36786 "fontFamily": "A String", # The font family of the text.
36788 # The font family can be any font from the Font menu in Docs or from
36789 # [Google Fonts] (https://fonts.google.com/). If the font name is
36790 # unrecognized, the text is rendered in `Arial`.
36791 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
36792 # `100` between `100` and `900`, inclusive. This range corresponds to the
36793 # numerical values described in the CSS 2.1 Specification,
36797 # The default value is `400` ("normal").
36799 # The font weight makes up just one component of the rendered font weight.
36800 # The rendered weight is determined by a combination of the `weight` and the
36803 # * If the text is bold and the weight is less than `400`, the rendered
36805 # * If the text is bold and the weight is greater than or equal to `400` but
36806 # is less than `700`, the rendered weight is `700`.
36807 # * If the weight is greater than or equal to `700`, the rendered weight is
36808 # equal to the weight.
36809 # * If the text is not bold, the rendered weight is equal to the weight.
36811 "smallCaps": True or False, # Whether or not the text is in small capital letters.
36812 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
36813 "magnitude": 3.14, # The magnitude.
36814 "unit": "A String", # The units for magnitude.
36816 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
36817 # or transparent, depending on the `color` field.
36820 "rgbColor": { # An RGB color. # The RGB color value.
36821 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
36822 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
36823 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
36827 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
36830 # Changing the link in an update request causes some other changes to the
36831 # text style of the range:
36833 # * When setting a link, the text foreground color will be updated to the
36834 # default link color and the text will be underlined. If these fields are
36835 # modified in the same request, those values will be used instead of the
36838 # also update the existing link to point to the new URL.
36841 # will separate the newline character(s) into their own text runs. The
36842 # link will be applied separately to the runs before and after the newline.
36843 # * Removing a link will update the text style of the range to match the
36844 # style of the preceding text (or the default text styles if the preceding
36845 # text is another link) unless different styles are being set in the same
36847 "headingId": "A String", # The ID of a heading in this document.
36849 "bookmarkId": "A String", # The ID of a bookmark in this document.
36851 "underline": True or False, # Whether or not the text is underlined.
36852 "bold": True or False, # Whether or not the text is rendered as bold.
36854 "namedStyleType": "A String", # The type of this named style.
36855 …"paragraphStyle": { # Styles that apply to a whole paragraph. # The paragraph style of this named …
36858 # A paragraph style's parent depends on where the paragraph style is defined:
36860 # * The ParagraphStyle on a Paragraph
36861 # inherits from the paragraph's corresponding named style type.
36862 # * The ParagraphStyle on a named style
36863 # inherits from the normal text named style.
36864 # * The ParagraphStyle of the normal text named style inherits
36865 # from the default paragraph style in the Docs editor.
36866 # * The ParagraphStyle on a Paragraph
36868 # the table style.
36870 # If the paragraph style does not inherit from a parent, unsetting fields will
36871 # revert the style to a value matching the defaults in the Docs editor.
36872 "spacingMode": "A String", # The spacing mode for the paragraph.
36873 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
36876 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
36877 # inherited from the parent.
36878 "magnitude": 3.14, # The magnitude.
36879 "unit": "A String", # The units for magnitude.
36881 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
36882 # page or column as the next paragraph if possible. If unset, the value is
36883 # inherited from the parent.
36884 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
36885 # is represented as 100.0. If unset, the value is inherited from the parent.
36886 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
36887 # is inherited from the parent.
36888 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
36889 # inherited from the parent.
36891 # The bottom border is rendered when the paragraph below has different border
36895 # changes to a paragraph border the new border must be specified in
36897 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
36900 "rgbColor": { # An RGB color. # The RGB color value.
36901 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
36902 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
36903 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
36907 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
36908 "magnitude": 3.14, # The magnitude.
36909 "unit": "A String", # The units for magnitude.
36911 "dashStyle": "A String", # The dash style of the border.
36912 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
36913 "magnitude": 3.14, # The magnitude.
36914 "unit": "A String", # The units for magnitude.
36917 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
36918 # the start of the text, based on the current paragraph direction. If unset,
36919 # the value is inherited from the parent.
36920 "magnitude": 3.14, # The magnitude.
36921 "unit": "A String", # The units for magnitude.
36923 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
36924 # If unset, the value is inherited from the parent.
36926 # The between border is rendered when the adjacent paragraph has the same
36930 # changes to a paragraph border the new border must be specified in
36932 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
36935 "rgbColor": { # An RGB color. # The RGB color value.
36936 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
36937 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
36938 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
36942 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
36943 "magnitude": 3.14, # The magnitude.
36944 "unit": "A String", # The units for magnitude.
36946 "dashStyle": "A String", # The dash style of the border.
36947 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
36948 "magnitude": 3.14, # The magnitude.
36949 "unit": "A String", # The units for magnitude.
36952 "namedStyleType": "A String", # The named style type of the paragraph.
36954 # Since updating the named style type affects other properties within
36955 # ParagraphStyle, the named style type is applied before the other properties
36957 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
36958 # from the parent.
36961 # changes to a paragraph border the new border must be specified in
36963 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
36966 "rgbColor": { # An RGB color. # The RGB color value.
36967 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
36968 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
36969 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
36973 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
36974 "magnitude": 3.14, # The magnitude.
36975 "unit": "A String", # The units for magnitude.
36977 "dashStyle": "A String", # The dash style of the border.
36978 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
36979 "magnitude": 3.14, # The magnitude.
36980 "unit": "A String", # The units for magnitude.
36983 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
36984 # the end of the text, based on the current paragraph direction. If unset,
36985 # the value is inherited from the parent.
36986 "magnitude": 3.14, # The magnitude.
36987 "unit": "A String", # The units for magnitude.
36989 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
36990 # from the parent.
36993 # changes to a paragraph border the new border must be specified in
36995 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
36998 "rgbColor": { # An RGB color. # The RGB color value.
36999 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
37000 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
37001 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
37005 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
37006 "magnitude": 3.14, # The magnitude.
37007 "unit": "A String", # The units for magnitude.
37009 "dashStyle": "A String", # The dash style of the border.
37010 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
37011 "magnitude": 3.14, # The magnitude.
37012 "unit": "A String", # The units for magnitude.
37015 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
37016 # inherited from the parent.
37017 "magnitude": 3.14, # The magnitude.
37018 "unit": "A String", # The units for magnitude.
37020 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
37022 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
37024 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
37027 "rgbColor": { # An RGB color. # The RGB color value.
37028 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
37029 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
37030 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
37035 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
37036 # from the parent.
37038 # The top border is rendered when the paragraph above has different border
37042 # changes to a paragraph border the new border must be specified in
37044 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
37047 "rgbColor": { # An RGB color. # The RGB color value.
37048 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
37049 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
37050 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
37054 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
37055 "magnitude": 3.14, # The magnitude.
37056 "unit": "A String", # The units for magnitude.
37058 "dashStyle": "A String", # The dash style of the border.
37059 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
37060 "magnitude": 3.14, # The magnitude.
37061 "unit": "A String", # The units for magnitude.
37064 … "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
37067 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
37068 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
37069 "magnitude": 3.14, # The magnitude.
37070 "unit": "A String", # The units for magnitude.
37074 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
37075 # the value is inherited from the parent.
37076 "magnitude": 3.14, # The magnitude.
37077 "unit": "A String", # The units for magnitude.
37079 "alignment": "A String", # The text alignment for this paragraph.
37080 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
37081 # column if possible. If unset, the value is inherited from the parent.
37086 "footers": { # The footers in the document, keyed by footer ID.
37088 "content": [ # The contents of the footer.
37090 # The indexes for a footer's content begin at zero.
37091 { # A StructuralElement describes content that provides structure to the
37093 … "endIndex": 42, # The zero-based end index of this structural element, exclusive, in UTF-16
37096 # section break. A section is a range of content which has the same
37098 # the start of a new section, and the section style applies to the section
37099 # after the section break.
37101 # The document body always begins with a section break.
37102 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
37106 …"sectionStyle": { # The styling that applies to a section. # The style of the section after this s…
37107 …"contentDirection": "A String", # The content direction of this section. If unset, the value defau…
37109 "columnProperties": [ # The section's columns properties.
37111 # If empty, the section contains one column with the default properties in
37112 # the Docs editor.
37114 … "width": { # A magnitude in a single direction in the specified units. # The width of the column.
37115 "magnitude": 3.14, # The magnitude.
37116 "unit": "A String", # The units for magnitude.
37118 …ingEnd": { # A magnitude in a single direction in the specified units. # The padding at the end of…
37119 "magnitude": 3.14, # The magnitude.
37120 "unit": "A String", # The units for magnitude.
37124 "columnSeparatorStyle": "A String", # The style of column separators.
37126 # This style can be set even when there is one column in the section.
37128 …"suggestedInsertionIds": [ # The suggested insertion IDs. A SectionBreak may have multiple inserti…
37136 "content": [ # The content of the table of contents.
37139 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
37143 …"suggestedInsertionIds": [ # The suggested insertion IDs. A TableOfContents may have multiple inse…
37149 … "startIndex": 42, # The zero-based start index of this structural element, in UTF-16 code
37154 "elements": [ # The content of the paragraph broken down into its component parts.
37157 … "endIndex": 42, # The zero-base end index of this paragraph element, exclusive, in UTF-16
37161 "suggestedInsertionIds": [ # The suggested insertion IDs. A Equation
37166 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
37172 # column break. A column break makes the subsequent text start at the top of
37173 # the next column.
37174 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Colu…
37176 … # Similar to text content, like text runs and footnote references, the text
37177 … # style of a column break can affect content layout as well as the styling of
37181 # text style's parent depends on where the text style is defined:
37183 # * The TextStyle of text in a Paragraph
37184 # inherits from the paragraph's corresponding named style type.
37185 # * The TextStyle on a named style
37186 # inherits from the normal text named style.
37187 # * The TextStyle of the normal text named style inherits
37188 # from the default text style in the Docs editor.
37189 # * The TextStyle on a Paragraph element
37190 … # that is contained in a table may inherit its text style from the table
37193 # If the text style does not inherit from a parent, unsetting fields will
37194 # revert the style to a value matching the defaults in the Docs editor.
37195 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
37196 # or transparent, depending on the `color` field.
37199 "rgbColor": { # An RGB color. # The RGB color value.
37200 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
37201 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
37202 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
37206 "italic": True or False, # Whether or not the text is italicized.
37207 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
37210 … # rendered in a smaller font size, computed based on the `font_size` field.
37211 # The `font_size` itself is not affected by changes in this field.
37212 "strikethrough": True or False, # Whether or not the text is struck through.
37213 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
37216 # `bold`, the `weighted_font_family` is applied first, then `bold`.
37223 "fontFamily": "A String", # The font family of the text.
37225 # The font family can be any font from the Font menu in Docs or from
37226 # [Google Fonts] (https://fonts.google.com/). If the font name is
37227 # unrecognized, the text is rendered in `Arial`.
37228 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
37229 … # `100` between `100` and `900`, inclusive. This range corresponds to the
37230 # numerical values described in the CSS 2.1 Specification,
37234 # The default value is `400` ("normal").
37236 … # The font weight makes up just one component of the rendered font weight.
37237 … # The rendered weight is determined by a combination of the `weight` and the
37240 … # * If the text is bold and the weight is less than `400`, the rendered
37242 … # * If the text is bold and the weight is greater than or equal to `400` but
37243 # is less than `700`, the rendered weight is `700`.
37244 … # * If the weight is greater than or equal to `700`, the rendered weight is
37245 # equal to the weight.
37246 … # * If the text is not bold, the rendered weight is equal to the weight.
37248 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
37249 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
37250 "magnitude": 3.14, # The magnitude.
37251 "unit": "A String", # The units for magnitude.
37253 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
37254 # or transparent, depending on the `color` field.
37257 "rgbColor": { # An RGB color. # The RGB color value.
37258 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
37259 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
37260 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
37264 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
37267 … # Changing the link in an update request causes some other changes to the
37268 # text style of the range:
37270 … # * When setting a link, the text foreground color will be updated to the
37271 … # default link color and the text will be underlined. If these fields are
37272 … # modified in the same request, those values will be used instead of the
37275 # also update the existing link to point to the new URL.
37278 # will separate the newline character(s) into their own text runs. The
37279 … # link will be applied separately to the runs before and after the newline.
37280 # * Removing a link will update the text style of the range to match the
37281 … # style of the preceding text (or the default text styles if the preceding
37282 … # text is another link) unless different styles are being set in the same
37284 "headingId": "A String", # The ID of a heading in this document.
37286 "bookmarkId": "A String", # The ID of a bookmark in this document.
37288 "underline": True or False, # Whether or not the text is underlined.
37289 "bold": True or False, # Whether or not the text is rendered as bold.
37291 …"suggestedInsertionIds": [ # The suggested insertion IDs. A ColumnBreak may have multiple insertio…
37296 …"suggestedTextStyleChanges": { # The suggested text style changes to this ColumnBreak, keyed by su…
37299 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
37300 # the changes made in this suggestion. This can be used along with the
37305 # text style's parent depends on where the text style is defined:
37307 # * The TextStyle of text in a Paragraph
37308 # inherits from the paragraph's corresponding named style type.
37309 # * The TextStyle on a named style
37310 # inherits from the normal text named style.
37311 # * The TextStyle of the normal text named style inherits
37312 # from the default text style in the Docs editor.
37313 # * The TextStyle on a Paragraph element
37314 … # that is contained in a table may inherit its text style from the table
37317 … # If the text style does not inherit from a parent, unsetting fields will
37318 … # revert the style to a value matching the defaults in the Docs editor.
37319 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
37320 # or transparent, depending on the `color` field.
37323 "rgbColor": { # An RGB color. # The RGB color value.
37324 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
37325 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
37326 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
37330 "italic": True or False, # Whether or not the text is italicized.
37331 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
37334 … # rendered in a smaller font size, computed based on the `font_size` field.
37335 # The `font_size` itself is not affected by changes in this field.
37336 … "strikethrough": True or False, # Whether or not the text is struck through.
37337 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
37340 # `bold`, the `weighted_font_family` is applied first, then `bold`.
37347 "fontFamily": "A String", # The font family of the text.
37349 … # The font family can be any font from the Font menu in Docs or from
37350 # [Google Fonts] (https://fonts.google.com/). If the font name is
37351 # unrecognized, the text is rendered in `Arial`.
37352 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
37353 … # `100` between `100` and `900`, inclusive. This range corresponds to the
37354 # numerical values described in the CSS 2.1 Specification,
37358 # The default value is `400` ("normal").
37360 … # The font weight makes up just one component of the rendered font weight.
37361 … # The rendered weight is determined by a combination of the `weight` and the
37364 … # * If the text is bold and the weight is less than `400`, the rendered
37366 … # * If the text is bold and the weight is greater than or equal to `400` but
37367 # is less than `700`, the rendered weight is `700`.
37368 … # * If the weight is greater than or equal to `700`, the rendered weight is
37369 # equal to the weight.
37370 … # * If the text is not bold, the rendered weight is equal to the weight.
37372 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
37373 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
37374 "magnitude": 3.14, # The magnitude.
37375 "unit": "A String", # The units for magnitude.
37377 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
37378 # or transparent, depending on the `color` field.
37381 "rgbColor": { # An RGB color. # The RGB color value.
37382 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
37383 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
37384 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
37388 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
37391 … # Changing the link in an update request causes some other changes to the
37392 # text style of the range:
37394 … # * When setting a link, the text foreground color will be updated to the
37395 … # default link color and the text will be underlined. If these fields are
37396 … # modified in the same request, those values will be used instead of the
37399 # also update the existing link to point to the new URL.
37402 … # will separate the newline character(s) into their own text runs. The
37403 … # link will be applied separately to the runs before and after the newline.
37404 … # * Removing a link will update the text style of the range to match the
37405 … # style of the preceding text (or the default text styles if the preceding
37406 … # text is another link) unless different styles are being set in the same
37408 "headingId": "A String", # The ID of a heading in this document.
37410 "bookmarkId": "A String", # The ID of a bookmark in this document.
37412 "underline": True or False, # Whether or not the text is underlined.
37413 "bold": True or False, # Whether or not the text is rendered as bold.
37415 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
37431 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
37436 … "startIndex": 42, # The zero-based start index of this paragraph element, in UTF-16 code units.
37438 # page break. A page break makes the subsequent text start at the top of the
37440 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Page…
37442 … # Similar to text content, like text runs and footnote references, the text
37443 … # style of a page break can affect content layout as well as the styling of
37447 # text style's parent depends on where the text style is defined:
37449 # * The TextStyle of text in a Paragraph
37450 # inherits from the paragraph's corresponding named style type.
37451 # * The TextStyle on a named style
37452 # inherits from the normal text named style.
37453 # * The TextStyle of the normal text named style inherits
37454 # from the default text style in the Docs editor.
37455 # * The TextStyle on a Paragraph element
37456 … # that is contained in a table may inherit its text style from the table
37459 # If the text style does not inherit from a parent, unsetting fields will
37460 # revert the style to a value matching the defaults in the Docs editor.
37461 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
37462 # or transparent, depending on the `color` field.
37465 "rgbColor": { # An RGB color. # The RGB color value.
37466 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
37467 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
37468 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
37472 "italic": True or False, # Whether or not the text is italicized.
37473 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
37476 … # rendered in a smaller font size, computed based on the `font_size` field.
37477 # The `font_size` itself is not affected by changes in this field.
37478 "strikethrough": True or False, # Whether or not the text is struck through.
37479 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
37482 # `bold`, the `weighted_font_family` is applied first, then `bold`.
37489 "fontFamily": "A String", # The font family of the text.
37491 # The font family can be any font from the Font menu in Docs or from
37492 # [Google Fonts] (https://fonts.google.com/). If the font name is
37493 # unrecognized, the text is rendered in `Arial`.
37494 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
37495 … # `100` between `100` and `900`, inclusive. This range corresponds to the
37496 # numerical values described in the CSS 2.1 Specification,
37500 # The default value is `400` ("normal").
37502 … # The font weight makes up just one component of the rendered font weight.
37503 … # The rendered weight is determined by a combination of the `weight` and the
37506 … # * If the text is bold and the weight is less than `400`, the rendered
37508 … # * If the text is bold and the weight is greater than or equal to `400` but
37509 # is less than `700`, the rendered weight is `700`.
37510 … # * If the weight is greater than or equal to `700`, the rendered weight is
37511 # equal to the weight.
37512 … # * If the text is not bold, the rendered weight is equal to the weight.
37514 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
37515 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
37516 "magnitude": 3.14, # The magnitude.
37517 "unit": "A String", # The units for magnitude.
37519 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
37520 # or transparent, depending on the `color` field.
37523 "rgbColor": { # An RGB color. # The RGB color value.
37524 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
37525 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
37526 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
37530 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
37533 … # Changing the link in an update request causes some other changes to the
37534 # text style of the range:
37536 … # * When setting a link, the text foreground color will be updated to the
37537 … # default link color and the text will be underlined. If these fields are
37538 … # modified in the same request, those values will be used instead of the
37541 # also update the existing link to point to the new URL.
37544 # will separate the newline character(s) into their own text runs. The
37545 … # link will be applied separately to the runs before and after the newline.
37546 # * Removing a link will update the text style of the range to match the
37547 … # style of the preceding text (or the default text styles if the preceding
37548 … # text is another link) unless different styles are being set in the same
37550 "headingId": "A String", # The ID of a heading in this document.
37552 "bookmarkId": "A String", # The ID of a bookmark in this document.
37554 "underline": True or False, # Whether or not the text is underlined.
37555 "bold": True or False, # Whether or not the text is rendered as bold.
37557 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
37561 …"suggestedTextStyleChanges": { # The suggested text style changes to this PageBreak, keyed by sugg…
37563 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
37564 # the changes made in this suggestion. This can be used along with the
37569 # text style's parent depends on where the text style is defined:
37571 # * The TextStyle of text in a Paragraph
37572 # inherits from the paragraph's corresponding named style type.
37573 # * The TextStyle on a named style
37574 # inherits from the normal text named style.
37575 # * The TextStyle of the normal text named style inherits
37576 # from the default text style in the Docs editor.
37577 # * The TextStyle on a Paragraph element
37578 … # that is contained in a table may inherit its text style from the table
37581 … # If the text style does not inherit from a parent, unsetting fields will
37582 … # revert the style to a value matching the defaults in the Docs editor.
37583 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
37584 # or transparent, depending on the `color` field.
37587 "rgbColor": { # An RGB color. # The RGB color value.
37588 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
37589 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
37590 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
37594 "italic": True or False, # Whether or not the text is italicized.
37595 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
37598 … # rendered in a smaller font size, computed based on the `font_size` field.
37599 # The `font_size` itself is not affected by changes in this field.
37600 … "strikethrough": True or False, # Whether or not the text is struck through.
37601 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
37604 # `bold`, the `weighted_font_family` is applied first, then `bold`.
37611 "fontFamily": "A String", # The font family of the text.
37613 … # The font family can be any font from the Font menu in Docs or from
37614 # [Google Fonts] (https://fonts.google.com/). If the font name is
37615 # unrecognized, the text is rendered in `Arial`.
37616 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
37617 … # `100` between `100` and `900`, inclusive. This range corresponds to the
37618 # numerical values described in the CSS 2.1 Specification,
37622 # The default value is `400` ("normal").
37624 … # The font weight makes up just one component of the rendered font weight.
37625 … # The rendered weight is determined by a combination of the `weight` and the
37628 … # * If the text is bold and the weight is less than `400`, the rendered
37630 … # * If the text is bold and the weight is greater than or equal to `400` but
37631 # is less than `700`, the rendered weight is `700`.
37632 … # * If the weight is greater than or equal to `700`, the rendered weight is
37633 # equal to the weight.
37634 … # * If the text is not bold, the rendered weight is equal to the weight.
37636 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
37637 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
37638 "magnitude": 3.14, # The magnitude.
37639 "unit": "A String", # The units for magnitude.
37641 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
37642 # or transparent, depending on the `color` field.
37645 "rgbColor": { # An RGB color. # The RGB color value.
37646 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
37647 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
37648 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
37652 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
37655 … # Changing the link in an update request causes some other changes to the
37656 # text style of the range:
37658 … # * When setting a link, the text foreground color will be updated to the
37659 … # default link color and the text will be underlined. If these fields are
37660 … # modified in the same request, those values will be used instead of the
37663 # also update the existing link to point to the new URL.
37666 … # will separate the newline character(s) into their own text runs. The
37667 … # link will be applied separately to the runs before and after the newline.
37668 … # * Removing a link will update the text style of the range to match the
37669 … # style of the preceding text (or the default text styles if the preceding
37670 … # text is another link) unless different styles are being set in the same
37672 "headingId": "A String", # The ID of a heading in this document.
37674 "bookmarkId": "A String", # The ID of a bookmark in this document.
37676 "underline": True or False, # Whether or not the text is underlined.
37677 "bold": True or False, # Whether or not the text is rendered as bold.
37679 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
37695 "suggestedInsertionIds": [ # The suggested insertion IDs. A PageBreak
37703 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Hori…
37705 … # Similar to text content, like text runs and footnote references, the text
37706 … # style of a horizontal rule can affect content layout as well as the styling
37710 # text style's parent depends on where the text style is defined:
37712 # * The TextStyle of text in a Paragraph
37713 # inherits from the paragraph's corresponding named style type.
37714 # * The TextStyle on a named style
37715 # inherits from the normal text named style.
37716 # * The TextStyle of the normal text named style inherits
37717 # from the default text style in the Docs editor.
37718 # * The TextStyle on a Paragraph element
37719 … # that is contained in a table may inherit its text style from the table
37722 # If the text style does not inherit from a parent, unsetting fields will
37723 # revert the style to a value matching the defaults in the Docs editor.
37724 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
37725 # or transparent, depending on the `color` field.
37728 "rgbColor": { # An RGB color. # The RGB color value.
37729 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
37730 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
37731 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
37735 "italic": True or False, # Whether or not the text is italicized.
37736 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
37739 … # rendered in a smaller font size, computed based on the `font_size` field.
37740 # The `font_size` itself is not affected by changes in this field.
37741 "strikethrough": True or False, # Whether or not the text is struck through.
37742 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
37745 # `bold`, the `weighted_font_family` is applied first, then `bold`.
37752 "fontFamily": "A String", # The font family of the text.
37754 # The font family can be any font from the Font menu in Docs or from
37755 # [Google Fonts] (https://fonts.google.com/). If the font name is
37756 # unrecognized, the text is rendered in `Arial`.
37757 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
37758 … # `100` between `100` and `900`, inclusive. This range corresponds to the
37759 # numerical values described in the CSS 2.1 Specification,
37763 # The default value is `400` ("normal").
37765 … # The font weight makes up just one component of the rendered font weight.
37766 … # The rendered weight is determined by a combination of the `weight` and the
37769 … # * If the text is bold and the weight is less than `400`, the rendered
37771 … # * If the text is bold and the weight is greater than or equal to `400` but
37772 # is less than `700`, the rendered weight is `700`.
37773 … # * If the weight is greater than or equal to `700`, the rendered weight is
37774 # equal to the weight.
37775 … # * If the text is not bold, the rendered weight is equal to the weight.
37777 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
37778 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
37779 "magnitude": 3.14, # The magnitude.
37780 "unit": "A String", # The units for magnitude.
37782 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
37783 # or transparent, depending on the `color` field.
37786 "rgbColor": { # An RGB color. # The RGB color value.
37787 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
37788 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
37789 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
37793 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
37796 … # Changing the link in an update request causes some other changes to the
37797 # text style of the range:
37799 … # * When setting a link, the text foreground color will be updated to the
37800 … # default link color and the text will be underlined. If these fields are
37801 … # modified in the same request, those values will be used instead of the
37804 # also update the existing link to point to the new URL.
37807 # will separate the newline character(s) into their own text runs. The
37808 … # link will be applied separately to the runs before and after the newline.
37809 # * Removing a link will update the text style of the range to match the
37810 … # style of the preceding text (or the default text styles if the preceding
37811 … # text is another link) unless different styles are being set in the same
37813 "headingId": "A String", # The ID of a heading in this document.
37815 "bookmarkId": "A String", # The ID of a bookmark in this document.
37817 "underline": True or False, # Whether or not the text is underlined.
37818 "bold": True or False, # Whether or not the text is rendered as bold.
37820 …"suggestedInsertionIds": [ # The suggested insertion IDs. A HorizontalRule may have multiple inser…
37825 … "suggestedTextStyleChanges": { # The suggested text style changes to this HorizontalRule, keyed by
37828 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
37829 # the changes made in this suggestion. This can be used along with the
37834 # text style's parent depends on where the text style is defined:
37836 # * The TextStyle of text in a Paragraph
37837 # inherits from the paragraph's corresponding named style type.
37838 # * The TextStyle on a named style
37839 # inherits from the normal text named style.
37840 # * The TextStyle of the normal text named style inherits
37841 # from the default text style in the Docs editor.
37842 # * The TextStyle on a Paragraph element
37843 … # that is contained in a table may inherit its text style from the table
37846 … # If the text style does not inherit from a parent, unsetting fields will
37847 … # revert the style to a value matching the defaults in the Docs editor.
37848 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
37849 # or transparent, depending on the `color` field.
37852 "rgbColor": { # An RGB color. # The RGB color value.
37853 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
37854 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
37855 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
37859 "italic": True or False, # Whether or not the text is italicized.
37860 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
37863 … # rendered in a smaller font size, computed based on the `font_size` field.
37864 # The `font_size` itself is not affected by changes in this field.
37865 … "strikethrough": True or False, # Whether or not the text is struck through.
37866 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
37869 # `bold`, the `weighted_font_family` is applied first, then `bold`.
37876 "fontFamily": "A String", # The font family of the text.
37878 … # The font family can be any font from the Font menu in Docs or from
37879 # [Google Fonts] (https://fonts.google.com/). If the font name is
37880 # unrecognized, the text is rendered in `Arial`.
37881 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
37882 … # `100` between `100` and `900`, inclusive. This range corresponds to the
37883 # numerical values described in the CSS 2.1 Specification,
37887 # The default value is `400` ("normal").
37889 … # The font weight makes up just one component of the rendered font weight.
37890 … # The rendered weight is determined by a combination of the `weight` and the
37893 … # * If the text is bold and the weight is less than `400`, the rendered
37895 … # * If the text is bold and the weight is greater than or equal to `400` but
37896 # is less than `700`, the rendered weight is `700`.
37897 … # * If the weight is greater than or equal to `700`, the rendered weight is
37898 # equal to the weight.
37899 … # * If the text is not bold, the rendered weight is equal to the weight.
37901 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
37902 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
37903 "magnitude": 3.14, # The magnitude.
37904 "unit": "A String", # The units for magnitude.
37906 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
37907 # or transparent, depending on the `color` field.
37910 "rgbColor": { # An RGB color. # The RGB color value.
37911 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
37912 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
37913 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
37917 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
37920 … # Changing the link in an update request causes some other changes to the
37921 # text style of the range:
37923 … # * When setting a link, the text foreground color will be updated to the
37924 … # default link color and the text will be underlined. If these fields are
37925 … # modified in the same request, those values will be used instead of the
37928 # also update the existing link to point to the new URL.
37931 … # will separate the newline character(s) into their own text runs. The
37932 … # link will be applied separately to the runs before and after the newline.
37933 … # * Removing a link will update the text style of the range to match the
37934 … # style of the preceding text (or the default text styles if the preceding
37935 … # text is another link) unless different styles are being set in the same
37937 "headingId": "A String", # The ID of a heading in this document.
37939 "bookmarkId": "A String", # The ID of a bookmark in this document.
37941 "underline": True or False, # Whether or not the text is underlined.
37942 "bold": True or False, # Whether or not the text is rendered as bold.
37944 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
37960 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
37966 # run of text that all has the same styling.
37967 "content": "A String", # The text of this run.
37969 # Any non-text elements in the run are replaced with the Unicode character
37971 … "textStyle": { # Represents the styling that can be applied to text. # The text style of this run.
37974 # text style's parent depends on where the text style is defined:
37976 # * The TextStyle of text in a Paragraph
37977 # inherits from the paragraph's corresponding named style type.
37978 # * The TextStyle on a named style
37979 # inherits from the normal text named style.
37980 # * The TextStyle of the normal text named style inherits
37981 # from the default text style in the Docs editor.
37982 # * The TextStyle on a Paragraph element
37983 … # that is contained in a table may inherit its text style from the table
37986 # If the text style does not inherit from a parent, unsetting fields will
37987 # revert the style to a value matching the defaults in the Docs editor.
37988 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
37989 # or transparent, depending on the `color` field.
37992 "rgbColor": { # An RGB color. # The RGB color value.
37993 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
37994 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
37995 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
37999 "italic": True or False, # Whether or not the text is italicized.
38000 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
38003 … # rendered in a smaller font size, computed based on the `font_size` field.
38004 # The `font_size` itself is not affected by changes in this field.
38005 "strikethrough": True or False, # Whether or not the text is struck through.
38006 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
38009 # `bold`, the `weighted_font_family` is applied first, then `bold`.
38016 "fontFamily": "A String", # The font family of the text.
38018 # The font family can be any font from the Font menu in Docs or from
38019 # [Google Fonts] (https://fonts.google.com/). If the font name is
38020 # unrecognized, the text is rendered in `Arial`.
38021 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
38022 … # `100` between `100` and `900`, inclusive. This range corresponds to the
38023 # numerical values described in the CSS 2.1 Specification,
38027 # The default value is `400` ("normal").
38029 … # The font weight makes up just one component of the rendered font weight.
38030 … # The rendered weight is determined by a combination of the `weight` and the
38033 … # * If the text is bold and the weight is less than `400`, the rendered
38035 … # * If the text is bold and the weight is greater than or equal to `400` but
38036 # is less than `700`, the rendered weight is `700`.
38037 … # * If the weight is greater than or equal to `700`, the rendered weight is
38038 # equal to the weight.
38039 … # * If the text is not bold, the rendered weight is equal to the weight.
38041 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
38042 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
38043 "magnitude": 3.14, # The magnitude.
38044 "unit": "A String", # The units for magnitude.
38046 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
38047 # or transparent, depending on the `color` field.
38050 "rgbColor": { # An RGB color. # The RGB color value.
38051 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
38052 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
38053 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
38057 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
38060 … # Changing the link in an update request causes some other changes to the
38061 # text style of the range:
38063 … # * When setting a link, the text foreground color will be updated to the
38064 … # default link color and the text will be underlined. If these fields are
38065 … # modified in the same request, those values will be used instead of the
38068 # also update the existing link to point to the new URL.
38071 # will separate the newline character(s) into their own text runs. The
38072 … # link will be applied separately to the runs before and after the newline.
38073 # * Removing a link will update the text style of the range to match the
38074 … # style of the preceding text (or the default text styles if the preceding
38075 … # text is another link) unless different styles are being set in the same
38077 "headingId": "A String", # The ID of a heading in this document.
38079 "bookmarkId": "A String", # The ID of a bookmark in this document.
38081 "underline": True or False, # Whether or not the text is underlined.
38082 "bold": True or False, # Whether or not the text is rendered as bold.
38084 "suggestedInsertionIds": [ # The suggested insertion IDs. A TextRun may
38089 …"suggestedTextStyleChanges": { # The suggested text style changes to this run, keyed by suggestion…
38091 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
38092 # the changes made in this suggestion. This can be used along with the
38097 # text style's parent depends on where the text style is defined:
38099 # * The TextStyle of text in a Paragraph
38100 # inherits from the paragraph's corresponding named style type.
38101 # * The TextStyle on a named style
38102 # inherits from the normal text named style.
38103 # * The TextStyle of the normal text named style inherits
38104 # from the default text style in the Docs editor.
38105 # * The TextStyle on a Paragraph element
38106 … # that is contained in a table may inherit its text style from the table
38109 … # If the text style does not inherit from a parent, unsetting fields will
38110 … # revert the style to a value matching the defaults in the Docs editor.
38111 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
38112 # or transparent, depending on the `color` field.
38115 "rgbColor": { # An RGB color. # The RGB color value.
38116 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
38117 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
38118 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
38122 "italic": True or False, # Whether or not the text is italicized.
38123 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
38126 … # rendered in a smaller font size, computed based on the `font_size` field.
38127 # The `font_size` itself is not affected by changes in this field.
38128 … "strikethrough": True or False, # Whether or not the text is struck through.
38129 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
38132 # `bold`, the `weighted_font_family` is applied first, then `bold`.
38139 "fontFamily": "A String", # The font family of the text.
38141 … # The font family can be any font from the Font menu in Docs or from
38142 # [Google Fonts] (https://fonts.google.com/). If the font name is
38143 # unrecognized, the text is rendered in `Arial`.
38144 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
38145 … # `100` between `100` and `900`, inclusive. This range corresponds to the
38146 # numerical values described in the CSS 2.1 Specification,
38150 # The default value is `400` ("normal").
38152 … # The font weight makes up just one component of the rendered font weight.
38153 … # The rendered weight is determined by a combination of the `weight` and the
38156 … # * If the text is bold and the weight is less than `400`, the rendered
38158 … # * If the text is bold and the weight is greater than or equal to `400` but
38159 # is less than `700`, the rendered weight is `700`.
38160 … # * If the weight is greater than or equal to `700`, the rendered weight is
38161 # equal to the weight.
38162 … # * If the text is not bold, the rendered weight is equal to the weight.
38164 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
38165 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
38166 "magnitude": 3.14, # The magnitude.
38167 "unit": "A String", # The units for magnitude.
38169 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
38170 # or transparent, depending on the `color` field.
38173 "rgbColor": { # An RGB color. # The RGB color value.
38174 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
38175 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
38176 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
38180 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
38183 … # Changing the link in an update request causes some other changes to the
38184 # text style of the range:
38186 … # * When setting a link, the text foreground color will be updated to the
38187 … # default link color and the text will be underlined. If these fields are
38188 … # modified in the same request, those values will be used instead of the
38191 # also update the existing link to point to the new URL.
38194 … # will separate the newline character(s) into their own text runs. The
38195 … # link will be applied separately to the runs before and after the newline.
38196 … # * Removing a link will update the text style of the range to match the
38197 … # style of the preceding text (or the default text styles if the preceding
38198 … # text is another link) unless different styles are being set in the same
38200 "headingId": "A String", # The ID of a heading in this document.
38202 "bookmarkId": "A String", # The ID of a bookmark in this document.
38204 "underline": True or False, # Whether or not the text is underlined.
38205 "bold": True or False, # Whether or not the text is rendered as bold.
38207 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
38223 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
38229 # spot in the text that is dynamically replaced with content that can change
38231 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Auto…
38234 # text style's parent depends on where the text style is defined:
38236 # * The TextStyle of text in a Paragraph
38237 # inherits from the paragraph's corresponding named style type.
38238 # * The TextStyle on a named style
38239 # inherits from the normal text named style.
38240 # * The TextStyle of the normal text named style inherits
38241 # from the default text style in the Docs editor.
38242 # * The TextStyle on a Paragraph element
38243 … # that is contained in a table may inherit its text style from the table
38246 # If the text style does not inherit from a parent, unsetting fields will
38247 # revert the style to a value matching the defaults in the Docs editor.
38248 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
38249 # or transparent, depending on the `color` field.
38252 "rgbColor": { # An RGB color. # The RGB color value.
38253 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
38254 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
38255 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
38259 "italic": True or False, # Whether or not the text is italicized.
38260 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
38263 … # rendered in a smaller font size, computed based on the `font_size` field.
38264 # The `font_size` itself is not affected by changes in this field.
38265 "strikethrough": True or False, # Whether or not the text is struck through.
38266 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
38269 # `bold`, the `weighted_font_family` is applied first, then `bold`.
38276 "fontFamily": "A String", # The font family of the text.
38278 # The font family can be any font from the Font menu in Docs or from
38279 # [Google Fonts] (https://fonts.google.com/). If the font name is
38280 # unrecognized, the text is rendered in `Arial`.
38281 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
38282 … # `100` between `100` and `900`, inclusive. This range corresponds to the
38283 # numerical values described in the CSS 2.1 Specification,
38287 # The default value is `400` ("normal").
38289 … # The font weight makes up just one component of the rendered font weight.
38290 … # The rendered weight is determined by a combination of the `weight` and the
38293 … # * If the text is bold and the weight is less than `400`, the rendered
38295 … # * If the text is bold and the weight is greater than or equal to `400` but
38296 # is less than `700`, the rendered weight is `700`.
38297 … # * If the weight is greater than or equal to `700`, the rendered weight is
38298 # equal to the weight.
38299 … # * If the text is not bold, the rendered weight is equal to the weight.
38301 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
38302 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
38303 "magnitude": 3.14, # The magnitude.
38304 "unit": "A String", # The units for magnitude.
38306 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
38307 # or transparent, depending on the `color` field.
38310 "rgbColor": { # An RGB color. # The RGB color value.
38311 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
38312 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
38313 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
38317 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
38320 … # Changing the link in an update request causes some other changes to the
38321 # text style of the range:
38323 … # * When setting a link, the text foreground color will be updated to the
38324 … # default link color and the text will be underlined. If these fields are
38325 … # modified in the same request, those values will be used instead of the
38328 # also update the existing link to point to the new URL.
38331 # will separate the newline character(s) into their own text runs. The
38332 … # link will be applied separately to the runs before and after the newline.
38333 # * Removing a link will update the text style of the range to match the
38334 … # style of the preceding text (or the default text styles if the preceding
38335 … # text is another link) unless different styles are being set in the same
38337 "headingId": "A String", # The ID of a heading in this document.
38339 "bookmarkId": "A String", # The ID of a bookmark in this document.
38341 "underline": True or False, # Whether or not the text is underlined.
38342 "bold": True or False, # Whether or not the text is rendered as bold.
38344 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
38348 …"suggestedTextStyleChanges": { # The suggested text style changes to this AutoText, keyed by sugge…
38350 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
38351 # the changes made in this suggestion. This can be used along with the
38356 # text style's parent depends on where the text style is defined:
38358 # * The TextStyle of text in a Paragraph
38359 # inherits from the paragraph's corresponding named style type.
38360 # * The TextStyle on a named style
38361 # inherits from the normal text named style.
38362 # * The TextStyle of the normal text named style inherits
38363 # from the default text style in the Docs editor.
38364 # * The TextStyle on a Paragraph element
38365 … # that is contained in a table may inherit its text style from the table
38368 … # If the text style does not inherit from a parent, unsetting fields will
38369 … # revert the style to a value matching the defaults in the Docs editor.
38370 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
38371 # or transparent, depending on the `color` field.
38374 "rgbColor": { # An RGB color. # The RGB color value.
38375 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
38376 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
38377 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
38381 "italic": True or False, # Whether or not the text is italicized.
38382 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
38385 … # rendered in a smaller font size, computed based on the `font_size` field.
38386 # The `font_size` itself is not affected by changes in this field.
38387 … "strikethrough": True or False, # Whether or not the text is struck through.
38388 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
38391 # `bold`, the `weighted_font_family` is applied first, then `bold`.
38398 "fontFamily": "A String", # The font family of the text.
38400 … # The font family can be any font from the Font menu in Docs or from
38401 # [Google Fonts] (https://fonts.google.com/). If the font name is
38402 # unrecognized, the text is rendered in `Arial`.
38403 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
38404 … # `100` between `100` and `900`, inclusive. This range corresponds to the
38405 # numerical values described in the CSS 2.1 Specification,
38409 # The default value is `400` ("normal").
38411 … # The font weight makes up just one component of the rendered font weight.
38412 … # The rendered weight is determined by a combination of the `weight` and the
38415 … # * If the text is bold and the weight is less than `400`, the rendered
38417 … # * If the text is bold and the weight is greater than or equal to `400` but
38418 # is less than `700`, the rendered weight is `700`.
38419 … # * If the weight is greater than or equal to `700`, the rendered weight is
38420 # equal to the weight.
38421 … # * If the text is not bold, the rendered weight is equal to the weight.
38423 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
38424 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
38425 "magnitude": 3.14, # The magnitude.
38426 "unit": "A String", # The units for magnitude.
38428 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
38429 # or transparent, depending on the `color` field.
38432 "rgbColor": { # An RGB color. # The RGB color value.
38433 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
38434 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
38435 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
38439 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
38442 … # Changing the link in an update request causes some other changes to the
38443 # text style of the range:
38445 … # * When setting a link, the text foreground color will be updated to the
38446 … # default link color and the text will be underlined. If these fields are
38447 … # modified in the same request, those values will be used instead of the
38450 # also update the existing link to point to the new URL.
38453 … # will separate the newline character(s) into their own text runs. The
38454 … # link will be applied separately to the runs before and after the newline.
38455 … # * Removing a link will update the text style of the range to match the
38456 … # style of the preceding text (or the default text styles if the preceding
38457 … # text is another link) unless different styles are being set in the same
38459 "headingId": "A String", # The ID of a heading in this document.
38461 "bookmarkId": "A String", # The ID of a bookmark in this document.
38463 "underline": True or False, # Whether or not the text is underlined.
38464 "bold": True or False, # Whether or not the text is rendered as bold.
38466 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
38482 "type": "A String", # The type of this auto text.
38483 "suggestedInsertionIds": [ # The suggested insertion IDs. An AutoText
38491 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Inli…
38493 … # Similar to text content, like text runs and footnote references, the text
38494 … # style of an inline object element can affect content layout as well as the
38498 # text style's parent depends on where the text style is defined:
38500 # * The TextStyle of text in a Paragraph
38501 # inherits from the paragraph's corresponding named style type.
38502 # * The TextStyle on a named style
38503 # inherits from the normal text named style.
38504 # * The TextStyle of the normal text named style inherits
38505 # from the default text style in the Docs editor.
38506 # * The TextStyle on a Paragraph element
38507 … # that is contained in a table may inherit its text style from the table
38510 # If the text style does not inherit from a parent, unsetting fields will
38511 # revert the style to a value matching the defaults in the Docs editor.
38512 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
38513 # or transparent, depending on the `color` field.
38516 "rgbColor": { # An RGB color. # The RGB color value.
38517 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
38518 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
38519 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
38523 "italic": True or False, # Whether or not the text is italicized.
38524 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
38527 … # rendered in a smaller font size, computed based on the `font_size` field.
38528 # The `font_size` itself is not affected by changes in this field.
38529 "strikethrough": True or False, # Whether or not the text is struck through.
38530 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
38533 # `bold`, the `weighted_font_family` is applied first, then `bold`.
38540 "fontFamily": "A String", # The font family of the text.
38542 # The font family can be any font from the Font menu in Docs or from
38543 # [Google Fonts] (https://fonts.google.com/). If the font name is
38544 # unrecognized, the text is rendered in `Arial`.
38545 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
38546 … # `100` between `100` and `900`, inclusive. This range corresponds to the
38547 # numerical values described in the CSS 2.1 Specification,
38551 # The default value is `400` ("normal").
38553 … # The font weight makes up just one component of the rendered font weight.
38554 … # The rendered weight is determined by a combination of the `weight` and the
38557 … # * If the text is bold and the weight is less than `400`, the rendered
38559 … # * If the text is bold and the weight is greater than or equal to `400` but
38560 # is less than `700`, the rendered weight is `700`.
38561 … # * If the weight is greater than or equal to `700`, the rendered weight is
38562 # equal to the weight.
38563 … # * If the text is not bold, the rendered weight is equal to the weight.
38565 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
38566 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
38567 "magnitude": 3.14, # The magnitude.
38568 "unit": "A String", # The units for magnitude.
38570 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
38571 # or transparent, depending on the `color` field.
38574 "rgbColor": { # An RGB color. # The RGB color value.
38575 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
38576 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
38577 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
38581 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
38584 … # Changing the link in an update request causes some other changes to the
38585 # text style of the range:
38587 … # * When setting a link, the text foreground color will be updated to the
38588 … # default link color and the text will be underlined. If these fields are
38589 … # modified in the same request, those values will be used instead of the
38592 # also update the existing link to point to the new URL.
38595 # will separate the newline character(s) into their own text runs. The
38596 … # link will be applied separately to the runs before and after the newline.
38597 # * Removing a link will update the text style of the range to match the
38598 … # style of the preceding text (or the default text styles if the preceding
38599 … # text is another link) unless different styles are being set in the same
38601 "headingId": "A String", # The ID of a heading in this document.
38603 "bookmarkId": "A String", # The ID of a bookmark in this document.
38605 "underline": True or False, # Whether or not the text is underlined.
38606 "bold": True or False, # Whether or not the text is rendered as bold.
38608 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
38612 …"suggestedTextStyleChanges": { # The suggested text style changes to this InlineObject, keyed by s…
38615 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
38616 # the changes made in this suggestion. This can be used along with the
38621 # text style's parent depends on where the text style is defined:
38623 # * The TextStyle of text in a Paragraph
38624 # inherits from the paragraph's corresponding named style type.
38625 # * The TextStyle on a named style
38626 # inherits from the normal text named style.
38627 # * The TextStyle of the normal text named style inherits
38628 # from the default text style in the Docs editor.
38629 # * The TextStyle on a Paragraph element
38630 … # that is contained in a table may inherit its text style from the table
38633 … # If the text style does not inherit from a parent, unsetting fields will
38634 … # revert the style to a value matching the defaults in the Docs editor.
38635 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
38636 # or transparent, depending on the `color` field.
38639 "rgbColor": { # An RGB color. # The RGB color value.
38640 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
38641 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
38642 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
38646 "italic": True or False, # Whether or not the text is italicized.
38647 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
38650 … # rendered in a smaller font size, computed based on the `font_size` field.
38651 # The `font_size` itself is not affected by changes in this field.
38652 … "strikethrough": True or False, # Whether or not the text is struck through.
38653 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
38656 # `bold`, the `weighted_font_family` is applied first, then `bold`.
38663 "fontFamily": "A String", # The font family of the text.
38665 … # The font family can be any font from the Font menu in Docs or from
38666 # [Google Fonts] (https://fonts.google.com/). If the font name is
38667 # unrecognized, the text is rendered in `Arial`.
38668 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
38669 … # `100` between `100` and `900`, inclusive. This range corresponds to the
38670 # numerical values described in the CSS 2.1 Specification,
38674 # The default value is `400` ("normal").
38676 … # The font weight makes up just one component of the rendered font weight.
38677 … # The rendered weight is determined by a combination of the `weight` and the
38680 … # * If the text is bold and the weight is less than `400`, the rendered
38682 … # * If the text is bold and the weight is greater than or equal to `400` but
38683 # is less than `700`, the rendered weight is `700`.
38684 … # * If the weight is greater than or equal to `700`, the rendered weight is
38685 # equal to the weight.
38686 … # * If the text is not bold, the rendered weight is equal to the weight.
38688 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
38689 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
38690 "magnitude": 3.14, # The magnitude.
38691 "unit": "A String", # The units for magnitude.
38693 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
38694 # or transparent, depending on the `color` field.
38697 "rgbColor": { # An RGB color. # The RGB color value.
38698 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
38699 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
38700 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
38704 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
38707 … # Changing the link in an update request causes some other changes to the
38708 # text style of the range:
38710 … # * When setting a link, the text foreground color will be updated to the
38711 … # default link color and the text will be underlined. If these fields are
38712 … # modified in the same request, those values will be used instead of the
38715 # also update the existing link to point to the new URL.
38718 … # will separate the newline character(s) into their own text runs. The
38719 … # link will be applied separately to the runs before and after the newline.
38720 … # * Removing a link will update the text style of the range to match the
38721 … # style of the preceding text (or the default text styles if the preceding
38722 … # text is another link) unless different styles are being set in the same
38724 "headingId": "A String", # The ID of a heading in this document.
38726 "bookmarkId": "A String", # The ID of a bookmark in this document.
38728 "underline": True or False, # Whether or not the text is underlined.
38729 "bold": True or False, # Whether or not the text is rendered as bold.
38731 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
38747 "inlineObjectId": "A String", # The ID of the InlineObject this
38749 …"suggestedInsertionIds": [ # The suggested insertion IDs. An InlineObjectElement may have multiple…
38756 … # footnote reference. A footnote reference is the inline content rendered with
38757 # a number and is used to identify the footnote.
38758 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Foot…
38761 # text style's parent depends on where the text style is defined:
38763 # * The TextStyle of text in a Paragraph
38764 # inherits from the paragraph's corresponding named style type.
38765 # * The TextStyle on a named style
38766 # inherits from the normal text named style.
38767 # * The TextStyle of the normal text named style inherits
38768 # from the default text style in the Docs editor.
38769 # * The TextStyle on a Paragraph element
38770 … # that is contained in a table may inherit its text style from the table
38773 # If the text style does not inherit from a parent, unsetting fields will
38774 # revert the style to a value matching the defaults in the Docs editor.
38775 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
38776 # or transparent, depending on the `color` field.
38779 "rgbColor": { # An RGB color. # The RGB color value.
38780 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
38781 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
38782 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
38786 "italic": True or False, # Whether or not the text is italicized.
38787 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
38790 … # rendered in a smaller font size, computed based on the `font_size` field.
38791 # The `font_size` itself is not affected by changes in this field.
38792 "strikethrough": True or False, # Whether or not the text is struck through.
38793 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
38796 # `bold`, the `weighted_font_family` is applied first, then `bold`.
38803 "fontFamily": "A String", # The font family of the text.
38805 # The font family can be any font from the Font menu in Docs or from
38806 # [Google Fonts] (https://fonts.google.com/). If the font name is
38807 # unrecognized, the text is rendered in `Arial`.
38808 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
38809 … # `100` between `100` and `900`, inclusive. This range corresponds to the
38810 # numerical values described in the CSS 2.1 Specification,
38814 # The default value is `400` ("normal").
38816 … # The font weight makes up just one component of the rendered font weight.
38817 … # The rendered weight is determined by a combination of the `weight` and the
38820 … # * If the text is bold and the weight is less than `400`, the rendered
38822 … # * If the text is bold and the weight is greater than or equal to `400` but
38823 # is less than `700`, the rendered weight is `700`.
38824 … # * If the weight is greater than or equal to `700`, the rendered weight is
38825 # equal to the weight.
38826 … # * If the text is not bold, the rendered weight is equal to the weight.
38828 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
38829 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
38830 "magnitude": 3.14, # The magnitude.
38831 "unit": "A String", # The units for magnitude.
38833 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
38834 # or transparent, depending on the `color` field.
38837 "rgbColor": { # An RGB color. # The RGB color value.
38838 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
38839 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
38840 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
38844 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
38847 … # Changing the link in an update request causes some other changes to the
38848 # text style of the range:
38850 … # * When setting a link, the text foreground color will be updated to the
38851 … # default link color and the text will be underlined. If these fields are
38852 … # modified in the same request, those values will be used instead of the
38855 # also update the existing link to point to the new URL.
38858 # will separate the newline character(s) into their own text runs. The
38859 … # link will be applied separately to the runs before and after the newline.
38860 # * Removing a link will update the text style of the range to match the
38861 … # style of the preceding text (or the default text styles if the preceding
38862 … # text is another link) unless different styles are being set in the same
38864 "headingId": "A String", # The ID of a heading in this document.
38866 "bookmarkId": "A String", # The ID of a bookmark in this document.
38868 "underline": True or False, # Whether or not the text is underlined.
38869 "bold": True or False, # Whether or not the text is rendered as bold.
38871 "footnoteNumber": "A String", # The rendered number of this footnote.
38872 …"suggestedInsertionIds": [ # The suggested insertion IDs. A FootnoteReference may have multiple in…
38877 "footnoteId": "A String", # The ID of the footnote that
38878 # contains the content of this footnote reference.
38879 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
38883 …"suggestedTextStyleChanges": { # The suggested text style changes to this FootnoteReference, keyed…
38886 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
38887 # the changes made in this suggestion. This can be used along with the
38892 # text style's parent depends on where the text style is defined:
38894 # * The TextStyle of text in a Paragraph
38895 # inherits from the paragraph's corresponding named style type.
38896 # * The TextStyle on a named style
38897 # inherits from the normal text named style.
38898 # * The TextStyle of the normal text named style inherits
38899 # from the default text style in the Docs editor.
38900 # * The TextStyle on a Paragraph element
38901 … # that is contained in a table may inherit its text style from the table
38904 … # If the text style does not inherit from a parent, unsetting fields will
38905 … # revert the style to a value matching the defaults in the Docs editor.
38906 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
38907 # or transparent, depending on the `color` field.
38910 "rgbColor": { # An RGB color. # The RGB color value.
38911 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
38912 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
38913 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
38917 "italic": True or False, # Whether or not the text is italicized.
38918 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
38921 … # rendered in a smaller font size, computed based on the `font_size` field.
38922 # The `font_size` itself is not affected by changes in this field.
38923 … "strikethrough": True or False, # Whether or not the text is struck through.
38924 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
38927 # `bold`, the `weighted_font_family` is applied first, then `bold`.
38934 "fontFamily": "A String", # The font family of the text.
38936 … # The font family can be any font from the Font menu in Docs or from
38937 # [Google Fonts] (https://fonts.google.com/). If the font name is
38938 # unrecognized, the text is rendered in `Arial`.
38939 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
38940 … # `100` between `100` and `900`, inclusive. This range corresponds to the
38941 # numerical values described in the CSS 2.1 Specification,
38945 # The default value is `400` ("normal").
38947 … # The font weight makes up just one component of the rendered font weight.
38948 … # The rendered weight is determined by a combination of the `weight` and the
38951 … # * If the text is bold and the weight is less than `400`, the rendered
38953 … # * If the text is bold and the weight is greater than or equal to `400` but
38954 # is less than `700`, the rendered weight is `700`.
38955 … # * If the weight is greater than or equal to `700`, the rendered weight is
38956 # equal to the weight.
38957 … # * If the text is not bold, the rendered weight is equal to the weight.
38959 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
38960 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
38961 "magnitude": 3.14, # The magnitude.
38962 "unit": "A String", # The units for magnitude.
38964 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
38965 # or transparent, depending on the `color` field.
38968 "rgbColor": { # An RGB color. # The RGB color value.
38969 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
38970 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
38971 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
38975 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
38978 … # Changing the link in an update request causes some other changes to the
38979 # text style of the range:
38981 … # * When setting a link, the text foreground color will be updated to the
38982 … # default link color and the text will be underlined. If these fields are
38983 … # modified in the same request, those values will be used instead of the
38986 # also update the existing link to point to the new URL.
38989 … # will separate the newline character(s) into their own text runs. The
38990 … # link will be applied separately to the runs before and after the newline.
38991 … # * Removing a link will update the text style of the range to match the
38992 … # style of the preceding text (or the default text styles if the preceding
38993 … # text is another link) unless different styles are being set in the same
38995 "headingId": "A String", # The ID of a heading in this document.
38997 "bookmarkId": "A String", # The ID of a bookmark in this document.
38999 "underline": True or False, # Whether or not the text is underlined.
39000 "bold": True or False, # Whether or not the text is rendered as bold.
39002 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
39021 …"suggestedPositionedObjectIds": { # The IDs of the positioned objects that are suggested to be att…
39024 "objectIds": [ # The object IDs.
39029 …"bullet": { # Describes the bullet of a paragraph. # The bullet for this paragraph. If not present…
39031 "nestingLevel": 42, # The nesting level of this paragraph in the list.
39032 "listId": "A String", # The ID of the list this paragraph belongs to.
39033 …"textStyle": { # Represents the styling that can be applied to text. # The paragraph specific text…
39036 # text style's parent depends on where the text style is defined:
39038 # * The TextStyle of text in a Paragraph
39039 # inherits from the paragraph's corresponding named style type.
39040 # * The TextStyle on a named style
39041 # inherits from the normal text named style.
39042 # * The TextStyle of the normal text named style inherits
39043 # from the default text style in the Docs editor.
39044 # * The TextStyle on a Paragraph element
39045 # that is contained in a table may inherit its text style from the table
39048 # If the text style does not inherit from a parent, unsetting fields will
39049 # revert the style to a value matching the defaults in the Docs editor.
39050 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
39051 # or transparent, depending on the `color` field.
39054 "rgbColor": { # An RGB color. # The RGB color value.
39055 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
39056 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
39057 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
39061 "italic": True or False, # Whether or not the text is italicized.
39062 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
39065 # rendered in a smaller font size, computed based on the `font_size` field.
39066 # The `font_size` itself is not affected by changes in this field.
39067 "strikethrough": True or False, # Whether or not the text is struck through.
39068 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
39071 # `bold`, the `weighted_font_family` is applied first, then `bold`.
39078 "fontFamily": "A String", # The font family of the text.
39080 # The font family can be any font from the Font menu in Docs or from
39081 # [Google Fonts] (https://fonts.google.com/). If the font name is
39082 # unrecognized, the text is rendered in `Arial`.
39083 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
39084 # `100` between `100` and `900`, inclusive. This range corresponds to the
39085 # numerical values described in the CSS 2.1 Specification,
39089 # The default value is `400` ("normal").
39091 # The font weight makes up just one component of the rendered font weight.
39092 … # The rendered weight is determined by a combination of the `weight` and the
39095 # * If the text is bold and the weight is less than `400`, the rendered
39097 … # * If the text is bold and the weight is greater than or equal to `400` but
39098 # is less than `700`, the rendered weight is `700`.
39099 … # * If the weight is greater than or equal to `700`, the rendered weight is
39100 # equal to the weight.
39101 # * If the text is not bold, the rendered weight is equal to the weight.
39103 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
39104 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
39105 "magnitude": 3.14, # The magnitude.
39106 "unit": "A String", # The units for magnitude.
39108 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
39109 # or transparent, depending on the `color` field.
39112 "rgbColor": { # An RGB color. # The RGB color value.
39113 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
39114 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
39115 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
39119 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
39122 # Changing the link in an update request causes some other changes to the
39123 # text style of the range:
39125 # * When setting a link, the text foreground color will be updated to the
39126 # default link color and the text will be underlined. If these fields are
39127 # modified in the same request, those values will be used instead of the
39130 # also update the existing link to point to the new URL.
39133 # will separate the newline character(s) into their own text runs. The
39134 … # link will be applied separately to the runs before and after the newline.
39135 # * Removing a link will update the text style of the range to match the
39136 # style of the preceding text (or the default text styles if the preceding
39137 # text is another link) unless different styles are being set in the same
39139 "headingId": "A String", # The ID of a heading in this document.
39141 "bookmarkId": "A String", # The ID of a bookmark in this document.
39143 "underline": True or False, # Whether or not the text is underlined.
39144 "bold": True or False, # Whether or not the text is rendered as bold.
39147 "suggestedBulletChanges": { # The suggested changes to this paragraph's bullet.
39149 … "bullet": { # Describes the bullet of a paragraph. # A Bullet that only includes the changes made
39150 # in this suggestion. This can be used along with the
39153 "nestingLevel": 42, # The nesting level of this paragraph in the list.
39154 "listId": "A String", # The ID of the list this paragraph belongs to.
39155 …"textStyle": { # Represents the styling that can be applied to text. # The paragraph specific text…
39158 # text style's parent depends on where the text style is defined:
39160 # * The TextStyle of text in a Paragraph
39161 # inherits from the paragraph's corresponding named style type.
39162 # * The TextStyle on a named style
39163 # inherits from the normal text named style.
39164 # * The TextStyle of the normal text named style inherits
39165 # from the default text style in the Docs editor.
39166 # * The TextStyle on a Paragraph element
39167 … # that is contained in a table may inherit its text style from the table
39170 # If the text style does not inherit from a parent, unsetting fields will
39171 # revert the style to a value matching the defaults in the Docs editor.
39172 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
39173 # or transparent, depending on the `color` field.
39176 "rgbColor": { # An RGB color. # The RGB color value.
39177 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
39178 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
39179 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
39183 "italic": True or False, # Whether or not the text is italicized.
39184 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
39187 … # rendered in a smaller font size, computed based on the `font_size` field.
39188 # The `font_size` itself is not affected by changes in this field.
39189 "strikethrough": True or False, # Whether or not the text is struck through.
39190 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
39193 # `bold`, the `weighted_font_family` is applied first, then `bold`.
39200 "fontFamily": "A String", # The font family of the text.
39202 # The font family can be any font from the Font menu in Docs or from
39203 # [Google Fonts] (https://fonts.google.com/). If the font name is
39204 # unrecognized, the text is rendered in `Arial`.
39205 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
39206 … # `100` between `100` and `900`, inclusive. This range corresponds to the
39207 # numerical values described in the CSS 2.1 Specification,
39211 # The default value is `400` ("normal").
39213 … # The font weight makes up just one component of the rendered font weight.
39214 … # The rendered weight is determined by a combination of the `weight` and the
39217 … # * If the text is bold and the weight is less than `400`, the rendered
39219 … # * If the text is bold and the weight is greater than or equal to `400` but
39220 # is less than `700`, the rendered weight is `700`.
39221 … # * If the weight is greater than or equal to `700`, the rendered weight is
39222 # equal to the weight.
39223 … # * If the text is not bold, the rendered weight is equal to the weight.
39225 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
39226 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
39227 "magnitude": 3.14, # The magnitude.
39228 "unit": "A String", # The units for magnitude.
39230 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
39231 # or transparent, depending on the `color` field.
39234 "rgbColor": { # An RGB color. # The RGB color value.
39235 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
39236 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
39237 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
39241 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
39244 … # Changing the link in an update request causes some other changes to the
39245 # text style of the range:
39247 … # * When setting a link, the text foreground color will be updated to the
39248 … # default link color and the text will be underlined. If these fields are
39249 … # modified in the same request, those values will be used instead of the
39252 # also update the existing link to point to the new URL.
39255 # will separate the newline character(s) into their own text runs. The
39256 … # link will be applied separately to the runs before and after the newline.
39257 # * Removing a link will update the text style of the range to match the
39258 … # style of the preceding text (or the default text styles if the preceding
39259 … # text is another link) unless different styles are being set in the same
39261 "headingId": "A String", # The ID of a heading in this document.
39263 "bookmarkId": "A String", # The ID of a bookmark in this document.
39265 "underline": True or False, # Whether or not the text is underlined.
39266 "bold": True or False, # Whether or not the text is rendered as bold.
39269 …te": { # A mask that indicates which of the fields on the base # A mask that indicates which of th…
39273 … "nestingLevelSuggested": True or False, # Indicates if there was a suggested change to the
39275 …hat indicates which of the fields on the base TextStyle have been changed in this suggestion. # A …
39290 … "listIdSuggested": True or False, # Indicates if there was a suggested change to the
39295 … "positionedObjectIds": [ # The IDs of the positioned objects tethered to this paragraph.
39298 …"suggestedParagraphStyleChanges": { # The suggested paragraph style changes to this paragraph, key…
39302 …tes which of the fields on the base ParagraphStyle have been changed in this suggestion. # A mask …
39323 … mask that indicates which of the fields on the base Shading have been changed in this # A mask th…
39326 …ckgroundColorSuggested": True or False, # Indicates if there was a suggested change to the Shading.
39330 # the changes made in this suggestion. This can be used along with the
39335 … # A paragraph style's parent depends on where the paragraph style is defined:
39337 # * The ParagraphStyle on a Paragraph
39338 # inherits from the paragraph's corresponding named style type.
39339 # * The ParagraphStyle on a named style
39340 # inherits from the normal text named style.
39341 # * The ParagraphStyle of the normal text named style inherits
39342 # from the default paragraph style in the Docs editor.
39343 # * The ParagraphStyle on a Paragraph
39345 # the table style.
39347 … # If the paragraph style does not inherit from a parent, unsetting fields will
39348 # revert the style to a value matching the defaults in the Docs editor.
39349 "spacingMode": "A String", # The spacing mode for the paragraph.
39350 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
39353 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
39354 # inherited from the parent.
39355 "magnitude": 3.14, # The magnitude.
39356 "unit": "A String", # The units for magnitude.
39358 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
39359 # page or column as the next paragraph if possible. If unset, the value is
39360 # inherited from the parent.
39361 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
39362 … # is represented as 100.0. If unset, the value is inherited from the parent.
39363 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
39364 # is inherited from the parent.
39365 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
39366 # inherited from the parent.
39368 … # The bottom border is rendered when the paragraph below has different border
39372 # changes to a paragraph border the new border must be specified in
39374 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
39377 "rgbColor": { # An RGB color. # The RGB color value.
39378 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
39379 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
39380 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
39384 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
39385 "magnitude": 3.14, # The magnitude.
39386 "unit": "A String", # The units for magnitude.
39388 "dashStyle": "A String", # The dash style of the border.
39389 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
39390 "magnitude": 3.14, # The magnitude.
39391 "unit": "A String", # The units for magnitude.
39394 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
39395 … # the start of the text, based on the current paragraph direction. If unset,
39396 # the value is inherited from the parent.
39397 "magnitude": 3.14, # The magnitude.
39398 "unit": "A String", # The units for magnitude.
39400 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
39401 # If unset, the value is inherited from the parent.
39403 # The between border is rendered when the adjacent paragraph has the same
39407 # changes to a paragraph border the new border must be specified in
39409 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
39412 "rgbColor": { # An RGB color. # The RGB color value.
39413 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
39414 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
39415 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
39419 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
39420 "magnitude": 3.14, # The magnitude.
39421 "unit": "A String", # The units for magnitude.
39423 "dashStyle": "A String", # The dash style of the border.
39424 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
39425 "magnitude": 3.14, # The magnitude.
39426 "unit": "A String", # The units for magnitude.
39429 "namedStyleType": "A String", # The named style type of the paragraph.
39431 # Since updating the named style type affects other properties within
39432 … # ParagraphStyle, the named style type is applied before the other properties
39434 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
39435 # from the parent.
39438 # changes to a paragraph border the new border must be specified in
39440 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
39443 "rgbColor": { # An RGB color. # The RGB color value.
39444 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
39445 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
39446 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
39450 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
39451 "magnitude": 3.14, # The magnitude.
39452 "unit": "A String", # The units for magnitude.
39454 "dashStyle": "A String", # The dash style of the border.
39455 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
39456 "magnitude": 3.14, # The magnitude.
39457 "unit": "A String", # The units for magnitude.
39460 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
39461 # the end of the text, based on the current paragraph direction. If unset,
39462 # the value is inherited from the parent.
39463 "magnitude": 3.14, # The magnitude.
39464 "unit": "A String", # The units for magnitude.
39466 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
39467 # from the parent.
39470 # changes to a paragraph border the new border must be specified in
39472 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
39475 "rgbColor": { # An RGB color. # The RGB color value.
39476 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
39477 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
39478 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
39482 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
39483 "magnitude": 3.14, # The magnitude.
39484 "unit": "A String", # The units for magnitude.
39486 "dashStyle": "A String", # The dash style of the border.
39487 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
39488 "magnitude": 3.14, # The magnitude.
39489 "unit": "A String", # The units for magnitude.
39492 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
39493 # inherited from the parent.
39494 "magnitude": 3.14, # The magnitude.
39495 "unit": "A String", # The units for magnitude.
39497 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
39499 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
39501 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
39504 "rgbColor": { # An RGB color. # The RGB color value.
39505 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
39506 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
39507 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
39512 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
39513 # from the parent.
39515 # The top border is rendered when the paragraph above has different border
39519 # changes to a paragraph border the new border must be specified in
39521 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
39524 "rgbColor": { # An RGB color. # The RGB color value.
39525 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
39526 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
39527 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
39531 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
39532 "magnitude": 3.14, # The magnitude.
39533 "unit": "A String", # The units for magnitude.
39535 "dashStyle": "A String", # The dash style of the border.
39536 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
39537 "magnitude": 3.14, # The magnitude.
39538 "unit": "A String", # The units for magnitude.
39541 … "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
39544 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
39545 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
39546 "magnitude": 3.14, # The magnitude.
39547 "unit": "A String", # The units for magnitude.
39551 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
39552 # the value is inherited from the parent.
39553 "magnitude": 3.14, # The magnitude.
39554 "unit": "A String", # The units for magnitude.
39556 "alignment": "A String", # The text alignment for this paragraph.
39557 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
39558 # column if possible. If unset, the value is inherited from the parent.
39562 … "paragraphStyle": { # Styles that apply to a whole paragraph. # The style of this paragraph.
39565 # A paragraph style's parent depends on where the paragraph style is defined:
39567 # * The ParagraphStyle on a Paragraph
39568 # inherits from the paragraph's corresponding named style type.
39569 # * The ParagraphStyle on a named style
39570 # inherits from the normal text named style.
39571 # * The ParagraphStyle of the normal text named style inherits
39572 # from the default paragraph style in the Docs editor.
39573 # * The ParagraphStyle on a Paragraph
39575 # the table style.
39577 # If the paragraph style does not inherit from a parent, unsetting fields will
39578 # revert the style to a value matching the defaults in the Docs editor.
39579 "spacingMode": "A String", # The spacing mode for the paragraph.
39580 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
39583 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
39584 # inherited from the parent.
39585 "magnitude": 3.14, # The magnitude.
39586 "unit": "A String", # The units for magnitude.
39588 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
39589 # page or column as the next paragraph if possible. If unset, the value is
39590 # inherited from the parent.
39591 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
39592 # is represented as 100.0. If unset, the value is inherited from the parent.
39593 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
39594 # is inherited from the parent.
39595 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
39596 # inherited from the parent.
39598 # The bottom border is rendered when the paragraph below has different border
39602 # changes to a paragraph border the new border must be specified in
39604 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
39607 "rgbColor": { # An RGB color. # The RGB color value.
39608 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
39609 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
39610 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
39614 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
39615 "magnitude": 3.14, # The magnitude.
39616 "unit": "A String", # The units for magnitude.
39618 "dashStyle": "A String", # The dash style of the border.
39619 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
39620 "magnitude": 3.14, # The magnitude.
39621 "unit": "A String", # The units for magnitude.
39624 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
39625 # the start of the text, based on the current paragraph direction. If unset,
39626 # the value is inherited from the parent.
39627 "magnitude": 3.14, # The magnitude.
39628 "unit": "A String", # The units for magnitude.
39630 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
39631 # If unset, the value is inherited from the parent.
39633 # The between border is rendered when the adjacent paragraph has the same
39637 # changes to a paragraph border the new border must be specified in
39639 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
39642 "rgbColor": { # An RGB color. # The RGB color value.
39643 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
39644 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
39645 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
39649 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
39650 "magnitude": 3.14, # The magnitude.
39651 "unit": "A String", # The units for magnitude.
39653 "dashStyle": "A String", # The dash style of the border.
39654 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
39655 "magnitude": 3.14, # The magnitude.
39656 "unit": "A String", # The units for magnitude.
39659 "namedStyleType": "A String", # The named style type of the paragraph.
39661 # Since updating the named style type affects other properties within
39662 # ParagraphStyle, the named style type is applied before the other properties
39664 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
39665 # from the parent.
39668 # changes to a paragraph border the new border must be specified in
39670 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
39673 "rgbColor": { # An RGB color. # The RGB color value.
39674 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
39675 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
39676 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
39680 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
39681 "magnitude": 3.14, # The magnitude.
39682 "unit": "A String", # The units for magnitude.
39684 "dashStyle": "A String", # The dash style of the border.
39685 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
39686 "magnitude": 3.14, # The magnitude.
39687 "unit": "A String", # The units for magnitude.
39690 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
39691 # the end of the text, based on the current paragraph direction. If unset,
39692 # the value is inherited from the parent.
39693 "magnitude": 3.14, # The magnitude.
39694 "unit": "A String", # The units for magnitude.
39696 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
39697 # from the parent.
39700 # changes to a paragraph border the new border must be specified in
39702 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
39705 "rgbColor": { # An RGB color. # The RGB color value.
39706 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
39707 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
39708 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
39712 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
39713 "magnitude": 3.14, # The magnitude.
39714 "unit": "A String", # The units for magnitude.
39716 "dashStyle": "A String", # The dash style of the border.
39717 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
39718 "magnitude": 3.14, # The magnitude.
39719 "unit": "A String", # The units for magnitude.
39722 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
39723 # inherited from the parent.
39724 "magnitude": 3.14, # The magnitude.
39725 "unit": "A String", # The units for magnitude.
39727 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
39729 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
39731 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
39734 "rgbColor": { # An RGB color. # The RGB color value.
39735 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
39736 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
39737 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
39742 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
39743 # from the parent.
39745 # The top border is rendered when the paragraph above has different border
39749 # changes to a paragraph border the new border must be specified in
39751 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
39754 "rgbColor": { # An RGB color. # The RGB color value.
39755 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
39756 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
39757 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
39761 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
39762 "magnitude": 3.14, # The magnitude.
39763 "unit": "A String", # The units for magnitude.
39765 "dashStyle": "A String", # The dash style of the border.
39766 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
39767 "magnitude": 3.14, # The magnitude.
39768 "unit": "A String", # The units for magnitude.
39771 … "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
39774 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
39775 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
39776 "magnitude": 3.14, # The magnitude.
39777 "unit": "A String", # The units for magnitude.
39781 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
39782 # the value is inherited from the parent.
39783 "magnitude": 3.14, # The magnitude.
39784 "unit": "A String", # The units for magnitude.
39786 "alignment": "A String", # The text alignment for this paragraph.
39787 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
39788 # column if possible. If unset, the value is inherited from the parent.
39793 "rows": 42, # Number of rows in the table.
39794 "tableStyle": { # Styles that apply to a table. # The style of the table.
39795 "tableColumnProperties": [ # The properties of each column.
39798 # HTML. So the properties for a row can be found on the row's
39800 { # The properties of a column in a table.
39801 …th": { # A magnitude in a single direction in the specified units. # The width of the column. Set …
39803 "magnitude": 3.14, # The magnitude.
39804 "unit": "A String", # The units for magnitude.
39806 "widthType": "A String", # The width type of the column.
39810 "suggestedInsertionIds": [ # The suggested insertion IDs. A Table may have
39815 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
39819 "tableRows": [ # The contents and style of each row.
39820 { # The contents and style of a row in a Table.
39821 … "endIndex": 42, # The zero-based end index of this row, exclusive, in UTF-16 code units.
39822 "tableCells": [ # The contents and style of each cell in this row.
39825 # different number of cells than other rows in the same table.
39826 { # The contents and style of a cell in a Table.
39827 … "endIndex": 42, # The zero-based end index of this cell, exclusive, in UTF-16 code units.
39828 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
39832 "suggestedInsertionIds": [ # The suggested insertion IDs. A TableCell
39837 "content": [ # The content of the cell.
39840 "tableCellStyle": { # The style of a TableCell. # The style of the cell.
39843 # A table cell style can inherit from the table's style.
39844 …ngBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of t…
39845 "magnitude": 3.14, # The magnitude.
39846 "unit": "A String", # The units for magnitude.
39848 … "borderBottom": { # A border around a table cell. # The bottom border of the cell.
39849 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
39852 "rgbColor": { # An RGB color. # The RGB color value.
39853 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
39854 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
39855 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
39859 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
39860 "magnitude": 3.14, # The magnitude.
39861 "unit": "A String", # The units for magnitude.
39863 "dashStyle": "A String", # The dash style of the border.
39865 …ddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of th…
39866 "magnitude": 3.14, # The magnitude.
39867 "unit": "A String", # The units for magnitude.
39869 …paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of th…
39870 "magnitude": 3.14, # The magnitude.
39871 "unit": "A String", # The units for magnitude.
39873 … "borderLeft": { # A border around a table cell. # The left border of the cell.
39874 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
39877 "rgbColor": { # An RGB color. # The RGB color value.
39878 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
39879 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
39880 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
39884 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
39885 "magnitude": 3.14, # The magnitude.
39886 "unit": "A String", # The units for magnitude.
39888 "dashStyle": "A String", # The dash style of the border.
39890 … "columnSpan": 42, # The column span of the cell. This property is read-only.
39891 …# A color that can either be fully opaque or fully transparent. # The background color of the cell.
39894 "rgbColor": { # An RGB color. # The RGB color value.
39895 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
39896 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
39897 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
39901 … "borderRight": { # A border around a table cell. # The right border of the cell.
39902 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
39905 "rgbColor": { # An RGB color. # The RGB color value.
39906 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
39907 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
39908 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
39912 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
39913 "magnitude": 3.14, # The magnitude.
39914 "unit": "A String", # The units for magnitude.
39916 "dashStyle": "A String", # The dash style of the border.
39918 "rowSpan": 42, # The row span of the cell. This property is read-only.
39919 …"contentAlignment": "A String", # The alignment of the content in the table cell. The default alig…
39920 … # matches the alignment for newly created table cells in the Docs editor.
39921 …dingRight": { # A magnitude in a single direction in the specified units. # The right padding of t…
39922 "magnitude": 3.14, # The magnitude.
39923 "unit": "A String", # The units for magnitude.
39925 … "borderTop": { # A border around a table cell. # The top border of the cell.
39926 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
39929 "rgbColor": { # An RGB color. # The RGB color value.
39930 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
39931 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
39932 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
39936 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
39937 "magnitude": 3.14, # The magnitude.
39938 "unit": "A String", # The units for magnitude.
39940 "dashStyle": "A String", # The dash style of the border.
39943 … "startIndex": 42, # The zero-based start index of this cell, in UTF-16 code units.
39944 …"suggestedTableCellStyleChanges": { # The suggested changes to the table cell style, keyed by sugg…
39946 … "tableCellStyle": { # The style of a TableCell. # A TableCellStyle that only includes
39947 … # the changes made in this suggestion. This can be used along with the
39952 # A table cell style can inherit from the table's style.
39953 …ngBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of t…
39954 "magnitude": 3.14, # The magnitude.
39955 "unit": "A String", # The units for magnitude.
39957 … "borderBottom": { # A border around a table cell. # The bottom border of the cell.
39958 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
39961 "rgbColor": { # An RGB color. # The RGB color value.
39962 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
39963 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
39964 … "red": 3.14, # The red component of the color, from 0.0 to 1.0.
39968 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
39969 "magnitude": 3.14, # The magnitude.
39970 "unit": "A String", # The units for magnitude.
39972 "dashStyle": "A String", # The dash style of the border.
39974 …ddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of th…
39975 "magnitude": 3.14, # The magnitude.
39976 "unit": "A String", # The units for magnitude.
39978 …paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of th…
39979 "magnitude": 3.14, # The magnitude.
39980 "unit": "A String", # The units for magnitude.
39982 … "borderLeft": { # A border around a table cell. # The left border of the cell.
39983 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
39986 "rgbColor": { # An RGB color. # The RGB color value.
39987 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
39988 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
39989 … "red": 3.14, # The red component of the color, from 0.0 to 1.0.
39993 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
39994 "magnitude": 3.14, # The magnitude.
39995 "unit": "A String", # The units for magnitude.
39997 "dashStyle": "A String", # The dash style of the border.
39999 … "columnSpan": 42, # The column span of the cell. This property is read-only.
40000 …# A color that can either be fully opaque or fully transparent. # The background color of the cell.
40003 "rgbColor": { # An RGB color. # The RGB color value.
40004 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
40005 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
40006 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
40010 … "borderRight": { # A border around a table cell. # The right border of the cell.
40011 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
40014 "rgbColor": { # An RGB color. # The RGB color value.
40015 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
40016 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
40017 … "red": 3.14, # The red component of the color, from 0.0 to 1.0.
40021 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
40022 "magnitude": 3.14, # The magnitude.
40023 "unit": "A String", # The units for magnitude.
40025 "dashStyle": "A String", # The dash style of the border.
40027 "rowSpan": 42, # The row span of the cell. This property is read-only.
40028 …"contentAlignment": "A String", # The alignment of the content in the table cell. The default alig…
40029 … # matches the alignment for newly created table cells in the Docs editor.
40030 …dingRight": { # A magnitude in a single direction in the specified units. # The right padding of t…
40031 "magnitude": 3.14, # The magnitude.
40032 "unit": "A String", # The units for magnitude.
40034 … "borderTop": { # A border around a table cell. # The top border of the cell.
40035 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
40038 "rgbColor": { # An RGB color. # The RGB color value.
40039 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
40040 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
40041 … "red": 3.14, # The red component of the color, from 0.0 to 1.0.
40045 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
40046 "magnitude": 3.14, # The magnitude.
40047 "unit": "A String", # The units for magnitude.
40049 "dashStyle": "A String", # The dash style of the border.
40052 …tes which of the fields on the base TableCellStyle have been changed in this suggestion. # A mask …
40071 … "tableRowStyle": { # Styles that apply to a table row. # The style of the table row.
40072 …agnitude in a single direction in the specified units. # The minimum height of the row. The row wi…
40073 # at a height equal to or greater than this value in order to show all the
40074 # content in the row's cells.
40075 "magnitude": 3.14, # The magnitude.
40076 "unit": "A String", # The units for magnitude.
40079 "suggestedInsertionIds": [ # The suggested insertion IDs. A TableRow
40084 … "startIndex": 42, # The zero-based start index of this row, in UTF-16 code units.
40085 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
40089 …"suggestedTableRowStyleChanges": { # The suggested style changes to this row, keyed by suggestion …
40093 # the changes made in this suggestion. This can be used along with the
40096 …agnitude in a single direction in the specified units. # The minimum height of the row. The row wi…
40097 … # at a height equal to or greater than this value in order to show all the
40098 # content in the row's cells.
40099 "magnitude": 3.14, # The magnitude.
40100 "unit": "A String", # The units for magnitude.
40103 …ates which of the fields on the base TableRowStyle have been changed in this suggestion. # A mask …
40111 "columns": 42, # Number of columns in the table.
40118 "footerId": "A String", # The ID of the footer.
40121 "footnotes": { # The footnotes in the document, keyed by footnote ID.
40123 "content": [ # The contents of the footnote.
40125 # The indexes for a footnote's content begin at zero.
40126 { # A StructuralElement describes content that provides structure to the
40128 … "endIndex": 42, # The zero-based end index of this structural element, exclusive, in UTF-16
40131 # section break. A section is a range of content which has the same
40133 # the start of a new section, and the section style applies to the section
40134 # after the section break.
40136 # The document body always begins with a section break.
40137 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
40141 …"sectionStyle": { # The styling that applies to a section. # The style of the section after this s…
40142 …"contentDirection": "A String", # The content direction of this section. If unset, the value defau…
40144 "columnProperties": [ # The section's columns properties.
40146 # If empty, the section contains one column with the default properties in
40147 # the Docs editor.
40149 … "width": { # A magnitude in a single direction in the specified units. # The width of the column.
40150 "magnitude": 3.14, # The magnitude.
40151 "unit": "A String", # The units for magnitude.
40153 …ingEnd": { # A magnitude in a single direction in the specified units. # The padding at the end of…
40154 "magnitude": 3.14, # The magnitude.
40155 "unit": "A String", # The units for magnitude.
40159 "columnSeparatorStyle": "A String", # The style of column separators.
40161 # This style can be set even when there is one column in the section.
40163 …"suggestedInsertionIds": [ # The suggested insertion IDs. A SectionBreak may have multiple inserti…
40171 "content": [ # The content of the table of contents.
40174 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
40178 …"suggestedInsertionIds": [ # The suggested insertion IDs. A TableOfContents may have multiple inse…
40184 … "startIndex": 42, # The zero-based start index of this structural element, in UTF-16 code
40189 "elements": [ # The content of the paragraph broken down into its component parts.
40192 … "endIndex": 42, # The zero-base end index of this paragraph element, exclusive, in UTF-16
40196 "suggestedInsertionIds": [ # The suggested insertion IDs. A Equation
40201 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
40207 # column break. A column break makes the subsequent text start at the top of
40208 # the next column.
40209 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Colu…
40211 … # Similar to text content, like text runs and footnote references, the text
40212 … # style of a column break can affect content layout as well as the styling of
40216 # text style's parent depends on where the text style is defined:
40218 # * The TextStyle of text in a Paragraph
40219 # inherits from the paragraph's corresponding named style type.
40220 # * The TextStyle on a named style
40221 # inherits from the normal text named style.
40222 # * The TextStyle of the normal text named style inherits
40223 # from the default text style in the Docs editor.
40224 # * The TextStyle on a Paragraph element
40225 … # that is contained in a table may inherit its text style from the table
40228 # If the text style does not inherit from a parent, unsetting fields will
40229 # revert the style to a value matching the defaults in the Docs editor.
40230 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
40231 # or transparent, depending on the `color` field.
40234 "rgbColor": { # An RGB color. # The RGB color value.
40235 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
40236 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
40237 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
40241 "italic": True or False, # Whether or not the text is italicized.
40242 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
40245 … # rendered in a smaller font size, computed based on the `font_size` field.
40246 # The `font_size` itself is not affected by changes in this field.
40247 "strikethrough": True or False, # Whether or not the text is struck through.
40248 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
40251 # `bold`, the `weighted_font_family` is applied first, then `bold`.
40258 "fontFamily": "A String", # The font family of the text.
40260 # The font family can be any font from the Font menu in Docs or from
40261 # [Google Fonts] (https://fonts.google.com/). If the font name is
40262 # unrecognized, the text is rendered in `Arial`.
40263 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
40264 … # `100` between `100` and `900`, inclusive. This range corresponds to the
40265 # numerical values described in the CSS 2.1 Specification,
40269 # The default value is `400` ("normal").
40271 … # The font weight makes up just one component of the rendered font weight.
40272 … # The rendered weight is determined by a combination of the `weight` and the
40275 … # * If the text is bold and the weight is less than `400`, the rendered
40277 … # * If the text is bold and the weight is greater than or equal to `400` but
40278 # is less than `700`, the rendered weight is `700`.
40279 … # * If the weight is greater than or equal to `700`, the rendered weight is
40280 # equal to the weight.
40281 … # * If the text is not bold, the rendered weight is equal to the weight.
40283 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
40284 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
40285 "magnitude": 3.14, # The magnitude.
40286 "unit": "A String", # The units for magnitude.
40288 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
40289 # or transparent, depending on the `color` field.
40292 "rgbColor": { # An RGB color. # The RGB color value.
40293 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
40294 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
40295 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
40299 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
40302 … # Changing the link in an update request causes some other changes to the
40303 # text style of the range:
40305 … # * When setting a link, the text foreground color will be updated to the
40306 … # default link color and the text will be underlined. If these fields are
40307 … # modified in the same request, those values will be used instead of the
40310 # also update the existing link to point to the new URL.
40313 # will separate the newline character(s) into their own text runs. The
40314 … # link will be applied separately to the runs before and after the newline.
40315 # * Removing a link will update the text style of the range to match the
40316 … # style of the preceding text (or the default text styles if the preceding
40317 … # text is another link) unless different styles are being set in the same
40319 "headingId": "A String", # The ID of a heading in this document.
40321 "bookmarkId": "A String", # The ID of a bookmark in this document.
40323 "underline": True or False, # Whether or not the text is underlined.
40324 "bold": True or False, # Whether or not the text is rendered as bold.
40326 …"suggestedInsertionIds": [ # The suggested insertion IDs. A ColumnBreak may have multiple insertio…
40331 …"suggestedTextStyleChanges": { # The suggested text style changes to this ColumnBreak, keyed by su…
40334 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
40335 # the changes made in this suggestion. This can be used along with the
40340 # text style's parent depends on where the text style is defined:
40342 # * The TextStyle of text in a Paragraph
40343 # inherits from the paragraph's corresponding named style type.
40344 # * The TextStyle on a named style
40345 # inherits from the normal text named style.
40346 # * The TextStyle of the normal text named style inherits
40347 # from the default text style in the Docs editor.
40348 # * The TextStyle on a Paragraph element
40349 … # that is contained in a table may inherit its text style from the table
40352 … # If the text style does not inherit from a parent, unsetting fields will
40353 … # revert the style to a value matching the defaults in the Docs editor.
40354 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
40355 # or transparent, depending on the `color` field.
40358 "rgbColor": { # An RGB color. # The RGB color value.
40359 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
40360 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
40361 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
40365 "italic": True or False, # Whether or not the text is italicized.
40366 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
40369 … # rendered in a smaller font size, computed based on the `font_size` field.
40370 # The `font_size` itself is not affected by changes in this field.
40371 … "strikethrough": True or False, # Whether or not the text is struck through.
40372 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
40375 # `bold`, the `weighted_font_family` is applied first, then `bold`.
40382 "fontFamily": "A String", # The font family of the text.
40384 … # The font family can be any font from the Font menu in Docs or from
40385 # [Google Fonts] (https://fonts.google.com/). If the font name is
40386 # unrecognized, the text is rendered in `Arial`.
40387 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
40388 … # `100` between `100` and `900`, inclusive. This range corresponds to the
40389 # numerical values described in the CSS 2.1 Specification,
40393 # The default value is `400` ("normal").
40395 … # The font weight makes up just one component of the rendered font weight.
40396 … # The rendered weight is determined by a combination of the `weight` and the
40399 … # * If the text is bold and the weight is less than `400`, the rendered
40401 … # * If the text is bold and the weight is greater than or equal to `400` but
40402 # is less than `700`, the rendered weight is `700`.
40403 … # * If the weight is greater than or equal to `700`, the rendered weight is
40404 # equal to the weight.
40405 … # * If the text is not bold, the rendered weight is equal to the weight.
40407 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
40408 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
40409 "magnitude": 3.14, # The magnitude.
40410 "unit": "A String", # The units for magnitude.
40412 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
40413 # or transparent, depending on the `color` field.
40416 "rgbColor": { # An RGB color. # The RGB color value.
40417 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
40418 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
40419 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
40423 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
40426 … # Changing the link in an update request causes some other changes to the
40427 # text style of the range:
40429 … # * When setting a link, the text foreground color will be updated to the
40430 … # default link color and the text will be underlined. If these fields are
40431 … # modified in the same request, those values will be used instead of the
40434 # also update the existing link to point to the new URL.
40437 … # will separate the newline character(s) into their own text runs. The
40438 … # link will be applied separately to the runs before and after the newline.
40439 … # * Removing a link will update the text style of the range to match the
40440 … # style of the preceding text (or the default text styles if the preceding
40441 … # text is another link) unless different styles are being set in the same
40443 "headingId": "A String", # The ID of a heading in this document.
40445 "bookmarkId": "A String", # The ID of a bookmark in this document.
40447 "underline": True or False, # Whether or not the text is underlined.
40448 "bold": True or False, # Whether or not the text is rendered as bold.
40450 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
40466 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
40471 … "startIndex": 42, # The zero-based start index of this paragraph element, in UTF-16 code units.
40473 # page break. A page break makes the subsequent text start at the top of the
40475 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Page…
40477 … # Similar to text content, like text runs and footnote references, the text
40478 … # style of a page break can affect content layout as well as the styling of
40482 # text style's parent depends on where the text style is defined:
40484 # * The TextStyle of text in a Paragraph
40485 # inherits from the paragraph's corresponding named style type.
40486 # * The TextStyle on a named style
40487 # inherits from the normal text named style.
40488 # * The TextStyle of the normal text named style inherits
40489 # from the default text style in the Docs editor.
40490 # * The TextStyle on a Paragraph element
40491 … # that is contained in a table may inherit its text style from the table
40494 # If the text style does not inherit from a parent, unsetting fields will
40495 # revert the style to a value matching the defaults in the Docs editor.
40496 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
40497 # or transparent, depending on the `color` field.
40500 "rgbColor": { # An RGB color. # The RGB color value.
40501 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
40502 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
40503 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
40507 "italic": True or False, # Whether or not the text is italicized.
40508 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
40511 … # rendered in a smaller font size, computed based on the `font_size` field.
40512 # The `font_size` itself is not affected by changes in this field.
40513 "strikethrough": True or False, # Whether or not the text is struck through.
40514 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
40517 # `bold`, the `weighted_font_family` is applied first, then `bold`.
40524 "fontFamily": "A String", # The font family of the text.
40526 # The font family can be any font from the Font menu in Docs or from
40527 # [Google Fonts] (https://fonts.google.com/). If the font name is
40528 # unrecognized, the text is rendered in `Arial`.
40529 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
40530 … # `100` between `100` and `900`, inclusive. This range corresponds to the
40531 # numerical values described in the CSS 2.1 Specification,
40535 # The default value is `400` ("normal").
40537 … # The font weight makes up just one component of the rendered font weight.
40538 … # The rendered weight is determined by a combination of the `weight` and the
40541 … # * If the text is bold and the weight is less than `400`, the rendered
40543 … # * If the text is bold and the weight is greater than or equal to `400` but
40544 # is less than `700`, the rendered weight is `700`.
40545 … # * If the weight is greater than or equal to `700`, the rendered weight is
40546 # equal to the weight.
40547 … # * If the text is not bold, the rendered weight is equal to the weight.
40549 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
40550 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
40551 "magnitude": 3.14, # The magnitude.
40552 "unit": "A String", # The units for magnitude.
40554 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
40555 # or transparent, depending on the `color` field.
40558 "rgbColor": { # An RGB color. # The RGB color value.
40559 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
40560 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
40561 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
40565 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
40568 … # Changing the link in an update request causes some other changes to the
40569 # text style of the range:
40571 … # * When setting a link, the text foreground color will be updated to the
40572 … # default link color and the text will be underlined. If these fields are
40573 … # modified in the same request, those values will be used instead of the
40576 # also update the existing link to point to the new URL.
40579 # will separate the newline character(s) into their own text runs. The
40580 … # link will be applied separately to the runs before and after the newline.
40581 # * Removing a link will update the text style of the range to match the
40582 … # style of the preceding text (or the default text styles if the preceding
40583 … # text is another link) unless different styles are being set in the same
40585 "headingId": "A String", # The ID of a heading in this document.
40587 "bookmarkId": "A String", # The ID of a bookmark in this document.
40589 "underline": True or False, # Whether or not the text is underlined.
40590 "bold": True or False, # Whether or not the text is rendered as bold.
40592 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
40596 …"suggestedTextStyleChanges": { # The suggested text style changes to this PageBreak, keyed by sugg…
40598 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
40599 # the changes made in this suggestion. This can be used along with the
40604 # text style's parent depends on where the text style is defined:
40606 # * The TextStyle of text in a Paragraph
40607 # inherits from the paragraph's corresponding named style type.
40608 # * The TextStyle on a named style
40609 # inherits from the normal text named style.
40610 # * The TextStyle of the normal text named style inherits
40611 # from the default text style in the Docs editor.
40612 # * The TextStyle on a Paragraph element
40613 … # that is contained in a table may inherit its text style from the table
40616 … # If the text style does not inherit from a parent, unsetting fields will
40617 … # revert the style to a value matching the defaults in the Docs editor.
40618 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
40619 # or transparent, depending on the `color` field.
40622 "rgbColor": { # An RGB color. # The RGB color value.
40623 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
40624 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
40625 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
40629 "italic": True or False, # Whether or not the text is italicized.
40630 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
40633 … # rendered in a smaller font size, computed based on the `font_size` field.
40634 # The `font_size` itself is not affected by changes in this field.
40635 … "strikethrough": True or False, # Whether or not the text is struck through.
40636 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
40639 # `bold`, the `weighted_font_family` is applied first, then `bold`.
40646 "fontFamily": "A String", # The font family of the text.
40648 … # The font family can be any font from the Font menu in Docs or from
40649 # [Google Fonts] (https://fonts.google.com/). If the font name is
40650 # unrecognized, the text is rendered in `Arial`.
40651 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
40652 … # `100` between `100` and `900`, inclusive. This range corresponds to the
40653 # numerical values described in the CSS 2.1 Specification,
40657 # The default value is `400` ("normal").
40659 … # The font weight makes up just one component of the rendered font weight.
40660 … # The rendered weight is determined by a combination of the `weight` and the
40663 … # * If the text is bold and the weight is less than `400`, the rendered
40665 … # * If the text is bold and the weight is greater than or equal to `400` but
40666 # is less than `700`, the rendered weight is `700`.
40667 … # * If the weight is greater than or equal to `700`, the rendered weight is
40668 # equal to the weight.
40669 … # * If the text is not bold, the rendered weight is equal to the weight.
40671 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
40672 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
40673 "magnitude": 3.14, # The magnitude.
40674 "unit": "A String", # The units for magnitude.
40676 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
40677 # or transparent, depending on the `color` field.
40680 "rgbColor": { # An RGB color. # The RGB color value.
40681 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
40682 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
40683 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
40687 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
40690 … # Changing the link in an update request causes some other changes to the
40691 # text style of the range:
40693 … # * When setting a link, the text foreground color will be updated to the
40694 … # default link color and the text will be underlined. If these fields are
40695 … # modified in the same request, those values will be used instead of the
40698 # also update the existing link to point to the new URL.
40701 … # will separate the newline character(s) into their own text runs. The
40702 … # link will be applied separately to the runs before and after the newline.
40703 … # * Removing a link will update the text style of the range to match the
40704 … # style of the preceding text (or the default text styles if the preceding
40705 … # text is another link) unless different styles are being set in the same
40707 "headingId": "A String", # The ID of a heading in this document.
40709 "bookmarkId": "A String", # The ID of a bookmark in this document.
40711 "underline": True or False, # Whether or not the text is underlined.
40712 "bold": True or False, # Whether or not the text is rendered as bold.
40714 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
40730 "suggestedInsertionIds": [ # The suggested insertion IDs. A PageBreak
40738 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Hori…
40740 … # Similar to text content, like text runs and footnote references, the text
40741 … # style of a horizontal rule can affect content layout as well as the styling
40745 # text style's parent depends on where the text style is defined:
40747 # * The TextStyle of text in a Paragraph
40748 # inherits from the paragraph's corresponding named style type.
40749 # * The TextStyle on a named style
40750 # inherits from the normal text named style.
40751 # * The TextStyle of the normal text named style inherits
40752 # from the default text style in the Docs editor.
40753 # * The TextStyle on a Paragraph element
40754 … # that is contained in a table may inherit its text style from the table
40757 # If the text style does not inherit from a parent, unsetting fields will
40758 # revert the style to a value matching the defaults in the Docs editor.
40759 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
40760 # or transparent, depending on the `color` field.
40763 "rgbColor": { # An RGB color. # The RGB color value.
40764 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
40765 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
40766 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
40770 "italic": True or False, # Whether or not the text is italicized.
40771 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
40774 … # rendered in a smaller font size, computed based on the `font_size` field.
40775 # The `font_size` itself is not affected by changes in this field.
40776 "strikethrough": True or False, # Whether or not the text is struck through.
40777 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
40780 # `bold`, the `weighted_font_family` is applied first, then `bold`.
40787 "fontFamily": "A String", # The font family of the text.
40789 # The font family can be any font from the Font menu in Docs or from
40790 # [Google Fonts] (https://fonts.google.com/). If the font name is
40791 # unrecognized, the text is rendered in `Arial`.
40792 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
40793 … # `100` between `100` and `900`, inclusive. This range corresponds to the
40794 # numerical values described in the CSS 2.1 Specification,
40798 # The default value is `400` ("normal").
40800 … # The font weight makes up just one component of the rendered font weight.
40801 … # The rendered weight is determined by a combination of the `weight` and the
40804 … # * If the text is bold and the weight is less than `400`, the rendered
40806 … # * If the text is bold and the weight is greater than or equal to `400` but
40807 # is less than `700`, the rendered weight is `700`.
40808 … # * If the weight is greater than or equal to `700`, the rendered weight is
40809 # equal to the weight.
40810 … # * If the text is not bold, the rendered weight is equal to the weight.
40812 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
40813 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
40814 "magnitude": 3.14, # The magnitude.
40815 "unit": "A String", # The units for magnitude.
40817 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
40818 # or transparent, depending on the `color` field.
40821 "rgbColor": { # An RGB color. # The RGB color value.
40822 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
40823 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
40824 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
40828 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
40831 … # Changing the link in an update request causes some other changes to the
40832 # text style of the range:
40834 … # * When setting a link, the text foreground color will be updated to the
40835 … # default link color and the text will be underlined. If these fields are
40836 … # modified in the same request, those values will be used instead of the
40839 # also update the existing link to point to the new URL.
40842 # will separate the newline character(s) into their own text runs. The
40843 … # link will be applied separately to the runs before and after the newline.
40844 # * Removing a link will update the text style of the range to match the
40845 … # style of the preceding text (or the default text styles if the preceding
40846 … # text is another link) unless different styles are being set in the same
40848 "headingId": "A String", # The ID of a heading in this document.
40850 "bookmarkId": "A String", # The ID of a bookmark in this document.
40852 "underline": True or False, # Whether or not the text is underlined.
40853 "bold": True or False, # Whether or not the text is rendered as bold.
40855 …"suggestedInsertionIds": [ # The suggested insertion IDs. A HorizontalRule may have multiple inser…
40860 … "suggestedTextStyleChanges": { # The suggested text style changes to this HorizontalRule, keyed by
40863 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
40864 # the changes made in this suggestion. This can be used along with the
40869 # text style's parent depends on where the text style is defined:
40871 # * The TextStyle of text in a Paragraph
40872 # inherits from the paragraph's corresponding named style type.
40873 # * The TextStyle on a named style
40874 # inherits from the normal text named style.
40875 # * The TextStyle of the normal text named style inherits
40876 # from the default text style in the Docs editor.
40877 # * The TextStyle on a Paragraph element
40878 … # that is contained in a table may inherit its text style from the table
40881 … # If the text style does not inherit from a parent, unsetting fields will
40882 … # revert the style to a value matching the defaults in the Docs editor.
40883 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
40884 # or transparent, depending on the `color` field.
40887 "rgbColor": { # An RGB color. # The RGB color value.
40888 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
40889 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
40890 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
40894 "italic": True or False, # Whether or not the text is italicized.
40895 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
40898 … # rendered in a smaller font size, computed based on the `font_size` field.
40899 # The `font_size` itself is not affected by changes in this field.
40900 … "strikethrough": True or False, # Whether or not the text is struck through.
40901 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
40904 # `bold`, the `weighted_font_family` is applied first, then `bold`.
40911 "fontFamily": "A String", # The font family of the text.
40913 … # The font family can be any font from the Font menu in Docs or from
40914 # [Google Fonts] (https://fonts.google.com/). If the font name is
40915 # unrecognized, the text is rendered in `Arial`.
40916 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
40917 … # `100` between `100` and `900`, inclusive. This range corresponds to the
40918 # numerical values described in the CSS 2.1 Specification,
40922 # The default value is `400` ("normal").
40924 … # The font weight makes up just one component of the rendered font weight.
40925 … # The rendered weight is determined by a combination of the `weight` and the
40928 … # * If the text is bold and the weight is less than `400`, the rendered
40930 … # * If the text is bold and the weight is greater than or equal to `400` but
40931 # is less than `700`, the rendered weight is `700`.
40932 … # * If the weight is greater than or equal to `700`, the rendered weight is
40933 # equal to the weight.
40934 … # * If the text is not bold, the rendered weight is equal to the weight.
40936 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
40937 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
40938 "magnitude": 3.14, # The magnitude.
40939 "unit": "A String", # The units for magnitude.
40941 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
40942 # or transparent, depending on the `color` field.
40945 "rgbColor": { # An RGB color. # The RGB color value.
40946 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
40947 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
40948 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
40952 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
40955 … # Changing the link in an update request causes some other changes to the
40956 # text style of the range:
40958 … # * When setting a link, the text foreground color will be updated to the
40959 … # default link color and the text will be underlined. If these fields are
40960 … # modified in the same request, those values will be used instead of the
40963 # also update the existing link to point to the new URL.
40966 … # will separate the newline character(s) into their own text runs. The
40967 … # link will be applied separately to the runs before and after the newline.
40968 … # * Removing a link will update the text style of the range to match the
40969 … # style of the preceding text (or the default text styles if the preceding
40970 … # text is another link) unless different styles are being set in the same
40972 "headingId": "A String", # The ID of a heading in this document.
40974 "bookmarkId": "A String", # The ID of a bookmark in this document.
40976 "underline": True or False, # Whether or not the text is underlined.
40977 "bold": True or False, # Whether or not the text is rendered as bold.
40979 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
40995 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
41001 # run of text that all has the same styling.
41002 "content": "A String", # The text of this run.
41004 # Any non-text elements in the run are replaced with the Unicode character
41006 … "textStyle": { # Represents the styling that can be applied to text. # The text style of this run.
41009 # text style's parent depends on where the text style is defined:
41011 # * The TextStyle of text in a Paragraph
41012 # inherits from the paragraph's corresponding named style type.
41013 # * The TextStyle on a named style
41014 # inherits from the normal text named style.
41015 # * The TextStyle of the normal text named style inherits
41016 # from the default text style in the Docs editor.
41017 # * The TextStyle on a Paragraph element
41018 … # that is contained in a table may inherit its text style from the table
41021 # If the text style does not inherit from a parent, unsetting fields will
41022 # revert the style to a value matching the defaults in the Docs editor.
41023 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
41024 # or transparent, depending on the `color` field.
41027 "rgbColor": { # An RGB color. # The RGB color value.
41028 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
41029 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
41030 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
41034 "italic": True or False, # Whether or not the text is italicized.
41035 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
41038 … # rendered in a smaller font size, computed based on the `font_size` field.
41039 # The `font_size` itself is not affected by changes in this field.
41040 "strikethrough": True or False, # Whether or not the text is struck through.
41041 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
41044 # `bold`, the `weighted_font_family` is applied first, then `bold`.
41051 "fontFamily": "A String", # The font family of the text.
41053 # The font family can be any font from the Font menu in Docs or from
41054 # [Google Fonts] (https://fonts.google.com/). If the font name is
41055 # unrecognized, the text is rendered in `Arial`.
41056 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
41057 … # `100` between `100` and `900`, inclusive. This range corresponds to the
41058 # numerical values described in the CSS 2.1 Specification,
41062 # The default value is `400` ("normal").
41064 … # The font weight makes up just one component of the rendered font weight.
41065 … # The rendered weight is determined by a combination of the `weight` and the
41068 … # * If the text is bold and the weight is less than `400`, the rendered
41070 … # * If the text is bold and the weight is greater than or equal to `400` but
41071 # is less than `700`, the rendered weight is `700`.
41072 … # * If the weight is greater than or equal to `700`, the rendered weight is
41073 # equal to the weight.
41074 … # * If the text is not bold, the rendered weight is equal to the weight.
41076 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
41077 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
41078 "magnitude": 3.14, # The magnitude.
41079 "unit": "A String", # The units for magnitude.
41081 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
41082 # or transparent, depending on the `color` field.
41085 "rgbColor": { # An RGB color. # The RGB color value.
41086 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
41087 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
41088 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
41092 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
41095 … # Changing the link in an update request causes some other changes to the
41096 # text style of the range:
41098 … # * When setting a link, the text foreground color will be updated to the
41099 … # default link color and the text will be underlined. If these fields are
41100 … # modified in the same request, those values will be used instead of the
41103 # also update the existing link to point to the new URL.
41106 # will separate the newline character(s) into their own text runs. The
41107 … # link will be applied separately to the runs before and after the newline.
41108 # * Removing a link will update the text style of the range to match the
41109 … # style of the preceding text (or the default text styles if the preceding
41110 … # text is another link) unless different styles are being set in the same
41112 "headingId": "A String", # The ID of a heading in this document.
41114 "bookmarkId": "A String", # The ID of a bookmark in this document.
41116 "underline": True or False, # Whether or not the text is underlined.
41117 "bold": True or False, # Whether or not the text is rendered as bold.
41119 "suggestedInsertionIds": [ # The suggested insertion IDs. A TextRun may
41124 …"suggestedTextStyleChanges": { # The suggested text style changes to this run, keyed by suggestion…
41126 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
41127 # the changes made in this suggestion. This can be used along with the
41132 # text style's parent depends on where the text style is defined:
41134 # * The TextStyle of text in a Paragraph
41135 # inherits from the paragraph's corresponding named style type.
41136 # * The TextStyle on a named style
41137 # inherits from the normal text named style.
41138 # * The TextStyle of the normal text named style inherits
41139 # from the default text style in the Docs editor.
41140 # * The TextStyle on a Paragraph element
41141 … # that is contained in a table may inherit its text style from the table
41144 … # If the text style does not inherit from a parent, unsetting fields will
41145 … # revert the style to a value matching the defaults in the Docs editor.
41146 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
41147 # or transparent, depending on the `color` field.
41150 "rgbColor": { # An RGB color. # The RGB color value.
41151 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
41152 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
41153 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
41157 "italic": True or False, # Whether or not the text is italicized.
41158 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
41161 … # rendered in a smaller font size, computed based on the `font_size` field.
41162 # The `font_size` itself is not affected by changes in this field.
41163 … "strikethrough": True or False, # Whether or not the text is struck through.
41164 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
41167 # `bold`, the `weighted_font_family` is applied first, then `bold`.
41174 "fontFamily": "A String", # The font family of the text.
41176 … # The font family can be any font from the Font menu in Docs or from
41177 # [Google Fonts] (https://fonts.google.com/). If the font name is
41178 # unrecognized, the text is rendered in `Arial`.
41179 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
41180 … # `100` between `100` and `900`, inclusive. This range corresponds to the
41181 # numerical values described in the CSS 2.1 Specification,
41185 # The default value is `400` ("normal").
41187 … # The font weight makes up just one component of the rendered font weight.
41188 … # The rendered weight is determined by a combination of the `weight` and the
41191 … # * If the text is bold and the weight is less than `400`, the rendered
41193 … # * If the text is bold and the weight is greater than or equal to `400` but
41194 # is less than `700`, the rendered weight is `700`.
41195 … # * If the weight is greater than or equal to `700`, the rendered weight is
41196 # equal to the weight.
41197 … # * If the text is not bold, the rendered weight is equal to the weight.
41199 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
41200 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
41201 "magnitude": 3.14, # The magnitude.
41202 "unit": "A String", # The units for magnitude.
41204 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
41205 # or transparent, depending on the `color` field.
41208 "rgbColor": { # An RGB color. # The RGB color value.
41209 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
41210 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
41211 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
41215 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
41218 … # Changing the link in an update request causes some other changes to the
41219 # text style of the range:
41221 … # * When setting a link, the text foreground color will be updated to the
41222 … # default link color and the text will be underlined. If these fields are
41223 … # modified in the same request, those values will be used instead of the
41226 # also update the existing link to point to the new URL.
41229 … # will separate the newline character(s) into their own text runs. The
41230 … # link will be applied separately to the runs before and after the newline.
41231 … # * Removing a link will update the text style of the range to match the
41232 … # style of the preceding text (or the default text styles if the preceding
41233 … # text is another link) unless different styles are being set in the same
41235 "headingId": "A String", # The ID of a heading in this document.
41237 "bookmarkId": "A String", # The ID of a bookmark in this document.
41239 "underline": True or False, # Whether or not the text is underlined.
41240 "bold": True or False, # Whether or not the text is rendered as bold.
41242 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
41258 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
41264 # spot in the text that is dynamically replaced with content that can change
41266 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Auto…
41269 # text style's parent depends on where the text style is defined:
41271 # * The TextStyle of text in a Paragraph
41272 # inherits from the paragraph's corresponding named style type.
41273 # * The TextStyle on a named style
41274 # inherits from the normal text named style.
41275 # * The TextStyle of the normal text named style inherits
41276 # from the default text style in the Docs editor.
41277 # * The TextStyle on a Paragraph element
41278 … # that is contained in a table may inherit its text style from the table
41281 # If the text style does not inherit from a parent, unsetting fields will
41282 # revert the style to a value matching the defaults in the Docs editor.
41283 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
41284 # or transparent, depending on the `color` field.
41287 "rgbColor": { # An RGB color. # The RGB color value.
41288 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
41289 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
41290 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
41294 "italic": True or False, # Whether or not the text is italicized.
41295 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
41298 … # rendered in a smaller font size, computed based on the `font_size` field.
41299 # The `font_size` itself is not affected by changes in this field.
41300 "strikethrough": True or False, # Whether or not the text is struck through.
41301 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
41304 # `bold`, the `weighted_font_family` is applied first, then `bold`.
41311 "fontFamily": "A String", # The font family of the text.
41313 # The font family can be any font from the Font menu in Docs or from
41314 # [Google Fonts] (https://fonts.google.com/). If the font name is
41315 # unrecognized, the text is rendered in `Arial`.
41316 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
41317 … # `100` between `100` and `900`, inclusive. This range corresponds to the
41318 # numerical values described in the CSS 2.1 Specification,
41322 # The default value is `400` ("normal").
41324 … # The font weight makes up just one component of the rendered font weight.
41325 … # The rendered weight is determined by a combination of the `weight` and the
41328 … # * If the text is bold and the weight is less than `400`, the rendered
41330 … # * If the text is bold and the weight is greater than or equal to `400` but
41331 # is less than `700`, the rendered weight is `700`.
41332 … # * If the weight is greater than or equal to `700`, the rendered weight is
41333 # equal to the weight.
41334 … # * If the text is not bold, the rendered weight is equal to the weight.
41336 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
41337 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
41338 "magnitude": 3.14, # The magnitude.
41339 "unit": "A String", # The units for magnitude.
41341 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
41342 # or transparent, depending on the `color` field.
41345 "rgbColor": { # An RGB color. # The RGB color value.
41346 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
41347 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
41348 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
41352 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
41355 … # Changing the link in an update request causes some other changes to the
41356 # text style of the range:
41358 … # * When setting a link, the text foreground color will be updated to the
41359 … # default link color and the text will be underlined. If these fields are
41360 … # modified in the same request, those values will be used instead of the
41363 # also update the existing link to point to the new URL.
41366 # will separate the newline character(s) into their own text runs. The
41367 … # link will be applied separately to the runs before and after the newline.
41368 # * Removing a link will update the text style of the range to match the
41369 … # style of the preceding text (or the default text styles if the preceding
41370 … # text is another link) unless different styles are being set in the same
41372 "headingId": "A String", # The ID of a heading in this document.
41374 "bookmarkId": "A String", # The ID of a bookmark in this document.
41376 "underline": True or False, # Whether or not the text is underlined.
41377 "bold": True or False, # Whether or not the text is rendered as bold.
41379 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
41383 …"suggestedTextStyleChanges": { # The suggested text style changes to this AutoText, keyed by sugge…
41385 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
41386 # the changes made in this suggestion. This can be used along with the
41391 # text style's parent depends on where the text style is defined:
41393 # * The TextStyle of text in a Paragraph
41394 # inherits from the paragraph's corresponding named style type.
41395 # * The TextStyle on a named style
41396 # inherits from the normal text named style.
41397 # * The TextStyle of the normal text named style inherits
41398 # from the default text style in the Docs editor.
41399 # * The TextStyle on a Paragraph element
41400 … # that is contained in a table may inherit its text style from the table
41403 … # If the text style does not inherit from a parent, unsetting fields will
41404 … # revert the style to a value matching the defaults in the Docs editor.
41405 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
41406 # or transparent, depending on the `color` field.
41409 "rgbColor": { # An RGB color. # The RGB color value.
41410 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
41411 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
41412 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
41416 "italic": True or False, # Whether or not the text is italicized.
41417 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
41420 … # rendered in a smaller font size, computed based on the `font_size` field.
41421 # The `font_size` itself is not affected by changes in this field.
41422 … "strikethrough": True or False, # Whether or not the text is struck through.
41423 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
41426 # `bold`, the `weighted_font_family` is applied first, then `bold`.
41433 "fontFamily": "A String", # The font family of the text.
41435 … # The font family can be any font from the Font menu in Docs or from
41436 # [Google Fonts] (https://fonts.google.com/). If the font name is
41437 # unrecognized, the text is rendered in `Arial`.
41438 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
41439 … # `100` between `100` and `900`, inclusive. This range corresponds to the
41440 # numerical values described in the CSS 2.1 Specification,
41444 # The default value is `400` ("normal").
41446 … # The font weight makes up just one component of the rendered font weight.
41447 … # The rendered weight is determined by a combination of the `weight` and the
41450 … # * If the text is bold and the weight is less than `400`, the rendered
41452 … # * If the text is bold and the weight is greater than or equal to `400` but
41453 # is less than `700`, the rendered weight is `700`.
41454 … # * If the weight is greater than or equal to `700`, the rendered weight is
41455 # equal to the weight.
41456 … # * If the text is not bold, the rendered weight is equal to the weight.
41458 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
41459 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
41460 "magnitude": 3.14, # The magnitude.
41461 "unit": "A String", # The units for magnitude.
41463 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
41464 # or transparent, depending on the `color` field.
41467 "rgbColor": { # An RGB color. # The RGB color value.
41468 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
41469 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
41470 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
41474 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
41477 … # Changing the link in an update request causes some other changes to the
41478 # text style of the range:
41480 … # * When setting a link, the text foreground color will be updated to the
41481 … # default link color and the text will be underlined. If these fields are
41482 … # modified in the same request, those values will be used instead of the
41485 # also update the existing link to point to the new URL.
41488 … # will separate the newline character(s) into their own text runs. The
41489 … # link will be applied separately to the runs before and after the newline.
41490 … # * Removing a link will update the text style of the range to match the
41491 … # style of the preceding text (or the default text styles if the preceding
41492 … # text is another link) unless different styles are being set in the same
41494 "headingId": "A String", # The ID of a heading in this document.
41496 "bookmarkId": "A String", # The ID of a bookmark in this document.
41498 "underline": True or False, # Whether or not the text is underlined.
41499 "bold": True or False, # Whether or not the text is rendered as bold.
41501 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
41517 "type": "A String", # The type of this auto text.
41518 "suggestedInsertionIds": [ # The suggested insertion IDs. An AutoText
41526 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Inli…
41528 … # Similar to text content, like text runs and footnote references, the text
41529 … # style of an inline object element can affect content layout as well as the
41533 # text style's parent depends on where the text style is defined:
41535 # * The TextStyle of text in a Paragraph
41536 # inherits from the paragraph's corresponding named style type.
41537 # * The TextStyle on a named style
41538 # inherits from the normal text named style.
41539 # * The TextStyle of the normal text named style inherits
41540 # from the default text style in the Docs editor.
41541 # * The TextStyle on a Paragraph element
41542 … # that is contained in a table may inherit its text style from the table
41545 # If the text style does not inherit from a parent, unsetting fields will
41546 # revert the style to a value matching the defaults in the Docs editor.
41547 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
41548 # or transparent, depending on the `color` field.
41551 "rgbColor": { # An RGB color. # The RGB color value.
41552 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
41553 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
41554 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
41558 "italic": True or False, # Whether or not the text is italicized.
41559 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
41562 … # rendered in a smaller font size, computed based on the `font_size` field.
41563 # The `font_size` itself is not affected by changes in this field.
41564 "strikethrough": True or False, # Whether or not the text is struck through.
41565 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
41568 # `bold`, the `weighted_font_family` is applied first, then `bold`.
41575 "fontFamily": "A String", # The font family of the text.
41577 # The font family can be any font from the Font menu in Docs or from
41578 # [Google Fonts] (https://fonts.google.com/). If the font name is
41579 # unrecognized, the text is rendered in `Arial`.
41580 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
41581 … # `100` between `100` and `900`, inclusive. This range corresponds to the
41582 # numerical values described in the CSS 2.1 Specification,
41586 # The default value is `400` ("normal").
41588 … # The font weight makes up just one component of the rendered font weight.
41589 … # The rendered weight is determined by a combination of the `weight` and the
41592 … # * If the text is bold and the weight is less than `400`, the rendered
41594 … # * If the text is bold and the weight is greater than or equal to `400` but
41595 # is less than `700`, the rendered weight is `700`.
41596 … # * If the weight is greater than or equal to `700`, the rendered weight is
41597 # equal to the weight.
41598 … # * If the text is not bold, the rendered weight is equal to the weight.
41600 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
41601 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
41602 "magnitude": 3.14, # The magnitude.
41603 "unit": "A String", # The units for magnitude.
41605 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
41606 # or transparent, depending on the `color` field.
41609 "rgbColor": { # An RGB color. # The RGB color value.
41610 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
41611 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
41612 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
41616 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
41619 … # Changing the link in an update request causes some other changes to the
41620 # text style of the range:
41622 … # * When setting a link, the text foreground color will be updated to the
41623 … # default link color and the text will be underlined. If these fields are
41624 … # modified in the same request, those values will be used instead of the
41627 # also update the existing link to point to the new URL.
41630 # will separate the newline character(s) into their own text runs. The
41631 … # link will be applied separately to the runs before and after the newline.
41632 # * Removing a link will update the text style of the range to match the
41633 … # style of the preceding text (or the default text styles if the preceding
41634 … # text is another link) unless different styles are being set in the same
41636 "headingId": "A String", # The ID of a heading in this document.
41638 "bookmarkId": "A String", # The ID of a bookmark in this document.
41640 "underline": True or False, # Whether or not the text is underlined.
41641 "bold": True or False, # Whether or not the text is rendered as bold.
41643 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
41647 …"suggestedTextStyleChanges": { # The suggested text style changes to this InlineObject, keyed by s…
41650 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
41651 # the changes made in this suggestion. This can be used along with the
41656 # text style's parent depends on where the text style is defined:
41658 # * The TextStyle of text in a Paragraph
41659 # inherits from the paragraph's corresponding named style type.
41660 # * The TextStyle on a named style
41661 # inherits from the normal text named style.
41662 # * The TextStyle of the normal text named style inherits
41663 # from the default text style in the Docs editor.
41664 # * The TextStyle on a Paragraph element
41665 … # that is contained in a table may inherit its text style from the table
41668 … # If the text style does not inherit from a parent, unsetting fields will
41669 … # revert the style to a value matching the defaults in the Docs editor.
41670 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
41671 # or transparent, depending on the `color` field.
41674 "rgbColor": { # An RGB color. # The RGB color value.
41675 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
41676 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
41677 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
41681 "italic": True or False, # Whether or not the text is italicized.
41682 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
41685 … # rendered in a smaller font size, computed based on the `font_size` field.
41686 # The `font_size` itself is not affected by changes in this field.
41687 … "strikethrough": True or False, # Whether or not the text is struck through.
41688 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
41691 # `bold`, the `weighted_font_family` is applied first, then `bold`.
41698 "fontFamily": "A String", # The font family of the text.
41700 … # The font family can be any font from the Font menu in Docs or from
41701 # [Google Fonts] (https://fonts.google.com/). If the font name is
41702 # unrecognized, the text is rendered in `Arial`.
41703 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
41704 … # `100` between `100` and `900`, inclusive. This range corresponds to the
41705 # numerical values described in the CSS 2.1 Specification,
41709 # The default value is `400` ("normal").
41711 … # The font weight makes up just one component of the rendered font weight.
41712 … # The rendered weight is determined by a combination of the `weight` and the
41715 … # * If the text is bold and the weight is less than `400`, the rendered
41717 … # * If the text is bold and the weight is greater than or equal to `400` but
41718 # is less than `700`, the rendered weight is `700`.
41719 … # * If the weight is greater than or equal to `700`, the rendered weight is
41720 # equal to the weight.
41721 … # * If the text is not bold, the rendered weight is equal to the weight.
41723 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
41724 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
41725 "magnitude": 3.14, # The magnitude.
41726 "unit": "A String", # The units for magnitude.
41728 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
41729 # or transparent, depending on the `color` field.
41732 "rgbColor": { # An RGB color. # The RGB color value.
41733 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
41734 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
41735 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
41739 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
41742 … # Changing the link in an update request causes some other changes to the
41743 # text style of the range:
41745 … # * When setting a link, the text foreground color will be updated to the
41746 … # default link color and the text will be underlined. If these fields are
41747 … # modified in the same request, those values will be used instead of the
41750 # also update the existing link to point to the new URL.
41753 … # will separate the newline character(s) into their own text runs. The
41754 … # link will be applied separately to the runs before and after the newline.
41755 … # * Removing a link will update the text style of the range to match the
41756 … # style of the preceding text (or the default text styles if the preceding
41757 … # text is another link) unless different styles are being set in the same
41759 "headingId": "A String", # The ID of a heading in this document.
41761 "bookmarkId": "A String", # The ID of a bookmark in this document.
41763 "underline": True or False, # Whether or not the text is underlined.
41764 "bold": True or False, # Whether or not the text is rendered as bold.
41766 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
41782 "inlineObjectId": "A String", # The ID of the InlineObject this
41784 …"suggestedInsertionIds": [ # The suggested insertion IDs. An InlineObjectElement may have multiple…
41791 … # footnote reference. A footnote reference is the inline content rendered with
41792 # a number and is used to identify the footnote.
41793 …"textStyle": { # Represents the styling that can be applied to text. # The text style of this Foot…
41796 # text style's parent depends on where the text style is defined:
41798 # * The TextStyle of text in a Paragraph
41799 # inherits from the paragraph's corresponding named style type.
41800 # * The TextStyle on a named style
41801 # inherits from the normal text named style.
41802 # * The TextStyle of the normal text named style inherits
41803 # from the default text style in the Docs editor.
41804 # * The TextStyle on a Paragraph element
41805 … # that is contained in a table may inherit its text style from the table
41808 # If the text style does not inherit from a parent, unsetting fields will
41809 # revert the style to a value matching the defaults in the Docs editor.
41810 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
41811 # or transparent, depending on the `color` field.
41814 "rgbColor": { # An RGB color. # The RGB color value.
41815 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
41816 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
41817 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
41821 "italic": True or False, # Whether or not the text is italicized.
41822 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
41825 … # rendered in a smaller font size, computed based on the `font_size` field.
41826 # The `font_size` itself is not affected by changes in this field.
41827 "strikethrough": True or False, # Whether or not the text is struck through.
41828 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
41831 # `bold`, the `weighted_font_family` is applied first, then `bold`.
41838 "fontFamily": "A String", # The font family of the text.
41840 # The font family can be any font from the Font menu in Docs or from
41841 # [Google Fonts] (https://fonts.google.com/). If the font name is
41842 # unrecognized, the text is rendered in `Arial`.
41843 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
41844 … # `100` between `100` and `900`, inclusive. This range corresponds to the
41845 # numerical values described in the CSS 2.1 Specification,
41849 # The default value is `400` ("normal").
41851 … # The font weight makes up just one component of the rendered font weight.
41852 … # The rendered weight is determined by a combination of the `weight` and the
41855 … # * If the text is bold and the weight is less than `400`, the rendered
41857 … # * If the text is bold and the weight is greater than or equal to `400` but
41858 # is less than `700`, the rendered weight is `700`.
41859 … # * If the weight is greater than or equal to `700`, the rendered weight is
41860 # equal to the weight.
41861 … # * If the text is not bold, the rendered weight is equal to the weight.
41863 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
41864 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
41865 "magnitude": 3.14, # The magnitude.
41866 "unit": "A String", # The units for magnitude.
41868 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
41869 # or transparent, depending on the `color` field.
41872 "rgbColor": { # An RGB color. # The RGB color value.
41873 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
41874 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
41875 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
41879 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
41882 … # Changing the link in an update request causes some other changes to the
41883 # text style of the range:
41885 … # * When setting a link, the text foreground color will be updated to the
41886 … # default link color and the text will be underlined. If these fields are
41887 … # modified in the same request, those values will be used instead of the
41890 # also update the existing link to point to the new URL.
41893 # will separate the newline character(s) into their own text runs. The
41894 … # link will be applied separately to the runs before and after the newline.
41895 # * Removing a link will update the text style of the range to match the
41896 … # style of the preceding text (or the default text styles if the preceding
41897 … # text is another link) unless different styles are being set in the same
41899 "headingId": "A String", # The ID of a heading in this document.
41901 "bookmarkId": "A String", # The ID of a bookmark in this document.
41903 "underline": True or False, # Whether or not the text is underlined.
41904 "bold": True or False, # Whether or not the text is rendered as bold.
41906 "footnoteNumber": "A String", # The rendered number of this footnote.
41907 …"suggestedInsertionIds": [ # The suggested insertion IDs. A FootnoteReference may have multiple in…
41912 "footnoteId": "A String", # The ID of the footnote that
41913 # contains the content of this footnote reference.
41914 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
41918 …"suggestedTextStyleChanges": { # The suggested text style changes to this FootnoteReference, keyed…
41921 …"textStyle": { # Represents the styling that can be applied to text. # A TextStyle that only inclu…
41922 # the changes made in this suggestion. This can be used along with the
41927 # text style's parent depends on where the text style is defined:
41929 # * The TextStyle of text in a Paragraph
41930 # inherits from the paragraph's corresponding named style type.
41931 # * The TextStyle on a named style
41932 # inherits from the normal text named style.
41933 # * The TextStyle of the normal text named style inherits
41934 # from the default text style in the Docs editor.
41935 # * The TextStyle on a Paragraph element
41936 … # that is contained in a table may inherit its text style from the table
41939 … # If the text style does not inherit from a parent, unsetting fields will
41940 … # revert the style to a value matching the defaults in the Docs editor.
41941 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
41942 # or transparent, depending on the `color` field.
41945 "rgbColor": { # An RGB color. # The RGB color value.
41946 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
41947 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
41948 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
41952 "italic": True or False, # Whether or not the text is italicized.
41953 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
41956 … # rendered in a smaller font size, computed based on the `font_size` field.
41957 # The `font_size` itself is not affected by changes in this field.
41958 … "strikethrough": True or False, # Whether or not the text is struck through.
41959 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
41962 # `bold`, the `weighted_font_family` is applied first, then `bold`.
41969 "fontFamily": "A String", # The font family of the text.
41971 … # The font family can be any font from the Font menu in Docs or from
41972 # [Google Fonts] (https://fonts.google.com/). If the font name is
41973 # unrecognized, the text is rendered in `Arial`.
41974 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
41975 … # `100` between `100` and `900`, inclusive. This range corresponds to the
41976 # numerical values described in the CSS 2.1 Specification,
41980 # The default value is `400` ("normal").
41982 … # The font weight makes up just one component of the rendered font weight.
41983 … # The rendered weight is determined by a combination of the `weight` and the
41986 … # * If the text is bold and the weight is less than `400`, the rendered
41988 … # * If the text is bold and the weight is greater than or equal to `400` but
41989 # is less than `700`, the rendered weight is `700`.
41990 … # * If the weight is greater than or equal to `700`, the rendered weight is
41991 # equal to the weight.
41992 … # * If the text is not bold, the rendered weight is equal to the weight.
41994 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
41995 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
41996 "magnitude": 3.14, # The magnitude.
41997 "unit": "A String", # The units for magnitude.
41999 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
42000 # or transparent, depending on the `color` field.
42003 "rgbColor": { # An RGB color. # The RGB color value.
42004 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
42005 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
42006 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
42010 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
42013 … # Changing the link in an update request causes some other changes to the
42014 # text style of the range:
42016 … # * When setting a link, the text foreground color will be updated to the
42017 … # default link color and the text will be underlined. If these fields are
42018 … # modified in the same request, those values will be used instead of the
42021 # also update the existing link to point to the new URL.
42024 … # will separate the newline character(s) into their own text runs. The
42025 … # link will be applied separately to the runs before and after the newline.
42026 … # * Removing a link will update the text style of the range to match the
42027 … # style of the preceding text (or the default text styles if the preceding
42028 … # text is another link) unless different styles are being set in the same
42030 "headingId": "A String", # The ID of a heading in this document.
42032 "bookmarkId": "A String", # The ID of a bookmark in this document.
42034 "underline": True or False, # Whether or not the text is underlined.
42035 "bold": True or False, # Whether or not the text is rendered as bold.
42037 …icates which of the fields on the base TextStyle have been changed in this suggestion. # A mask th…
42056 …"suggestedPositionedObjectIds": { # The IDs of the positioned objects that are suggested to be att…
42059 "objectIds": [ # The object IDs.
42064 …"bullet": { # Describes the bullet of a paragraph. # The bullet for this paragraph. If not present…
42066 "nestingLevel": 42, # The nesting level of this paragraph in the list.
42067 "listId": "A String", # The ID of the list this paragraph belongs to.
42068 …"textStyle": { # Represents the styling that can be applied to text. # The paragraph specific text…
42071 # text style's parent depends on where the text style is defined:
42073 # * The TextStyle of text in a Paragraph
42074 # inherits from the paragraph's corresponding named style type.
42075 # * The TextStyle on a named style
42076 # inherits from the normal text named style.
42077 # * The TextStyle of the normal text named style inherits
42078 # from the default text style in the Docs editor.
42079 # * The TextStyle on a Paragraph element
42080 # that is contained in a table may inherit its text style from the table
42083 # If the text style does not inherit from a parent, unsetting fields will
42084 # revert the style to a value matching the defaults in the Docs editor.
42085 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
42086 # or transparent, depending on the `color` field.
42089 "rgbColor": { # An RGB color. # The RGB color value.
42090 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
42091 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
42092 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
42096 "italic": True or False, # Whether or not the text is italicized.
42097 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
42100 # rendered in a smaller font size, computed based on the `font_size` field.
42101 # The `font_size` itself is not affected by changes in this field.
42102 "strikethrough": True or False, # Whether or not the text is struck through.
42103 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
42106 # `bold`, the `weighted_font_family` is applied first, then `bold`.
42113 "fontFamily": "A String", # The font family of the text.
42115 # The font family can be any font from the Font menu in Docs or from
42116 # [Google Fonts] (https://fonts.google.com/). If the font name is
42117 # unrecognized, the text is rendered in `Arial`.
42118 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
42119 # `100` between `100` and `900`, inclusive. This range corresponds to the
42120 # numerical values described in the CSS 2.1 Specification,
42124 # The default value is `400` ("normal").
42126 # The font weight makes up just one component of the rendered font weight.
42127 … # The rendered weight is determined by a combination of the `weight` and the
42130 # * If the text is bold and the weight is less than `400`, the rendered
42132 … # * If the text is bold and the weight is greater than or equal to `400` but
42133 # is less than `700`, the rendered weight is `700`.
42134 … # * If the weight is greater than or equal to `700`, the rendered weight is
42135 # equal to the weight.
42136 # * If the text is not bold, the rendered weight is equal to the weight.
42138 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
42139 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
42140 "magnitude": 3.14, # The magnitude.
42141 "unit": "A String", # The units for magnitude.
42143 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
42144 # or transparent, depending on the `color` field.
42147 "rgbColor": { # An RGB color. # The RGB color value.
42148 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
42149 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
42150 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
42154 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
42157 # Changing the link in an update request causes some other changes to the
42158 # text style of the range:
42160 # * When setting a link, the text foreground color will be updated to the
42161 # default link color and the text will be underlined. If these fields are
42162 # modified in the same request, those values will be used instead of the
42165 # also update the existing link to point to the new URL.
42168 # will separate the newline character(s) into their own text runs. The
42169 … # link will be applied separately to the runs before and after the newline.
42170 # * Removing a link will update the text style of the range to match the
42171 # style of the preceding text (or the default text styles if the preceding
42172 # text is another link) unless different styles are being set in the same
42174 "headingId": "A String", # The ID of a heading in this document.
42176 "bookmarkId": "A String", # The ID of a bookmark in this document.
42178 "underline": True or False, # Whether or not the text is underlined.
42179 "bold": True or False, # Whether or not the text is rendered as bold.
42182 "suggestedBulletChanges": { # The suggested changes to this paragraph's bullet.
42184 … "bullet": { # Describes the bullet of a paragraph. # A Bullet that only includes the changes made
42185 # in this suggestion. This can be used along with the
42188 "nestingLevel": 42, # The nesting level of this paragraph in the list.
42189 "listId": "A String", # The ID of the list this paragraph belongs to.
42190 …"textStyle": { # Represents the styling that can be applied to text. # The paragraph specific text…
42193 # text style's parent depends on where the text style is defined:
42195 # * The TextStyle of text in a Paragraph
42196 # inherits from the paragraph's corresponding named style type.
42197 # * The TextStyle on a named style
42198 # inherits from the normal text named style.
42199 # * The TextStyle of the normal text named style inherits
42200 # from the default text style in the Docs editor.
42201 # * The TextStyle on a Paragraph element
42202 … # that is contained in a table may inherit its text style from the table
42205 # If the text style does not inherit from a parent, unsetting fields will
42206 # revert the style to a value matching the defaults in the Docs editor.
42207 …at can either be fully opaque or fully transparent. # The foreground color of the text. If set, th…
42208 # or transparent, depending on the `color` field.
42211 "rgbColor": { # An RGB color. # The RGB color value.
42212 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
42213 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
42214 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
42218 "italic": True or False, # Whether or not the text is italicized.
42219 … "baselineOffset": "A String", # The text's vertical offset from its normal position.
42222 … # rendered in a smaller font size, computed based on the `font_size` field.
42223 # The `font_size` itself is not affected by changes in this field.
42224 "strikethrough": True or False, # Whether or not the text is struck through.
42225 …y": { # Represents a font family and weight of text. # The font family and rendered weight of the
42228 # `bold`, the `weighted_font_family` is applied first, then `bold`.
42235 "fontFamily": "A String", # The font family of the text.
42237 # The font family can be any font from the Font menu in Docs or from
42238 # [Google Fonts] (https://fonts.google.com/). If the font name is
42239 # unrecognized, the text is rendered in `Arial`.
42240 … "weight": 42, # The weight of the font. This field can have any value that is a multiple of
42241 … # `100` between `100` and `900`, inclusive. This range corresponds to the
42242 # numerical values described in the CSS 2.1 Specification,
42246 # The default value is `400` ("normal").
42248 … # The font weight makes up just one component of the rendered font weight.
42249 … # The rendered weight is determined by a combination of the `weight` and the
42252 … # * If the text is bold and the weight is less than `400`, the rendered
42254 … # * If the text is bold and the weight is greater than or equal to `400` but
42255 # is less than `700`, the rendered weight is `700`.
42256 … # * If the weight is greater than or equal to `700`, the rendered weight is
42257 # equal to the weight.
42258 … # * If the text is not bold, the rendered weight is equal to the weight.
42260 … "smallCaps": True or False, # Whether or not the text is in small capital letters.
42261 …"fontSize": { # A magnitude in a single direction in the specified units. # The size of the text's…
42262 "magnitude": 3.14, # The magnitude.
42263 "unit": "A String", # The units for magnitude.
42265 …at can either be fully opaque or fully transparent. # The background color of the text. If set, th…
42266 # or transparent, depending on the `color` field.
42269 "rgbColor": { # An RGB color. # The RGB color value.
42270 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
42271 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
42272 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
42276 …nother portion of a document or an external URL resource. # The hyperlink destination of the text.…
42279 … # Changing the link in an update request causes some other changes to the
42280 # text style of the range:
42282 … # * When setting a link, the text foreground color will be updated to the
42283 … # default link color and the text will be underlined. If these fields are
42284 … # modified in the same request, those values will be used instead of the
42287 # also update the existing link to point to the new URL.
42290 # will separate the newline character(s) into their own text runs. The
42291 … # link will be applied separately to the runs before and after the newline.
42292 # * Removing a link will update the text style of the range to match the
42293 … # style of the preceding text (or the default text styles if the preceding
42294 … # text is another link) unless different styles are being set in the same
42296 "headingId": "A String", # The ID of a heading in this document.
42298 "bookmarkId": "A String", # The ID of a bookmark in this document.
42300 "underline": True or False, # Whether or not the text is underlined.
42301 "bold": True or False, # Whether or not the text is rendered as bold.
42304 …te": { # A mask that indicates which of the fields on the base # A mask that indicates which of th…
42308 … "nestingLevelSuggested": True or False, # Indicates if there was a suggested change to the
42310 …hat indicates which of the fields on the base TextStyle have been changed in this suggestion. # A …
42325 … "listIdSuggested": True or False, # Indicates if there was a suggested change to the
42330 … "positionedObjectIds": [ # The IDs of the positioned objects tethered to this paragraph.
42333 …"suggestedParagraphStyleChanges": { # The suggested paragraph style changes to this paragraph, key…
42337 …tes which of the fields on the base ParagraphStyle have been changed in this suggestion. # A mask …
42358 … mask that indicates which of the fields on the base Shading have been changed in this # A mask th…
42361 …ckgroundColorSuggested": True or False, # Indicates if there was a suggested change to the Shading.
42365 # the changes made in this suggestion. This can be used along with the
42370 … # A paragraph style's parent depends on where the paragraph style is defined:
42372 # * The ParagraphStyle on a Paragraph
42373 # inherits from the paragraph's corresponding named style type.
42374 # * The ParagraphStyle on a named style
42375 # inherits from the normal text named style.
42376 # * The ParagraphStyle of the normal text named style inherits
42377 # from the default paragraph style in the Docs editor.
42378 # * The ParagraphStyle on a Paragraph
42380 # the table style.
42382 … # If the paragraph style does not inherit from a parent, unsetting fields will
42383 # revert the style to a value matching the defaults in the Docs editor.
42384 "spacingMode": "A String", # The spacing mode for the paragraph.
42385 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
42388 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
42389 # inherited from the parent.
42390 "magnitude": 3.14, # The magnitude.
42391 "unit": "A String", # The units for magnitude.
42393 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
42394 # page or column as the next paragraph if possible. If unset, the value is
42395 # inherited from the parent.
42396 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
42397 … # is represented as 100.0. If unset, the value is inherited from the parent.
42398 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
42399 # is inherited from the parent.
42400 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
42401 # inherited from the parent.
42403 … # The bottom border is rendered when the paragraph below has different border
42407 # changes to a paragraph border the new border must be specified in
42409 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
42412 "rgbColor": { # An RGB color. # The RGB color value.
42413 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
42414 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
42415 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
42419 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
42420 "magnitude": 3.14, # The magnitude.
42421 "unit": "A String", # The units for magnitude.
42423 "dashStyle": "A String", # The dash style of the border.
42424 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
42425 "magnitude": 3.14, # The magnitude.
42426 "unit": "A String", # The units for magnitude.
42429 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
42430 … # the start of the text, based on the current paragraph direction. If unset,
42431 # the value is inherited from the parent.
42432 "magnitude": 3.14, # The magnitude.
42433 "unit": "A String", # The units for magnitude.
42435 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
42436 # If unset, the value is inherited from the parent.
42438 # The between border is rendered when the adjacent paragraph has the same
42442 # changes to a paragraph border the new border must be specified in
42444 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
42447 "rgbColor": { # An RGB color. # The RGB color value.
42448 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
42449 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
42450 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
42454 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
42455 "magnitude": 3.14, # The magnitude.
42456 "unit": "A String", # The units for magnitude.
42458 "dashStyle": "A String", # The dash style of the border.
42459 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
42460 "magnitude": 3.14, # The magnitude.
42461 "unit": "A String", # The units for magnitude.
42464 "namedStyleType": "A String", # The named style type of the paragraph.
42466 # Since updating the named style type affects other properties within
42467 … # ParagraphStyle, the named style type is applied before the other properties
42469 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
42470 # from the parent.
42473 # changes to a paragraph border the new border must be specified in
42475 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
42478 "rgbColor": { # An RGB color. # The RGB color value.
42479 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
42480 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
42481 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
42485 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
42486 "magnitude": 3.14, # The magnitude.
42487 "unit": "A String", # The units for magnitude.
42489 "dashStyle": "A String", # The dash style of the border.
42490 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
42491 "magnitude": 3.14, # The magnitude.
42492 "unit": "A String", # The units for magnitude.
42495 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
42496 # the end of the text, based on the current paragraph direction. If unset,
42497 # the value is inherited from the parent.
42498 "magnitude": 3.14, # The magnitude.
42499 "unit": "A String", # The units for magnitude.
42501 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
42502 # from the parent.
42505 # changes to a paragraph border the new border must be specified in
42507 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
42510 "rgbColor": { # An RGB color. # The RGB color value.
42511 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
42512 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
42513 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
42517 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
42518 "magnitude": 3.14, # The magnitude.
42519 "unit": "A String", # The units for magnitude.
42521 "dashStyle": "A String", # The dash style of the border.
42522 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
42523 "magnitude": 3.14, # The magnitude.
42524 "unit": "A String", # The units for magnitude.
42527 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
42528 # inherited from the parent.
42529 "magnitude": 3.14, # The magnitude.
42530 "unit": "A String", # The units for magnitude.
42532 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
42534 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
42536 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
42539 "rgbColor": { # An RGB color. # The RGB color value.
42540 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
42541 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
42542 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
42547 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
42548 # from the parent.
42550 # The top border is rendered when the paragraph above has different border
42554 # changes to a paragraph border the new border must be specified in
42556 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
42559 "rgbColor": { # An RGB color. # The RGB color value.
42560 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
42561 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
42562 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
42566 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
42567 "magnitude": 3.14, # The magnitude.
42568 "unit": "A String", # The units for magnitude.
42570 "dashStyle": "A String", # The dash style of the border.
42571 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
42572 "magnitude": 3.14, # The magnitude.
42573 "unit": "A String", # The units for magnitude.
42576 … "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
42579 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
42580 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
42581 "magnitude": 3.14, # The magnitude.
42582 "unit": "A String", # The units for magnitude.
42586 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
42587 # the value is inherited from the parent.
42588 "magnitude": 3.14, # The magnitude.
42589 "unit": "A String", # The units for magnitude.
42591 "alignment": "A String", # The text alignment for this paragraph.
42592 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
42593 # column if possible. If unset, the value is inherited from the parent.
42597 … "paragraphStyle": { # Styles that apply to a whole paragraph. # The style of this paragraph.
42600 # A paragraph style's parent depends on where the paragraph style is defined:
42602 # * The ParagraphStyle on a Paragraph
42603 # inherits from the paragraph's corresponding named style type.
42604 # * The ParagraphStyle on a named style
42605 # inherits from the normal text named style.
42606 # * The ParagraphStyle of the normal text named style inherits
42607 # from the default paragraph style in the Docs editor.
42608 # * The ParagraphStyle on a Paragraph
42610 # the table style.
42612 # If the paragraph style does not inherit from a parent, unsetting fields will
42613 # revert the style to a value matching the defaults in the Docs editor.
42614 "spacingMode": "A String", # The spacing mode for the paragraph.
42615 … "direction": "A String", # The text direction of this paragraph. If unset, the value defaults to
42618 …magnitude in a single direction in the specified units. # The amount of extra space below the para…
42619 # inherited from the parent.
42620 "magnitude": 3.14, # The magnitude.
42621 "unit": "A String", # The units for magnitude.
42623 …ithNext": True or False, # Whether at least a part of this paragraph should be laid out on the same
42624 # page or column as the next paragraph if possible. If unset, the value is
42625 # inherited from the parent.
42626 … "lineSpacing": 3.14, # The amount of space between lines, as a percentage of normal, where normal
42627 # is represented as 100.0. If unset, the value is inherited from the parent.
42628 …rphan": True or False, # Whether to avoid widows and orphans for the paragraph. If unset, the value
42629 # is inherited from the parent.
42630 …rderBottom": { # A border around a paragraph. # The border at the bottom of this paragraph. If uns…
42631 # inherited from the parent.
42633 # The bottom border is rendered when the paragraph below has different border
42637 # changes to a paragraph border the new border must be specified in
42639 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
42642 "rgbColor": { # An RGB color. # The RGB color value.
42643 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
42644 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
42645 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
42649 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
42650 "magnitude": 3.14, # The magnitude.
42651 "unit": "A String", # The units for magnitude.
42653 "dashStyle": "A String", # The dash style of the border.
42654 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
42655 "magnitude": 3.14, # The magnitude.
42656 "unit": "A String", # The units for magnitude.
42659 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
42660 # the start of the text, based on the current paragraph direction. If unset,
42661 # the value is inherited from the parent.
42662 "magnitude": 3.14, # The magnitude.
42663 "unit": "A String", # The units for magnitude.
42665 …"borderBetween": { # A border around a paragraph. # The border between this paragraph and the next…
42666 # If unset, the value is inherited from the parent.
42668 # The between border is rendered when the adjacent paragraph has the same
42672 # changes to a paragraph border the new border must be specified in
42674 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
42677 "rgbColor": { # An RGB color. # The RGB color value.
42678 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
42679 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
42680 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
42684 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
42685 "magnitude": 3.14, # The magnitude.
42686 "unit": "A String", # The units for magnitude.
42688 "dashStyle": "A String", # The dash style of the border.
42689 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
42690 "magnitude": 3.14, # The magnitude.
42691 "unit": "A String", # The units for magnitude.
42694 "namedStyleType": "A String", # The named style type of the paragraph.
42696 # Since updating the named style type affects other properties within
42697 # ParagraphStyle, the named style type is applied before the other properties
42699 …orderRight": { # A border around a paragraph. # The border to the right of this paragraph. If unse…
42700 # from the parent.
42703 # changes to a paragraph border the new border must be specified in
42705 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
42708 "rgbColor": { # An RGB color. # The RGB color value.
42709 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
42710 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
42711 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
42715 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
42716 "magnitude": 3.14, # The magnitude.
42717 "unit": "A String", # The units for magnitude.
42719 "dashStyle": "A String", # The dash style of the border.
42720 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
42721 "magnitude": 3.14, # The magnitude.
42722 "unit": "A String", # The units for magnitude.
42725 … # A magnitude in a single direction in the specified units. # The amount of indentation for the p…
42726 # the end of the text, based on the current paragraph direction. If unset,
42727 # the value is inherited from the parent.
42728 "magnitude": 3.14, # The magnitude.
42729 "unit": "A String", # The units for magnitude.
42731 …"borderLeft": { # A border around a paragraph. # The border to the left of this paragraph. If unse…
42732 # from the parent.
42735 # changes to a paragraph border the new border must be specified in
42737 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
42740 "rgbColor": { # An RGB color. # The RGB color value.
42741 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
42742 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
42743 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
42747 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
42748 "magnitude": 3.14, # The magnitude.
42749 "unit": "A String", # The units for magnitude.
42751 "dashStyle": "A String", # The dash style of the border.
42752 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
42753 "magnitude": 3.14, # The magnitude.
42754 "unit": "A String", # The units for magnitude.
42757 …magnitude in a single direction in the specified units. # The amount of extra space above the para…
42758 # inherited from the parent.
42759 "magnitude": 3.14, # The magnitude.
42760 "unit": "A String", # The units for magnitude.
42762 … "headingId": "A String", # The heading ID of the paragraph. If empty, then this paragraph is not a
42764 …"shading": { # The shading of a paragraph. # The shading of the paragraph. If unset, the value is …
42766 …olor": { # A color that can either be fully opaque or fully transparent. # The background color of…
42769 "rgbColor": { # An RGB color. # The RGB color value.
42770 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
42771 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
42772 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
42777 …"borderTop": { # A border around a paragraph. # The border at the top of this paragraph. If unset,…
42778 # from the parent.
42780 # The top border is rendered when the paragraph above has different border
42784 # changes to a paragraph border the new border must be specified in
42786 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
42789 "rgbColor": { # An RGB color. # The RGB color value.
42790 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
42791 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
42792 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
42796 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
42797 "magnitude": 3.14, # The magnitude.
42798 "unit": "A String", # The units for magnitude.
42800 "dashStyle": "A String", # The dash style of the border.
42801 …"padding": { # A magnitude in a single direction in the specified units. # The padding of the bord…
42802 "magnitude": 3.14, # The magnitude.
42803 "unit": "A String", # The units for magnitude.
42806 … "tabStops": [ # A list of the tab stops for this paragraph. The list of tab stops is not
42809 … "alignment": "A String", # The alignment of this tab stop. If unset, the value defaults to START.
42810 …t": { # A magnitude in a single direction in the specified units. # The offset between this tab st…
42811 "magnitude": 3.14, # The magnitude.
42812 "unit": "A String", # The units for magnitude.
42816 …# A magnitude in a single direction in the specified units. # The amount of indentation for the fi…
42817 # the value is inherited from the parent.
42818 "magnitude": 3.14, # The magnitude.
42819 "unit": "A String", # The units for magnitude.
42821 "alignment": "A String", # The text alignment for this paragraph.
42822 …eepLinesTogether": True or False, # Whether all lines of the paragraph should be laid out on the s…
42823 # column if possible. If unset, the value is inherited from the parent.
42828 "rows": 42, # Number of rows in the table.
42829 "tableStyle": { # Styles that apply to a table. # The style of the table.
42830 "tableColumnProperties": [ # The properties of each column.
42833 # HTML. So the properties for a row can be found on the row's
42835 { # The properties of a column in a table.
42836 …th": { # A magnitude in a single direction in the specified units. # The width of the column. Set …
42838 "magnitude": 3.14, # The magnitude.
42839 "unit": "A String", # The units for magnitude.
42841 "widthType": "A String", # The width type of the column.
42845 "suggestedInsertionIds": [ # The suggested insertion IDs. A Table may have
42850 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
42854 "tableRows": [ # The contents and style of each row.
42855 { # The contents and style of a row in a Table.
42856 … "endIndex": 42, # The zero-based end index of this row, exclusive, in UTF-16 code units.
42857 "tableCells": [ # The contents and style of each cell in this row.
42860 # different number of cells than other rows in the same table.
42861 { # The contents and style of a cell in a Table.
42862 … "endIndex": 42, # The zero-based end index of this cell, exclusive, in UTF-16 code units.
42863 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
42867 "suggestedInsertionIds": [ # The suggested insertion IDs. A TableCell
42872 "content": [ # The content of the cell.
42875 "tableCellStyle": { # The style of a TableCell. # The style of the cell.
42878 # A table cell style can inherit from the table's style.
42879 …ngBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of t…
42880 "magnitude": 3.14, # The magnitude.
42881 "unit": "A String", # The units for magnitude.
42883 … "borderBottom": { # A border around a table cell. # The bottom border of the cell.
42884 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
42887 "rgbColor": { # An RGB color. # The RGB color value.
42888 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
42889 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
42890 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
42894 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
42895 "magnitude": 3.14, # The magnitude.
42896 "unit": "A String", # The units for magnitude.
42898 "dashStyle": "A String", # The dash style of the border.
42900 …ddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of th…
42901 "magnitude": 3.14, # The magnitude.
42902 "unit": "A String", # The units for magnitude.
42904 …paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of th…
42905 "magnitude": 3.14, # The magnitude.
42906 "unit": "A String", # The units for magnitude.
42908 … "borderLeft": { # A border around a table cell. # The left border of the cell.
42909 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
42912 "rgbColor": { # An RGB color. # The RGB color value.
42913 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
42914 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
42915 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
42919 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
42920 "magnitude": 3.14, # The magnitude.
42921 "unit": "A String", # The units for magnitude.
42923 "dashStyle": "A String", # The dash style of the border.
42925 … "columnSpan": 42, # The column span of the cell. This property is read-only.
42926 …# A color that can either be fully opaque or fully transparent. # The background color of the cell.
42929 "rgbColor": { # An RGB color. # The RGB color value.
42930 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
42931 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
42932 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
42936 … "borderRight": { # A border around a table cell. # The right border of the cell.
42937 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
42940 "rgbColor": { # An RGB color. # The RGB color value.
42941 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
42942 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
42943 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
42947 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
42948 "magnitude": 3.14, # The magnitude.
42949 "unit": "A String", # The units for magnitude.
42951 "dashStyle": "A String", # The dash style of the border.
42953 "rowSpan": 42, # The row span of the cell. This property is read-only.
42954 …"contentAlignment": "A String", # The alignment of the content in the table cell. The default alig…
42955 … # matches the alignment for newly created table cells in the Docs editor.
42956 …dingRight": { # A magnitude in a single direction in the specified units. # The right padding of t…
42957 "magnitude": 3.14, # The magnitude.
42958 "unit": "A String", # The units for magnitude.
42960 … "borderTop": { # A border around a table cell. # The top border of the cell.
42961 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
42964 "rgbColor": { # An RGB color. # The RGB color value.
42965 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
42966 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
42967 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
42971 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
42972 "magnitude": 3.14, # The magnitude.
42973 "unit": "A String", # The units for magnitude.
42975 "dashStyle": "A String", # The dash style of the border.
42978 … "startIndex": 42, # The zero-based start index of this cell, in UTF-16 code units.
42979 …"suggestedTableCellStyleChanges": { # The suggested changes to the table cell style, keyed by sugg…
42981 … "tableCellStyle": { # The style of a TableCell. # A TableCellStyle that only includes
42982 … # the changes made in this suggestion. This can be used along with the
42987 # A table cell style can inherit from the table's style.
42988 …ngBottom": { # A magnitude in a single direction in the specified units. # The bottom padding of t…
42989 "magnitude": 3.14, # The magnitude.
42990 "unit": "A String", # The units for magnitude.
42992 … "borderBottom": { # A border around a table cell. # The bottom border of the cell.
42993 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
42996 "rgbColor": { # An RGB color. # The RGB color value.
42997 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
42998 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
42999 … "red": 3.14, # The red component of the color, from 0.0 to 1.0.
43003 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
43004 "magnitude": 3.14, # The magnitude.
43005 "unit": "A String", # The units for magnitude.
43007 "dashStyle": "A String", # The dash style of the border.
43009 …ddingLeft": { # A magnitude in a single direction in the specified units. # The left padding of th…
43010 "magnitude": 3.14, # The magnitude.
43011 "unit": "A String", # The units for magnitude.
43013 …paddingTop": { # A magnitude in a single direction in the specified units. # The top padding of th…
43014 "magnitude": 3.14, # The magnitude.
43015 "unit": "A String", # The units for magnitude.
43017 … "borderLeft": { # A border around a table cell. # The left border of the cell.
43018 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
43021 "rgbColor": { # An RGB color. # The RGB color value.
43022 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
43023 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
43024 … "red": 3.14, # The red component of the color, from 0.0 to 1.0.
43028 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
43029 "magnitude": 3.14, # The magnitude.
43030 "unit": "A String", # The units for magnitude.
43032 "dashStyle": "A String", # The dash style of the border.
43034 … "columnSpan": 42, # The column span of the cell. This property is read-only.
43035 …# A color that can either be fully opaque or fully transparent. # The background color of the cell.
43038 "rgbColor": { # An RGB color. # The RGB color value.
43039 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
43040 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
43041 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
43045 … "borderRight": { # A border around a table cell. # The right border of the cell.
43046 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
43049 "rgbColor": { # An RGB color. # The RGB color value.
43050 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
43051 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
43052 … "red": 3.14, # The red component of the color, from 0.0 to 1.0.
43056 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
43057 "magnitude": 3.14, # The magnitude.
43058 "unit": "A String", # The units for magnitude.
43060 "dashStyle": "A String", # The dash style of the border.
43062 "rowSpan": 42, # The row span of the cell. This property is read-only.
43063 …"contentAlignment": "A String", # The alignment of the content in the table cell. The default alig…
43064 … # matches the alignment for newly created table cells in the Docs editor.
43065 …dingRight": { # A magnitude in a single direction in the specified units. # The right padding of t…
43066 "magnitude": 3.14, # The magnitude.
43067 "unit": "A String", # The units for magnitude.
43069 … "borderTop": { # A border around a table cell. # The top border of the cell.
43070 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
43073 "rgbColor": { # An RGB color. # The RGB color value.
43074 … "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
43075 … "green": 3.14, # The green component of the color, from 0.0 to 1.0.
43076 … "red": 3.14, # The red component of the color, from 0.0 to 1.0.
43080 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
43081 "magnitude": 3.14, # The magnitude.
43082 "unit": "A String", # The units for magnitude.
43084 "dashStyle": "A String", # The dash style of the border.
43087 …tes which of the fields on the base TableCellStyle have been changed in this suggestion. # A mask …
43106 … "tableRowStyle": { # Styles that apply to a table row. # The style of the table row.
43107 …agnitude in a single direction in the specified units. # The minimum height of the row. The row wi…
43108 # at a height equal to or greater than this value in order to show all the
43109 # content in the row's cells.
43110 "magnitude": 3.14, # The magnitude.
43111 "unit": "A String", # The units for magnitude.
43114 "suggestedInsertionIds": [ # The suggested insertion IDs. A TableRow
43119 … "startIndex": 42, # The zero-based start index of this row, in UTF-16 code units.
43120 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
43124 …"suggestedTableRowStyleChanges": { # The suggested style changes to this row, keyed by suggestion …
43128 # the changes made in this suggestion. This can be used along with the
43131 …agnitude in a single direction in the specified units. # The minimum height of the row. The row wi…
43132 … # at a height equal to or greater than this value in order to show all the
43133 # content in the row's cells.
43134 "magnitude": 3.14, # The magnitude.
43135 "unit": "A String", # The units for magnitude.
43138 …ates which of the fields on the base TableRowStyle have been changed in this suggestion. # A mask …
43146 "columns": 42, # Number of columns in the table.
43153 "footnoteId": "A String", # The ID of the footnote.
43156 "positionedObjects": { # The positioned objects in the document, keyed by object ID.
43158 # and positioned relative to the beginning of the paragraph. A PositionedObject
43161 …"positionedObjectProperties": { # Properties of a PositionedObject. # The properties of this posit…
43162 …# The positioning of a PositionedObject. The positioned object is positioned # The positioning of …
43165 # relative to the beginning of the Paragraph
43167 …itude in a single direction in the specified units. # The offset of the left edge of the positione…
43168 # beginning of the Paragraph it is tethered
43169 # to. The exact positioning of the object can depend on other content in the
43170 # document and the document's styling.
43171 "magnitude": 3.14, # The magnitude.
43172 "unit": "A String", # The units for magnitude.
43174 …itude in a single direction in the specified units. # The offset of the top edge of the positioned…
43175 # beginning of the Paragraph it is tethered
43176 # to. The exact positioning of the object can depend on other content in the
43177 # document and the document's styling.
43178 "magnitude": 3.14, # The magnitude.
43179 "unit": "A String", # The units for magnitude.
43181 "layout": "A String", # The layout of this positioned object.
43183 …"embeddedObject": { # An embedded object in the document. # The embedded object of this positioned…
43184 "imageProperties": { # The properties of an image. # The properties of an image.
43185 "angle": 3.14, # The clockwise rotation angle of the image, in radians.
43186 … "contentUri": "A String", # A URI to the image with a default lifetime of 30 minutes.
43187 # This URI is tagged with the account of the requester. Anyone with the URI
43188 # effectively accesses the image as the original requester. Access to the
43189 # image may be lost if the document's sharing settings change.
43190 …"sourceUri": "A String", # The source URI is the URI used to insert the image. The source URI can …
43192 … "brightness": 3.14, # The brightness effect of the image. The value should be in the interval
43194 … "transparency": 3.14, # The transparency effect of the image. The value should be in the interval
43196 … "cropProperties": { # The crop properties of an image. # The crop properties of the image.
43198 # The crop rectangle is represented using fractional offsets from the original
43201 # - If the offset is in the interval (0, 1), the corresponding edge of crop
43202 # rectangle is positioned inside of the image's original bounding rectangle.
43203 # - If the offset is negative or greater than 1, the corresponding edge of crop
43204 # rectangle is positioned outside of the image's original bounding rectangle.
43205 # - If all offsets and rotation angle are 0, the image is not cropped.
43206 … "offsetBottom": 3.14, # The offset specifies how far inwards the bottom edge of the crop rectangle
43207 # is from the bottom edge of the original content as a fraction of the
43209 … "angle": 3.14, # The clockwise rotation angle of the crop rectangle around its center, in
43210 # radians. Rotation is applied after the offsets.
43211 … "offsetLeft": 3.14, # The offset specifies how far inwards the left edge of the crop rectangle is
43212 # from the left edge of the original content as a fraction of the original
43214 … "offsetRight": 3.14, # The offset specifies how far inwards the right edge of the crop rectangle
43215 # is from the right edge of the original content as a fraction of the
43217 … "offsetTop": 3.14, # The offset specifies how far inwards the top edge of the crop rectangle is
43218 # from the top edge of the original content as a fraction of the original
43221 … "contrast": 3.14, # The contrast effect of the image. The value should be in the interval
43224 …"description": "A String", # The description of the embedded object. The `title` and `description`…
43226 … "title": "A String", # The title of the embedded object. The `title` and `description` are both
43228 …"embeddedDrawingProperties": { # The properties of an embedded drawing. # The properties of an emb…
43230 …"linkedContentReference": { # A reference to the external linked source content. # A reference to
43231 # a reference to the source Sheets chart when the embedded object is a linked
43234 # If unset, then the embedded object is not linked.
43235 …: { # A reference to a linked chart embedded from Google Sheets. # A reference to the linked chart.
43236 …"spreadsheetId": "A String", # The ID of the Google Sheets spreadsheet that contains the source ch…
43237 … "chartId": 42, # The ID of the specific chart in the Google Sheets spreadsheet that is
43241 …"embeddedObjectBorder": { # A border around an EmbeddedObject. # The border of the embedded object.
43242 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
43245 "rgbColor": { # An RGB color. # The RGB color value.
43246 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
43247 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
43248 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
43252 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
43253 "magnitude": 3.14, # The magnitude.
43254 "unit": "A String", # The units for magnitude.
43256 "dashStyle": "A String", # The dash style of the border.
43257 "propertyState": "A String", # The property state of the border property.
43259 …ginBottom": { # A magnitude in a single direction in the specified units. # The bottom margin of t…
43260 "magnitude": 3.14, # The magnitude.
43261 "unit": "A String", # The units for magnitude.
43263 …marginLeft": { # A magnitude in a single direction in the specified units. # The left margin of th…
43264 "magnitude": 3.14, # The magnitude.
43265 "unit": "A String", # The units for magnitude.
43267 …rginRight": { # A magnitude in a single direction in the specified units. # The right margin of th…
43268 "magnitude": 3.14, # The magnitude.
43269 "unit": "A String", # The units for magnitude.
43271 …"marginTop": { # A magnitude in a single direction in the specified units. # The top margin of the
43272 "magnitude": 3.14, # The magnitude.
43273 "unit": "A String", # The units for magnitude.
43275 "size": { # A width and height. # The visible size of the image after cropping.
43276 … "width": { # A magnitude in a single direction in the specified units. # The width of the object.
43277 "magnitude": 3.14, # The magnitude.
43278 "unit": "A String", # The units for magnitude.
43280 …"height": { # A magnitude in a single direction in the specified units. # The height of the object.
43281 "magnitude": 3.14, # The magnitude.
43282 "unit": "A String", # The units for magnitude.
43287 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
43291 …"suggestedPositionedObjectPropertiesChanges": { # The suggested changes to the positioned object p…
43294 …te": { # A mask that indicates which of the fields on the base # A mask that indicates which of th…
43300 …tionState": { # A mask that indicates which of the fields on the base # A mask that indicates whic…
43308 … indicates which of the fields on the base EmbeddedObject have been changed in this suggestion. # …
43311 …tionState": { # A mask that indicates which of the fields on the base # A mask that indicates whic…
43316 …hat indicates which of the fields on the base SheetsChartReference have been changed in this # A m…
43323 … that indicates which of the fields on the base Size have been changed in this suggestion. # A mas…
43325 # For any field set to true, the Size has
43330 …tionState": { # A mask that indicates which of the fields on the base # A mask that indicates whic…
43337 … indicates which of the fields on the base ImageProperties have been changed in this suggestion. #…
43340 … indicates which of the fields on the base CropProperties have been changed in this suggestion. # …
43362 …hat indicates which of the fields on the base EmbeddedObjectBorder have been changed in this # A m…
43372 …rties": { # Properties of a PositionedObject. # A PositionedObjectProperties that only includes the
43373 # changes made in this suggestion. This can be used along with the
43376 …# The positioning of a PositionedObject. The positioned object is positioned # The positioning of …
43379 # relative to the beginning of the Paragraph
43381 …itude in a single direction in the specified units. # The offset of the left edge of the positione…
43382 # beginning of the Paragraph it is tethered
43383 # to. The exact positioning of the object can depend on other content in the
43384 # document and the document's styling.
43385 "magnitude": 3.14, # The magnitude.
43386 "unit": "A String", # The units for magnitude.
43388 …itude in a single direction in the specified units. # The offset of the top edge of the positioned…
43389 # beginning of the Paragraph it is tethered
43390 # to. The exact positioning of the object can depend on other content in the
43391 # document and the document's styling.
43392 "magnitude": 3.14, # The magnitude.
43393 "unit": "A String", # The units for magnitude.
43395 "layout": "A String", # The layout of this positioned object.
43397 …"embeddedObject": { # An embedded object in the document. # The embedded object of this positioned…
43398 "imageProperties": { # The properties of an image. # The properties of an image.
43399 "angle": 3.14, # The clockwise rotation angle of the image, in radians.
43400 … "contentUri": "A String", # A URI to the image with a default lifetime of 30 minutes.
43401 # This URI is tagged with the account of the requester. Anyone with the URI
43402 # effectively accesses the image as the original requester. Access to the
43403 # image may be lost if the document's sharing settings change.
43404 …"sourceUri": "A String", # The source URI is the URI used to insert the image. The source URI can …
43406 … "brightness": 3.14, # The brightness effect of the image. The value should be in the interval
43408 … "transparency": 3.14, # The transparency effect of the image. The value should be in the interval
43410 … "cropProperties": { # The crop properties of an image. # The crop properties of the image.
43412 … # The crop rectangle is represented using fractional offsets from the original
43415 # - If the offset is in the interval (0, 1), the corresponding edge of crop
43416 # rectangle is positioned inside of the image's original bounding rectangle.
43417 … # - If the offset is negative or greater than 1, the corresponding edge of crop
43418 … # rectangle is positioned outside of the image's original bounding rectangle.
43419 # - If all offsets and rotation angle are 0, the image is not cropped.
43420 … "offsetBottom": 3.14, # The offset specifies how far inwards the bottom edge of the crop rectangle
43421 # is from the bottom edge of the original content as a fraction of the
43423 … "angle": 3.14, # The clockwise rotation angle of the crop rectangle around its center, in
43424 # radians. Rotation is applied after the offsets.
43425 … "offsetLeft": 3.14, # The offset specifies how far inwards the left edge of the crop rectangle is
43426 # from the left edge of the original content as a fraction of the original
43428 … "offsetRight": 3.14, # The offset specifies how far inwards the right edge of the crop rectangle
43429 # is from the right edge of the original content as a fraction of the
43431 … "offsetTop": 3.14, # The offset specifies how far inwards the top edge of the crop rectangle is
43432 # from the top edge of the original content as a fraction of the original
43435 … "contrast": 3.14, # The contrast effect of the image. The value should be in the interval
43438 …"description": "A String", # The description of the embedded object. The `title` and `description`…
43440 … "title": "A String", # The title of the embedded object. The `title` and `description` are both
43442 …"embeddedDrawingProperties": { # The properties of an embedded drawing. # The properties of an emb…
43444 …"linkedContentReference": { # A reference to the external linked source content. # A reference to
43445 # a reference to the source Sheets chart when the embedded object is a linked
43448 # If unset, then the embedded object is not linked.
43449 …: { # A reference to a linked chart embedded from Google Sheets. # A reference to the linked chart.
43450 …"spreadsheetId": "A String", # The ID of the Google Sheets spreadsheet that contains the source ch…
43451 … "chartId": 42, # The ID of the specific chart in the Google Sheets spreadsheet that is
43455 …"embeddedObjectBorder": { # A border around an EmbeddedObject. # The border of the embedded object.
43456 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
43459 "rgbColor": { # An RGB color. # The RGB color value.
43460 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
43461 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
43462 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
43466 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
43467 "magnitude": 3.14, # The magnitude.
43468 "unit": "A String", # The units for magnitude.
43470 "dashStyle": "A String", # The dash style of the border.
43471 "propertyState": "A String", # The property state of the border property.
43473 …ginBottom": { # A magnitude in a single direction in the specified units. # The bottom margin of t…
43474 "magnitude": 3.14, # The magnitude.
43475 "unit": "A String", # The units for magnitude.
43477 …marginLeft": { # A magnitude in a single direction in the specified units. # The left margin of th…
43478 "magnitude": 3.14, # The magnitude.
43479 "unit": "A String", # The units for magnitude.
43481 …rginRight": { # A magnitude in a single direction in the specified units. # The right margin of th…
43482 "magnitude": 3.14, # The magnitude.
43483 "unit": "A String", # The units for magnitude.
43485 …"marginTop": { # A magnitude in a single direction in the specified units. # The top margin of the
43486 "magnitude": 3.14, # The magnitude.
43487 "unit": "A String", # The units for magnitude.
43489 "size": { # A width and height. # The visible size of the image after cropping.
43490 … "width": { # A magnitude in a single direction in the specified units. # The width of the object.
43491 "magnitude": 3.14, # The magnitude.
43492 "unit": "A String", # The units for magnitude.
43494 …"height": { # A magnitude in a single direction in the specified units. # The height of the object.
43495 "magnitude": 3.14, # The magnitude.
43496 "unit": "A String", # The units for magnitude.
43503 "objectId": "A String", # The ID of this positioned object.
43504 …"suggestedInsertionId": "A String", # The suggested insertion ID. If empty, then this is not a sug…
43508 "inlineObjects": { # The inline objects in the document, keyed by object ID.
43511 …"suggestedDeletionIds": [ # The suggested deletion IDs. If empty, then there are no suggested dele…
43515 …"inlineObjectProperties": { # Properties of an InlineObject. # The properties of this inline objec…
43516 …"embeddedObject": { # An embedded object in the document. # The embedded object of this inline obj…
43517 "imageProperties": { # The properties of an image. # The properties of an image.
43518 "angle": 3.14, # The clockwise rotation angle of the image, in radians.
43519 … "contentUri": "A String", # A URI to the image with a default lifetime of 30 minutes.
43520 # This URI is tagged with the account of the requester. Anyone with the URI
43521 # effectively accesses the image as the original requester. Access to the
43522 # image may be lost if the document's sharing settings change.
43523 …"sourceUri": "A String", # The source URI is the URI used to insert the image. The source URI can …
43525 … "brightness": 3.14, # The brightness effect of the image. The value should be in the interval
43527 … "transparency": 3.14, # The transparency effect of the image. The value should be in the interval
43529 … "cropProperties": { # The crop properties of an image. # The crop properties of the image.
43531 # The crop rectangle is represented using fractional offsets from the original
43534 # - If the offset is in the interval (0, 1), the corresponding edge of crop
43535 # rectangle is positioned inside of the image's original bounding rectangle.
43536 # - If the offset is negative or greater than 1, the corresponding edge of crop
43537 # rectangle is positioned outside of the image's original bounding rectangle.
43538 # - If all offsets and rotation angle are 0, the image is not cropped.
43539 … "offsetBottom": 3.14, # The offset specifies how far inwards the bottom edge of the crop rectangle
43540 # is from the bottom edge of the original content as a fraction of the
43542 … "angle": 3.14, # The clockwise rotation angle of the crop rectangle around its center, in
43543 # radians. Rotation is applied after the offsets.
43544 … "offsetLeft": 3.14, # The offset specifies how far inwards the left edge of the crop rectangle is
43545 # from the left edge of the original content as a fraction of the original
43547 … "offsetRight": 3.14, # The offset specifies how far inwards the right edge of the crop rectangle
43548 # is from the right edge of the original content as a fraction of the
43550 … "offsetTop": 3.14, # The offset specifies how far inwards the top edge of the crop rectangle is
43551 # from the top edge of the original content as a fraction of the original
43554 … "contrast": 3.14, # The contrast effect of the image. The value should be in the interval
43557 …"description": "A String", # The description of the embedded object. The `title` and `description`…
43559 … "title": "A String", # The title of the embedded object. The `title` and `description` are both
43561 …"embeddedDrawingProperties": { # The properties of an embedded drawing. # The properties of an emb…
43563 …"linkedContentReference": { # A reference to the external linked source content. # A reference to
43564 # a reference to the source Sheets chart when the embedded object is a linked
43567 # If unset, then the embedded object is not linked.
43568 …: { # A reference to a linked chart embedded from Google Sheets. # A reference to the linked chart.
43569 …"spreadsheetId": "A String", # The ID of the Google Sheets spreadsheet that contains the source ch…
43570 … "chartId": 42, # The ID of the specific chart in the Google Sheets spreadsheet that is
43574 …"embeddedObjectBorder": { # A border around an EmbeddedObject. # The border of the embedded object.
43575 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
43578 "rgbColor": { # An RGB color. # The RGB color value.
43579 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
43580 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
43581 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
43585 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
43586 "magnitude": 3.14, # The magnitude.
43587 "unit": "A String", # The units for magnitude.
43589 "dashStyle": "A String", # The dash style of the border.
43590 "propertyState": "A String", # The property state of the border property.
43592 …ginBottom": { # A magnitude in a single direction in the specified units. # The bottom margin of t…
43593 "magnitude": 3.14, # The magnitude.
43594 "unit": "A String", # The units for magnitude.
43596 …marginLeft": { # A magnitude in a single direction in the specified units. # The left margin of th…
43597 "magnitude": 3.14, # The magnitude.
43598 "unit": "A String", # The units for magnitude.
43600 …rginRight": { # A magnitude in a single direction in the specified units. # The right margin of th…
43601 "magnitude": 3.14, # The magnitude.
43602 "unit": "A String", # The units for magnitude.
43604 …"marginTop": { # A magnitude in a single direction in the specified units. # The top margin of the
43605 "magnitude": 3.14, # The magnitude.
43606 "unit": "A String", # The units for magnitude.
43608 "size": { # A width and height. # The visible size of the image after cropping.
43609 … "width": { # A magnitude in a single direction in the specified units. # The width of the object.
43610 "magnitude": 3.14, # The magnitude.
43611 "unit": "A String", # The units for magnitude.
43613 …"height": { # A magnitude in a single direction in the specified units. # The height of the object.
43614 "magnitude": 3.14, # The magnitude.
43615 "unit": "A String", # The units for magnitude.
43620 …"suggestedInlineObjectPropertiesChanges": { # The suggested changes to the inline object propertie…
43624 # that only includes the changes made in this suggestion. This can be used
43625 # along with the inline_object_properties_suggestion_state
43627 …"embeddedObject": { # An embedded object in the document. # The embedded object of this inline obj…
43628 "imageProperties": { # The properties of an image. # The properties of an image.
43629 "angle": 3.14, # The clockwise rotation angle of the image, in radians.
43630 … "contentUri": "A String", # A URI to the image with a default lifetime of 30 minutes.
43631 # This URI is tagged with the account of the requester. Anyone with the URI
43632 # effectively accesses the image as the original requester. Access to the
43633 # image may be lost if the document's sharing settings change.
43634 …"sourceUri": "A String", # The source URI is the URI used to insert the image. The source URI can …
43636 … "brightness": 3.14, # The brightness effect of the image. The value should be in the interval
43638 … "transparency": 3.14, # The transparency effect of the image. The value should be in the interval
43640 … "cropProperties": { # The crop properties of an image. # The crop properties of the image.
43642 … # The crop rectangle is represented using fractional offsets from the original
43645 # - If the offset is in the interval (0, 1), the corresponding edge of crop
43646 # rectangle is positioned inside of the image's original bounding rectangle.
43647 … # - If the offset is negative or greater than 1, the corresponding edge of crop
43648 … # rectangle is positioned outside of the image's original bounding rectangle.
43649 # - If all offsets and rotation angle are 0, the image is not cropped.
43650 … "offsetBottom": 3.14, # The offset specifies how far inwards the bottom edge of the crop rectangle
43651 # is from the bottom edge of the original content as a fraction of the
43653 … "angle": 3.14, # The clockwise rotation angle of the crop rectangle around its center, in
43654 # radians. Rotation is applied after the offsets.
43655 … "offsetLeft": 3.14, # The offset specifies how far inwards the left edge of the crop rectangle is
43656 # from the left edge of the original content as a fraction of the original
43658 … "offsetRight": 3.14, # The offset specifies how far inwards the right edge of the crop rectangle
43659 # is from the right edge of the original content as a fraction of the
43661 … "offsetTop": 3.14, # The offset specifies how far inwards the top edge of the crop rectangle is
43662 # from the top edge of the original content as a fraction of the original
43665 … "contrast": 3.14, # The contrast effect of the image. The value should be in the interval
43668 …"description": "A String", # The description of the embedded object. The `title` and `description`…
43670 … "title": "A String", # The title of the embedded object. The `title` and `description` are both
43672 …"embeddedDrawingProperties": { # The properties of an embedded drawing. # The properties of an emb…
43674 …"linkedContentReference": { # A reference to the external linked source content. # A reference to
43675 # a reference to the source Sheets chart when the embedded object is a linked
43678 # If unset, then the embedded object is not linked.
43679 …: { # A reference to a linked chart embedded from Google Sheets. # A reference to the linked chart.
43680 …"spreadsheetId": "A String", # The ID of the Google Sheets spreadsheet that contains the source ch…
43681 … "chartId": 42, # The ID of the specific chart in the Google Sheets spreadsheet that is
43685 …"embeddedObjectBorder": { # A border around an EmbeddedObject. # The border of the embedded object.
43686 …olor": { # A color that can either be fully opaque or fully transparent. # The color of the border.
43689 "rgbColor": { # An RGB color. # The RGB color value.
43690 "blue": 3.14, # The blue component of the color, from 0.0 to 1.0.
43691 "green": 3.14, # The green component of the color, from 0.0 to 1.0.
43692 "red": 3.14, # The red component of the color, from 0.0 to 1.0.
43696 … "width": { # A magnitude in a single direction in the specified units. # The width of the border.
43697 "magnitude": 3.14, # The magnitude.
43698 "unit": "A String", # The units for magnitude.
43700 "dashStyle": "A String", # The dash style of the border.
43701 "propertyState": "A String", # The property state of the border property.
43703 …ginBottom": { # A magnitude in a single direction in the specified units. # The bottom margin of t…
43704 "magnitude": 3.14, # The magnitude.
43705 "unit": "A String", # The units for magnitude.
43707 …marginLeft": { # A magnitude in a single direction in the specified units. # The left margin of th…
43708 "magnitude": 3.14, # The magnitude.
43709 "unit": "A String", # The units for magnitude.
43711 …rginRight": { # A magnitude in a single direction in the specified units. # The right margin of th…
43712 "magnitude": 3.14, # The magnitude.
43713 "unit": "A String", # The units for magnitude.
43715 …"marginTop": { # A magnitude in a single direction in the specified units. # The top margin of the
43716 "magnitude": 3.14, # The magnitude.
43717 "unit": "A String", # The units for magnitude.
43719 "size": { # A width and height. # The visible size of the image after cropping.
43720 … "width": { # A magnitude in a single direction in the specified units. # The width of the object.
43721 "magnitude": 3.14, # The magnitude.
43722 "unit": "A String", # The units for magnitude.
43724 …"height": { # A magnitude in a single direction in the specified units. # The height of the object.
43725 "magnitude": 3.14, # The magnitude.
43726 "unit": "A String", # The units for magnitude.
43731 …te": { # A mask that indicates which of the fields on the base # A mask that indicates which of th…
43737 … indicates which of the fields on the base EmbeddedObject have been changed in this suggestion. # …
43740 …tionState": { # A mask that indicates which of the fields on the base # A mask that indicates whic…
43745 …hat indicates which of the fields on the base SheetsChartReference have been changed in this # A m…
43752 … that indicates which of the fields on the base Size have been changed in this suggestion. # A mas…
43754 # For any field set to true, the Size has
43759 …tionState": { # A mask that indicates which of the fields on the base # A mask that indicates whic…
43766 … indicates which of the fields on the base ImageProperties have been changed in this suggestion. #…
43769 … indicates which of the fields on the base CropProperties have been changed in this suggestion. # …
43791 …hat indicates which of the fields on the base EmbeddedObjectBorder have been changed in this # A m…
43803 "objectId": "A String", # The ID of this inline object.
43804 …"suggestedInsertionId": "A String", # The suggested insertion ID. If empty, then this is not a sug…
43808 …"revisionId": "A String", # The revision ID of the document. Can be used in update requests to spe…
43809 # which revision of a document to apply updates to and how the request should
43810 # behave if the document has been edited since that revision. Only populated
43811 # if the user has edit access to the document.
43813 # The format of the revision ID may change over time, so it should be treated
43815 # hours after it has been returned and cannot be shared across users. If the
43816 # revision ID is unchanged between calls, then the document has not changed.
43817 # Conversely, a changed ID (for the same document and user) usually means the
43820 "documentId": "A String", # The ID of the document.