Class: Google::Apis::ScriptV1::GoogleAppsScriptTypeFunctionSet
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ScriptV1::GoogleAppsScriptTypeFunctionSet
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/script_v1/classes.rb,
 generated/google/apis/script_v1/representations.rb,
 generated/google/apis/script_v1/representations.rb
Overview
A set of functions. No duplicates are permitted.
Instance Attribute Summary collapse
- 
  
    
      #values  ⇒ Array<Google::Apis::ScriptV1::GoogleAppsScriptTypeFunction> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of functions composing the set. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleAppsScriptTypeFunctionSet 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GoogleAppsScriptTypeFunctionSet. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleAppsScriptTypeFunctionSet
Returns a new instance of GoogleAppsScriptTypeFunctionSet
| 524 525 526 | # File 'generated/google/apis/script_v1/classes.rb', line 524 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#values ⇒ Array<Google::Apis::ScriptV1::GoogleAppsScriptTypeFunction>
A list of functions composing the set.
Corresponds to the JSON property values
| 522 523 524 | # File 'generated/google/apis/script_v1/classes.rb', line 522 def values @values end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 529 530 531 | # File 'generated/google/apis/script_v1/classes.rb', line 529 def update!(**args) @values = args[:values] if args.key?(:values) end |