class Google::Apis::ScriptV1::GoogleAppsScriptTypeWebAppEntryPoint
A web application entry point.
Attributes
entry_point_config[RW]
Web app entry point configuration. Corresponds to the JSON property `entryPointConfig` @return [Google::Apis::ScriptV1::GoogleAppsScriptTypeWebAppConfig]
url[RW]
The URL for the web application. Corresponds to the JSON property `url` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/script_v1/classes.rb, line 665 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/script_v1/classes.rb, line 670 def update!(**args) @entry_point_config = args[:entry_point_config] if args.key?(:entry_point_config) @url = args[:url] if args.key?(:url) end