Class: Google::Apis::ScriptV1::GoogleAppsScriptTypeFunction
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ScriptV1::GoogleAppsScriptTypeFunction
 
- 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
Represents a function in a script project.
Instance Attribute Summary collapse
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The function name in the script project. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleAppsScriptTypeFunction 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GoogleAppsScriptTypeFunction. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleAppsScriptTypeFunction
Returns a new instance of GoogleAppsScriptTypeFunction
| 505 506 507 | # File 'generated/google/apis/script_v1/classes.rb', line 505 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#name ⇒ String
The function name in the script project.
Corresponds to the JSON property name
| 503 504 505 | # File 'generated/google/apis/script_v1/classes.rb', line 503 def name @name end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 510 511 512 | # File 'generated/google/apis/script_v1/classes.rb', line 510 def update!(**args) @name = args[:name] if args.key?(:name) end |