Class: Google::Apis::DocsV1::Body
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DocsV1::Body
 
 
- 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
The document body. The body typically contains the full document contents except for headers, footers, and footnotes.
Instance Attribute Summary collapse
- 
  
    
      #content  ⇒ Array<Google::Apis::DocsV1::StructuralElement> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The contents of the body.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Body 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Body.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ Body
Returns a new instance of Body.
      189 190 191  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 189 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#content ⇒ Array<Google::Apis::DocsV1::StructuralElement>
The contents of the body. The indexes for the body's content begin at zero.
Corresponds to the JSON property content
      187 188 189  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 187 def content @content end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      194 195 196  | 
    
      # File 'lib/google/apis/docs_v1/classes.rb', line 194 def update!(**args) @content = args[:content] if args.key?(:content) end  |