Class: Google::Apis::ScriptV1::GoogleAppsScriptTypeAddOnEntryPoint
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ScriptV1::GoogleAppsScriptTypeAddOnEntryPoint
 
- 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
An add-on entry point.
Instance Attribute Summary collapse
- 
  
    
      #add_on_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The add-on's required list of supported container types. 
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The add-on's optional description. 
- 
  
    
      #help_url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The add-on's optional help URL. 
- 
  
    
      #post_install_tip_url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The add-on's required post install tip URL. 
- 
  
    
      #report_issue_url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The add-on's optional report issue URL. 
- 
  
    
      #title  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The add-on's required title. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleAppsScriptTypeAddOnEntryPoint 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GoogleAppsScriptTypeAddOnEntryPoint. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleAppsScriptTypeAddOnEntryPoint
Returns a new instance of GoogleAppsScriptTypeAddOnEntryPoint
| 443 444 445 | # File 'generated/google/apis/script_v1/classes.rb', line 443 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#add_on_type ⇒ String
The add-on's required list of supported container types.
Corresponds to the JSON property addOnType
| 416 417 418 | # File 'generated/google/apis/script_v1/classes.rb', line 416 def add_on_type @add_on_type end | 
#description ⇒ String
The add-on's optional description.
Corresponds to the JSON property description
| 421 422 423 | # File 'generated/google/apis/script_v1/classes.rb', line 421 def description @description end | 
#help_url ⇒ String
The add-on's optional help URL.
Corresponds to the JSON property helpUrl
| 426 427 428 | # File 'generated/google/apis/script_v1/classes.rb', line 426 def help_url @help_url end | 
#post_install_tip_url ⇒ String
The add-on's required post install tip URL.
Corresponds to the JSON property postInstallTipUrl
| 431 432 433 | # File 'generated/google/apis/script_v1/classes.rb', line 431 def post_install_tip_url @post_install_tip_url end | 
#report_issue_url ⇒ String
The add-on's optional report issue URL.
Corresponds to the JSON property reportIssueUrl
| 436 437 438 | # File 'generated/google/apis/script_v1/classes.rb', line 436 def report_issue_url @report_issue_url end | 
#title ⇒ String
The add-on's required title.
Corresponds to the JSON property title
| 441 442 443 | # File 'generated/google/apis/script_v1/classes.rb', line 441 def title @title end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 448 449 450 451 452 453 454 455 | # File 'generated/google/apis/script_v1/classes.rb', line 448 def update!(**args) @add_on_type = args[:add_on_type] if args.key?(:add_on_type) @description = args[:description] if args.key?(:description) @help_url = args[:help_url] if args.key?(:help_url) @post_install_tip_url = args[:post_install_tip_url] if args.key?(:post_install_tip_url) @report_issue_url = args[:report_issue_url] if args.key?(:report_issue_url) @title = args[:title] if args.key?(:title) end |