Class: Google::Apis::DocsV1::DocumentTab

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/docs_v1/classes.rb,
lib/google/apis/docs_v1/representations.rb,
lib/google/apis/docs_v1/representations.rb

Overview

A tab with document contents.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DocumentTab

Returns a new instance of DocumentTab.



1563
1564
1565
# File 'lib/google/apis/docs_v1/classes.rb', line 1563

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#bodyGoogle::Apis::DocsV1::Body

The document body. The body typically contains the full document contents except for headers, footers, and footnotes. Corresponds to the JSON property body



1504
1505
1506
# File 'lib/google/apis/docs_v1/classes.rb', line 1504

def body
  @body
end

#document_styleGoogle::Apis::DocsV1::DocumentStyle

The style of the document. Corresponds to the JSON property documentStyle



1509
1510
1511
# File 'lib/google/apis/docs_v1/classes.rb', line 1509

def document_style
  @document_style
end

#footersHash<String,Google::Apis::DocsV1::Footer>

The footers in the document tab, keyed by footer ID. Corresponds to the JSON property footers

Returns:



1514
1515
1516
# File 'lib/google/apis/docs_v1/classes.rb', line 1514

def footers
  @footers
end

#footnotesHash<String,Google::Apis::DocsV1::Footnote>

The footnotes in the document tab, keyed by footnote ID. Corresponds to the JSON property footnotes

Returns:



1519
1520
1521
# File 'lib/google/apis/docs_v1/classes.rb', line 1519

def footnotes
  @footnotes
end

#headersHash<String,Google::Apis::DocsV1::Header>

The headers in the document tab, keyed by header ID. Corresponds to the JSON property headers

Returns:



1524
1525
1526
# File 'lib/google/apis/docs_v1/classes.rb', line 1524

def headers
  @headers
end

#inline_objectsHash<String,Google::Apis::DocsV1::InlineObject>

The inline objects in the document tab, keyed by object ID. Corresponds to the JSON property inlineObjects

Returns:



1529
1530
1531
# File 'lib/google/apis/docs_v1/classes.rb', line 1529

def inline_objects
  @inline_objects
end

#listsHash<String,Google::Apis::DocsV1::List>

The lists in the document tab, keyed by list ID. Corresponds to the JSON property lists

Returns:



1534
1535
1536
# File 'lib/google/apis/docs_v1/classes.rb', line 1534

def lists
  @lists
end

#named_rangesHash<String,Google::Apis::DocsV1::NamedRanges>

The named ranges in the document tab, keyed by name. Corresponds to the JSON property namedRanges

Returns:



1539
1540
1541
# File 'lib/google/apis/docs_v1/classes.rb', line 1539

def named_ranges
  @named_ranges
end

#named_stylesGoogle::Apis::DocsV1::NamedStyles

The named styles. Paragraphs in the document can inherit their TextStyle and ParagraphStyle from these named styles. Corresponds to the JSON property namedStyles



1545
1546
1547
# File 'lib/google/apis/docs_v1/classes.rb', line 1545

def named_styles
  @named_styles
end

#positioned_objectsHash<String,Google::Apis::DocsV1::PositionedObject>

The positioned objects in the document tab, keyed by object ID. Corresponds to the JSON property positionedObjects

Returns:



1550
1551
1552
# File 'lib/google/apis/docs_v1/classes.rb', line 1550

def positioned_objects
  @positioned_objects
end

#suggested_document_style_changesHash<String,Google::Apis::DocsV1::SuggestedDocumentStyle>

The suggested changes to the style of the document tab, keyed by suggestion ID. Corresponds to the JSON property suggestedDocumentStyleChanges



1555
1556
1557
# File 'lib/google/apis/docs_v1/classes.rb', line 1555

def suggested_document_style_changes
  @suggested_document_style_changes
end

#suggested_named_styles_changesHash<String,Google::Apis::DocsV1::SuggestedNamedStyles>

The suggested changes to the named styles of the document tab, keyed by suggestion ID. Corresponds to the JSON property suggestedNamedStylesChanges



1561
1562
1563
# File 'lib/google/apis/docs_v1/classes.rb', line 1561

def suggested_named_styles_changes
  @suggested_named_styles_changes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
# File 'lib/google/apis/docs_v1/classes.rb', line 1568

def update!(**args)
  @body = args[:body] if args.key?(:body)
  @document_style = args[:document_style] if args.key?(:document_style)
  @footers = args[:footers] if args.key?(:footers)
  @footnotes = args[:footnotes] if args.key?(:footnotes)
  @headers = args[:headers] if args.key?(:headers)
  @inline_objects = args[:inline_objects] if args.key?(:inline_objects)
  @lists = args[:lists] if args.key?(:lists)
  @named_ranges = args[:named_ranges] if args.key?(:named_ranges)
  @named_styles = args[:named_styles] if args.key?(:named_styles)
  @positioned_objects = args[:positioned_objects] if args.key?(:positioned_objects)
  @suggested_document_style_changes = args[:suggested_document_style_changes] if args.key?(:suggested_document_style_changes)
  @suggested_named_styles_changes = args[:suggested_named_styles_changes] if args.key?(:suggested_named_styles_changes)
end