class Google::Apis::ScriptV1::GoogleAppsScriptTypeWebAppConfig
Web app entry point configuration.
Attributes
access[RW]
Who has permission to run the web app. Corresponds to the JSON property `access` @return [String]
execute_as[RW]
Who to execute the web app as. Corresponds to the JSON property `executeAs` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/script_v1/classes.rb, line 640 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 645 def update!(**args) @access = args[:access] if args.key?(:access) @execute_as = args[:execute_as] if args.key?(:execute_as) end