Class: Google::Apis::ServiceuserV1::Page
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ServiceuserV1::Page
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/serviceuser_v1/classes.rb,
generated/google/apis/serviceuser_v1/representations.rb,
generated/google/apis/serviceuser_v1/representations.rb 
Overview
Represents a documentation page. A page can contain subpages to represent nested documentation set structure.
Instance Attribute Summary collapse
- 
  
    
      #content  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Markdown content of the page.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the page.
 - 
  
    
      #subpages  ⇒ Array<Google::Apis::ServiceuserV1::Page> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Subpages of this page.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Page 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Page.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Page
Returns a new instance of Page
      2511 2512 2513  | 
    
      # File 'generated/google/apis/serviceuser_v1/classes.rb', line 2511 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#content ⇒ String
The Markdown content of the page. You can use (== include 
to include content from a Markdown file.
Corresponds to the JSON property path ==&#
41;content
      2485 2486 2487  | 
    
      # File 'generated/google/apis/serviceuser_v1/classes.rb', line 2485 def content @content end  | 
  
#name ⇒ String
The name of the page. It will be used as an identity of the page to
generate URI of the page, text of the link to this page in navigation,
etc. The full page name (start from the root page name to this page
concatenated with .) can be used as reference to the page in your
documentation. For example:
pages:
- name: Tutorial
content: (== include tutorial.md ==)
subpages:
- name: Java
content: (== include tutorial_java.md ==)
You can reference Java page using Markdown reference link syntax:
Java.
Corresponds to the JSON property name
      2503 2504 2505  | 
    
      # File 'generated/google/apis/serviceuser_v1/classes.rb', line 2503 def name @name end  | 
  
#subpages ⇒ Array<Google::Apis::ServiceuserV1::Page>
Subpages of this page. The order of subpages specified here will be
honored in the generated docset.
Corresponds to the JSON property subpages
      2509 2510 2511  | 
    
      # File 'generated/google/apis/serviceuser_v1/classes.rb', line 2509 def subpages @subpages end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2516 2517 2518 2519 2520  | 
    
      # File 'generated/google/apis/serviceuser_v1/classes.rb', line 2516 def update!(**args) @content = args[:content] if args.key?(:content) @name = args[:name] if args.key?(:name) @subpages = args[:subpages] if args.key?(:subpages) end  |