Class: Google::Apis::ScriptV1::GoogleAppsScriptTypeWebAppEntryPoint

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/script_v1/classes.rb,
lib/google/apis/script_v1/representations.rb,
lib/google/apis/script_v1/representations.rb

Overview

A web application entry point.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleAppsScriptTypeWebAppEntryPoint

Returns a new instance of GoogleAppsScriptTypeWebAppEntryPoint.



676
677
678
# File 'lib/google/apis/script_v1/classes.rb', line 676

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#entry_point_configGoogle::Apis::ScriptV1::GoogleAppsScriptTypeWebAppConfig

Web app entry point configuration. Corresponds to the JSON property entryPointConfig



669
670
671
# File 'lib/google/apis/script_v1/classes.rb', line 669

def entry_point_config
  @entry_point_config
end

#urlString

The URL for the web application. Corresponds to the JSON property url

Returns:

  • (String)


674
675
676
# File 'lib/google/apis/script_v1/classes.rb', line 674

def url
  @url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



681
682
683
684
# File 'lib/google/apis/script_v1/classes.rb', line 681

def update!(**args)
  @entry_point_config = args[:entry_point_config] if args.key?(:entry_point_config)
  @url = args[:url] if args.key?(:url)
end