Class: Google::Apis::SlidesV1::MasterProperties
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::SlidesV1::MasterProperties
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/slides_v1/classes.rb,
generated/google/apis/slides_v1/representations.rb,
generated/google/apis/slides_v1/representations.rb 
Overview
The properties of Page that are only relevant for pages with page_type MASTER.
Instance Attribute Summary collapse
- 
  
    
      #display_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The human-readable name of the master.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ MasterProperties 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of MasterProperties.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ MasterProperties
Returns a new instance of MasterProperties
      1724 1725 1726  | 
    
      # File 'generated/google/apis/slides_v1/classes.rb', line 1724 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#display_name ⇒ String
The human-readable name of the master.
Corresponds to the JSON property displayName
      1722 1723 1724  | 
    
      # File 'generated/google/apis/slides_v1/classes.rb', line 1722 def display_name @display_name end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1729 1730 1731  | 
    
      # File 'generated/google/apis/slides_v1/classes.rb', line 1729 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) end  |