Class: Google::Apis::ScriptV1::GoogleAppsScriptTypeWebAppEntryPoint
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ScriptV1::GoogleAppsScriptTypeWebAppEntryPoint
 
- 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 web application entry point.
Instance Attribute Summary collapse
- 
  
    
      #entry_point_config  ⇒ Google::Apis::ScriptV1::GoogleAppsScriptTypeWebAppConfig 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Web app entry point configuration. 
- 
  
    
      #url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The URL for the web application. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleAppsScriptTypeWebAppEntryPoint 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GoogleAppsScriptTypeWebAppEntryPoint. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleAppsScriptTypeWebAppEntryPoint
Returns a new instance of GoogleAppsScriptTypeWebAppEntryPoint
| 718 719 720 | # File 'generated/google/apis/script_v1/classes.rb', line 718 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#entry_point_config ⇒ Google::Apis::ScriptV1::GoogleAppsScriptTypeWebAppConfig
Web app entry point configuration.
Corresponds to the JSON property entryPointConfig
| 711 712 713 | # File 'generated/google/apis/script_v1/classes.rb', line 711 def entry_point_config @entry_point_config end | 
#url ⇒ String
The URL for the web application.
Corresponds to the JSON property url
| 716 717 718 | # File 'generated/google/apis/script_v1/classes.rb', line 716 def url @url end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 723 724 725 726 | # File 'generated/google/apis/script_v1/classes.rb', line 723 def update!(**args) @entry_point_config = args[:entry_point_config] if args.key?(:entry_point_config) @url = args[:url] if args.key?(:url) end |